07-13-2009 05:45 AM
07-31-2009 10:43 AM
Now what happens is that a call is made to upload and the authentication works…when i again give the web service call, it says no ticket found.
Then after trying for 3-4 hits, it again finds the ticket in the call without even using startsession() again.
07-31-2009 11:31 AM
So if you login to alfresco at the first time and you receive the AuthenticationDetails, store this object in the session to retrieve it on your Http-Server.
08-03-2009 03:26 AM
HttpSession session …
AutheneticationDetails details = null;
if((details = session.get(AutheneticationDetails.class.getSimpleName())) == null) {
details = AuthenticationUtils.startSession(lStrLoginName,lStrPassword);
session.put(AutheneticationDetails.class.getSimpleName(), details);
}
else
AuthenticationUtils.setAuthenticationDetails(details);
// your calls to Alfresco via WS
08-07-2009 09:37 AM
08-19-2009 07:59 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.