Could anyone help me to manipulate MS Sharepoint 2007 using Java. Manipulate in the sense, Add/Delete/Download files.. Being a Java Rookie, this is an daunting task for me. The terms WSDL, Java Axis seem totally new to me. I would be extremely grateful if someone could help me out.
Thanks in Advance.
Ron
"Value has a Value only if its value is valued!"
Tim Moores
Rancher
Joined: Sep 21, 2011
Posts: 2329
posted
0
A WSDL is the description of a web services API; it's how one can manipulate SharePoint programmatically. The SharePoint admin needs to give you the WSDL either as a file or a URL. All web services toolkits (e.g., Axis-2) have tools you can use to create Java client code from a WSDL; for Axis2, it's http://axis.apache.org/axis2/java/core/tools/CodegenToolReference.html#cmdline. Once you have the code to access SharePoint, you can incorporate it into your client app.