Office365 Access Sharepoint Websites Through Java - Axis2

We are currently creating a Java-based server that can communicate with Sharepoint 2007/2010 and the Office365 version web services through Axis2. It looks like we can get Basic / NTLM authentication to work with Sharepoint 2007/2010, but not with Office365 version.

This is likely due to the fact that Office365 only supports claims-based authentication. Can we actually authenticate in Java? Is there open source support for requirements based authentication?

+5
source share
1 answer

Basically, you need to generate a cookie using "manual". If you use Microsoft accounts, this will be a login form that looks like Live.

I don't know any Java implementation yet.
Here you can find the implementation in C #: http://www.wictorwilen.se/Post/How-to-do-active-authentication-to-Office-365-and-SharePoint-Online.aspx

+3
source

All Articles