Hi,
I
have following code:
XmlRpc.setKeepAlive(true);
_rpc = new XmlRpcClientLite(serverURI);
_rpc.setBasicAuthentication(user, password);
_rpc = new XmlRpcClientLite(serverURI);
_rpc.setBasicAuthentication(user, password);
_rpc.execute(...);
I always get access denied. I am sure that my server is set up properly
(IIS, basic authentication allowed), because I can execute similar
code using .NET library.
Any idea why this doesn't work here?
Thanks.