... sure that make sense. thanks for your help, it now working. Cheers Esben...
Esben Laursen
lists@...
Mar 4, 2006 3:36 pm
619
Hi, I have one simple question.. Every time there is a System.Net.WebException exception in xmlrpc.net is always returns it as a System.NullReferenceException....
Esben Laursen
lists@...
Mar 4, 2006 3:43 pm
620
Hi Esben - I tried to reproduce your problem in a VB.NET program with code similar to yours. The catch for WebException catches the WebException exception, for...
Hi Charles, Thanks for replying, this is a "timeout" where the host cant be contacted. System.NullReferenceException: Object reference not set to an instance ...
Esben Laursen
lists@...
Mar 5, 2006 2:56 pm
622
I'm new to XMLRPC, and I'm having problems trying to get data where the incoming request contains nested arrays. For example, the following data is being sent...
I have now managed to extract the contents of the nested array, but I would still be interested in a solution as I'm not sure if my method is as efficient as...
I have written a method using VB.NET that works fine. I now want to also call that method from another method, i.e I want to be able to call it direct as well...
Oops - another stupid error - sorry; Should have been:- Dim s2 As service2.service2 = new service2.service2 It now works fine; thanks for your help. ... to ......
Hi, I'm having a problem with XMLRPC saying the following XML response is invalid. The error is: Response from the Server does not contain Valid XML. ...
David, Unless the tail end of the xml doc got missed, there are quite a few closing tags missing. I would suspect that's what's giving you your error. Thanks, ...
I copied the response XML from your post into a file and deserialized it with this code: StreamReader sr = new StreamReader("C:\\download\\foo.xml"); ...
In the HTTP response from Wordpress the Content-Length is specified as 89654 whereas the actual content is several hundred bytes less than this. According to...
WordPress aren't known for the prompt response to problems. Is there a way I can access the raw content before it's processed by the XML parser? Ideally to fix...
In XmlRpcSerializer.DeserializeResponse you could take a copy of the response stream and change it. But how would you know what change to apply? Depending on...
Hacking the WP code isn't an option. A bug has been filed - but it'll be a while before it's fixed. The service I am accessing is a 3rd party site - and I...
Although a quick fix appears to be remove the content length header completely. Testing this with fiddler shows the response content gets parsed properly by...
I'm trying to expose an XML-RPC interface on a service to communicate with a management console. It works using remoting and an HTTP channel, but I see no...
I am trying to use XML-RPC.NET to connect to a OpenDHT gateway on PlanetLab inside of my VisualStudio.NET 2005 C# program. When I send a request (see the...
The .NET type corresponding to XML-RPC base64 is byte[]. Your interface for put should be something like this (the other OpenDHT methods can be added to the...
Charles, Thank you, that did work to get the XML types for key and value to show as base64. However, the TTL still shows as i4 in the XML when I use type int...
I tried the OpenDHT server at planet2.berkeley.intel-research.net:5851 and reproduced the problem. I suspect the server implementation is not using a proper...
Hi, I'm a newbie with XMLRPC. I am working on an application that calls methods from Java API asynchronously. I am having problems when calling these methods...
Hi, I'm a newbie with XML-RPC. I am currently working on an application that makes asynchronous calls to the JAVA API. However, I am having a problem on...