I can call the sharepoint web services from
java client if sharepoint uses basic authentication.
ServiceSoapStub serviceSoapStub = new ServiceSoapStub(new URL(Service_URL), null);
serviceSoapStub.setUsername(USERNAME);
serviceSoapStub.setPassword(PASSWORD);
result = serviceSoapStub.getListItems(...);
But if sharepoint uses Kerberos authentication, and my java side (WebSphere portal) is also using Kerberos, what should I do to make the web service call?
Have anyone done that? (Microsoft sharepoint web service from Websphere Portal with both Kerberos authentication)
Thanks