I've been using this XML-RPC assembly [ http://www.xml-rpc.net/ ] with Mono for a long time, but always under a .NET 1.1 profile.
Now I need to build my application as .NET 2.0 - everything still compiles and the application starts... but authentication fails. It always acts like I have provided no credentials. I'm doing - proxy = (IProxy)XmlRpcProxyGen.Create(typeof(Whitemice.ZOGI.IProxy)); client = (XmlRpcClientProtocol)proxy; client.ProtocolVersion = HttpVersion.Version10; client.PreAuthenticate = true; client.Timeout = 1800000; client.Credentials = new NetworkCredential(_username, _password); client.Url = "http://" + _hostname + "/zidestore/so/" + _username + "/"; - just like under the .NET 1.1 profile. But getting an authentication required exception when I make a request. Anyone seen this, or tried CookComputing.XmlRpcV2.dll under Mono with a .NET 2.0 proile? _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
