We are trying the example shown here:https://knowledge.opentext.com/knowledge/llisapi.dll?func=ll&objId=44353511&objAction=browse&viewType=1
We adjusted the code so that the urls match our server. Yet when we try to login with this example, we get an HTTP 404 error. Any ideas what we are missing?
I have tried this without OTDS and it worked with below steps:
1) I have created a new VirtualDirectory to access rest calls and granted Anonymous access. Not sure if this is the best way but it worked.
2) I passed the username & password in the connector. The best way is to get otcsticket from OTDS and use it in connector object.
Hope this helps.
Mahesh
It turns out in the url in this string:
url: "http://server/otcs/cs/api/v1/",
on the page I referenced needed to be updated for Windows. The
/cs
refers to the CGI in the Livelink installation. I thought it was another directory we needed to have. So, when working in Windows, the url should look like this:
url: "http://server/otcs/cs.exe/api/v1/",