Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

OpenText LiveLink - OTDS Error (File download using multiple threads) 1

Status
Not open for further replies.

Sahil Chauhan

Programmer
Mar 1, 2021
2
0
0
IN
I am using Livelink EWS (Enterprise Web Services) to download the document from Livelink. If I am only running one thread then the document download using Attachment Object or DataHandler both are working fine. But If I am running multiple threads and try to download the document using the Attachment or DataHandler object it throws the OTDS error. Can anyone help me to resolve this issue?
 
This is definitely possible what you are calling thread is probably another instance of your program in reality this is what happens I will show a simple illustration

FE1 Configure 5 Threads
FE2 Configured 5 Threads

Your client program asks the API to do something
Assume it was received by FE1 Thread1 it will forward to OTDS and return the authentication token so far everything will work.
You got what you needed from API again you invoke another API call chances are it will go to FE1 Thread 2 again it will work because your call contains
the session object... or a nonexpired token

Now think what would happen in this cycle if it went to FE1 Thread1 it sees the auth token it will discard it because the token when parsed
will reveal the IP address of FE1 and you are coming from FE2...

So what can you do?
Most people relax the cookie restrictions on Livelink Content Server to say don't use the IP address to validate me
Or some organizations put sticky algorithm on load balancer so a program always hits the same server

In long-running programs using CWS the Client developers pseudo code should be something like this as LL does not address it for you

I have to Call an API and I have an AuthToken
I should see if the TTL has expired if it has re-authenticate...

Also, Attachment Object of Docman is a very bad idea the better way is to rewrite that code using ContentService methods.





Well, if I called the wrong number, why did you answer the phone?
James Thurber, New Yorker cartoon caption, June 5, 1937
Certified OT Developer,Livelink ECM Champion 2008,Livelink ECM Champion 2010
 
Let me clarify my issue, I have configured 4 threads to download the document from the Content Server. The main thread is responsible for making the connection with the Livelink server (using RCSAuthenticationOTDS), set the authentication token to the SOAP header (OTAuthentication), and initializing the ContentService & DocumentManagement web services object. After getting the authentication token the 4 threads are created & running concurrently to download the document from the Content Server by sharing the same ContentService & DocumentManagement web services object. When threads run concurrently then I got the OTDS Error or Socket connection closed exceptions for some method calls while others running perfectly.
But If I put the download document method inside the synchronized block then everything is working fine. In this case, only one thread is allowed to download the document while others are waiting for their turn. See below the download document code.

String contextId = fDocMan.getVersionContentsContext(nodeId, nodeVersion); // Here I got the OTDS or Socket error
DataHandler dataHandler = fContent.downloadContent(contextId);
out = new FileOutputStream(fileDir);
dataHandler.writeTo(out);


Also I am running a single instance of the program with multiple threads. So the IP Address of the client is same and the authentication/connection is made with the main thread and the child threads uses the same shared objects (fDocMan & fContent) to download the document which is initialized by the main thread.
 
The threads I mention are basically Livelink Threads. Usually, a Livelink server is configured between 8-32 threads, and for redundancy, a load balancer is used hence what a thread in one server contains has is the LLCookie which is the AUTH that you get from either a Livelink Auth or OTDS Auth. This is not freely exchangeable with another Livelink Server thread. You will not run into this difficulty with the Livelink REST API because every REST API Call will give you a refreshed token so you do not have to look if the token is valid before calling the API.
In a multiserver environment, either relaxing the security params of livelink or setting sticky on LB will solve the authentication problem.

Not to be confused with Java threads C# threads and so on.

Well, if I called the wrong number, why did you answer the phone?
James Thurber, New Yorker cartoon caption, June 5, 1937
Certified OT Developer,Livelink ECM Champion 2008,Livelink ECM Champion 2010
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top