We have an application connecting to ll 9.7.1 using the web services both on authenticated and non authenticeted side. quite often we have an error: "com.opentext.api.LLIOException: Could not access server"
we have 2 instance of livelink with 2 IP addresses and one livelink server install on port 2099 and the other one on port 3099.
in the web.config instance one we have:
<add key="livelink.host" value="10.8.10.15" />
<add key="livelink.port" value="2099" />
<add key="livelink.encoding" value="UTF8" />
and the other web.config on the second instance have:
<add key="livelink.host" value="10.8.10.14" />
<add key="livelink.port" value="2099" />
<add key="livelink.encoding" value="UTF8" />
should I have one web.config pointing to port 3099? Does livelink services listen on all IP addresses so it does not matter which IP I use?