Hi,We have Livelink Server which is only accessible through HTTP access through an MS ISA Server with NTLM authentication. I had tried several ways to connect but to no avail.status = LL_ValueAlloc(config)status = LL_ValueSetAssoc(config)status = LL_AssocSetInteger(config, "HTTPS", LL_FALSE)status = LL_AssocSetString(config, "LivelinkCGI", "
http://myserver/livelink/livelink.exe")status = LL_AssocSetString(config, "HTTPUserName", "Domain\ProxyUser") status = LL_AssocSetString(config, "HTTPPassword", "ProxyPassword")status = LL_SessionAllocEx(pSession, "myProxyServer", 8080, "", "LLUserName", "LLPassword", config)Is this connection is possible through LAPI? I had an idea of using WinAPI32 function call to impersonate user but haven't tried that yet. I'm also thinking of using LL_SessionAllocFromCookieEx() but I'm not too sure where should I get the cookie string from.Please help.Thanks.