OK, I went back to basics, deleted the project and started over again. This time everything works!...
616
jc.bertin
Feb 28, 2006 12:21 pm
I propose two little patches: one for cookie management, the other one for fault struct definition cleanup. Hope this helps, regards. ... +++...
617
charlescookuk
Mar 2, 2006 8:47 am
Hi jc - thanks for your contribution. - Charles...
618
Esben Laursen
lists@...
Mar 4, 2006 3:36 pm
... sure that make sense. thanks for your help, it now working. Cheers Esben...
619
Esben Laursen
lists@...
Mar 4, 2006 3:43 pm
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....
620
charlescookuk
Mar 5, 2006 2:43 pm
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...
621
Esben Laursen
lists@...
Mar 5, 2006 2:56 pm
Hi Charles, Thanks for replying, this is a "timeout" where the host cant be contacted. System.NullReferenceException: Object reference not set to an instance ...
622
daveeaseman
Mar 6, 2006 11:18 am
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...
623
charlescookuk
Mar 6, 2006 1:39 pm
Try defining the DETAIL value as object[], i.e. as per this sample code: XmlRpcStruct[] ret = ... XmlRpcStruct member1 = ret[1]; object[] details =...
624
daveeaseman
Mar 6, 2006 2:01 pm
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...
625
daveeaseman
Mar 8, 2006 4:50 pm
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...
626
charlescookuk
Mar 8, 2006 5:11 pm
I don't know VB.NET but this looks wrong to me: Dim s2 As service2.service2 SR = s2.method2(inParam)...
627
daveeaseman
Mar 9, 2006 2:34 pm
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 ......
628
David Ashwood
alwaysaseeker
Mar 13, 2006 9:12 am
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. ...
629
Stephen Sadowski
ronin793
Mar 13, 2006 1:52 pm
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, ...
630
David Ashwood
alwaysaseeker
Mar 13, 2006 3:36 pm
Do you know of a decent online validator? I ran the XML results (sniffed with proxyTrace) through one and it validated ok. David ... few closing...
631
charlescookuk
Mar 13, 2006 4:33 pm
I copied the response XML from your post into a file and deserialized it with this code: StreamReader sr = new StreamReader("C:92;\download\\foo.xml"); ...
632
charlescookuk
Mar 14, 2006 8:04 am
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...
633
David Ashwood
alwaysaseeker
Mar 14, 2006 8:37 am
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...
634
charlescookuk
Mar 14, 2006 9:48 am
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...
635
David Ashwood
alwaysaseeker
Mar 14, 2006 10:04 am
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...
636
David Ashwood
alwaysaseeker
Mar 14, 2006 10:36 am
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...
637
djpentz
Mar 15, 2006 8:16 am
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...
638
pacomphelp
Mar 17, 2006 6:46 pm
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...
639
charlescookuk
Mar 17, 2006 6:59 pm
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...
640
Colin Hodge
pacomphelp
Mar 17, 2006 7:34 pm
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...
641
charlescookuk
Mar 18, 2006 2:43 pm
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...
642
Anja
tacaheca
Mar 20, 2006 11:42 am
Hi, I was thinking if there is a way to use a rpcxml.net service without compiling it into an assembly. Anja...
643
charlescookuk
Mar 20, 2006 12:16 pm
Do you mean something like .ashx file? See here: http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#3.11 - Charles...