SharePoint Integration with Web Application

Is it possible for a Java / J2EE web application to integrate / link with SharePoint to download, search and retrieve documents?

+4
source share
5 answers

You can communicate with SharePoint from Java using the web services: http://www.developer.com/tech/article.php/3104621

+7
source

Sharepoint provides many of its features through web services. If you are familiar with working with web services, this may be the easiest way to work with Sharepoint. I found this site just now http://www.developer.com/tech/article.php/3104621 , which shows some of the breakdowns of the available web services, although the code is in VB. If you perform additional searches on Sharepoint and web services, you should get more sites that can help you.

+1
source

Agreed, web services are the way to go.

http://msdn.microsoft.com/en-us/library/ms479390.aspx

I worked a bit on this with Java, and it's pretty easy to get them to talk.

0
source

You can use the web services that others have suggested integrating at the service level, this may be the best way.

However, it is possible to interact at the user interface level using remote web service portlets. There is a WSRP Toolkit for Sharepoint:

http://blogs.msdn.com/sharepoint/archive/2008/12/05/announcing-the-wsrp-toolkit-for-sharepoint.aspx

0
source

You can use CNS Media GateWay, which can help connect sharepoint or any other ms server to your Java web application.

You can connect to any custom application, for example, Java Exchange (2000 - 2013), MS SharePoint, Dynamics CRM, Dynamics NAV, and many others through the ODBC and JDBC CNS drivers, thus gaining access, for example, to a full Exchange mailbox from your custom application.

Please let me know if you need more information.

for more information:

http://www.connecting-software.com

-1
source

All Articles