Search the web
Sign In
New User? Sign Up
XMLRPCNET · XML-RPC.NET
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 617 - 646 of 1226   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
617
Hi jc - thanks for your contribution. - Charles...
charlescookuk
Offline Send Email
Mar 2, 2006
8:47 am
618
... sure that make sense. thanks for your help, it now working. Cheers Esben...
Esben Laursen
lists@...
Send Email
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@...
Send Email
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...
charlescookuk
Offline Send Email
Mar 5, 2006
2:43 pm
621
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@...
Send Email
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...
daveeaseman
Offline Send Email
Mar 6, 2006
11:18 am
623
Try defining the DETAIL value as object[], i.e. as per this sample code: XmlRpcStruct[] ret = ... XmlRpcStruct member1 = ret[1]; object[] details =...
charlescookuk
Offline Send Email
Mar 6, 2006
1:39 pm
624
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...
daveeaseman
Offline Send Email
Mar 6, 2006
2:01 pm
625
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...
daveeaseman
Offline Send Email
Mar 8, 2006
4:50 pm
626
I don't know VB.NET but this looks wrong to me: Dim s2 As service2.service2 SR = s2.method2(inParam)...
charlescookuk
Offline Send Email
Mar 8, 2006
5:11 pm
627
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 ......
daveeaseman
Offline Send Email
Mar 9, 2006
2:34 pm
628
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 Ashwood
alwaysaseeker
Offline Send Email
Mar 13, 2006
9:12 am
629
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, ...
Stephen Sadowski
ronin793
Offline Send Email
Mar 13, 2006
1:52 pm
630
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...
David Ashwood
alwaysaseeker
Offline Send Email
Mar 13, 2006
3:36 pm
631
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"); ...
charlescookuk
Offline Send Email
Mar 13, 2006
4:33 pm
632
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...
charlescookuk
Offline Send Email
Mar 14, 2006
8:04 am
633
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...
David Ashwood
alwaysaseeker
Offline Send Email
Mar 14, 2006
8:37 am
634
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...
charlescookuk
Offline Send Email
Mar 14, 2006
9:48 am
635
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...
David Ashwood
alwaysaseeker
Offline Send Email
Mar 14, 2006
10:04 am
636
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...
David Ashwood
alwaysaseeker
Offline Send Email
Mar 14, 2006
10:36 am
637
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...
djpentz
Offline Send Email
Mar 15, 2006
8:16 am
638
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...
pacomphelp
Offline Send Email
Mar 17, 2006
6:46 pm
639
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...
charlescookuk
Offline Send Email
Mar 17, 2006
6:59 pm
640
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...
Colin Hodge
pacomphelp
Offline Send Email
Mar 17, 2006
7:34 pm
641
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...
charlescookuk
Offline Send Email
Mar 18, 2006
2:43 pm
642
Hi, I was thinking if there is a way to use a rpcxml.net service without compiling it into an assembly. Anja...
Anja
tacaheca
Offline Send Email
Mar 20, 2006
11:42 am
643
Do you mean something like .ashx file? See here: http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#3.11 - Charles...
charlescookuk
Offline Send Email
Mar 20, 2006
12:16 pm
644
Thanks, that solves my problem. Anja...
Anja
tacaheca
Offline Send Email
Mar 20, 2006
2:05 pm
645
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...
lorns_gandia
Offline Send Email
Mar 24, 2006
5:58 am
646
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...
lorns_gandia
Offline Send Email
Mar 24, 2006
5:59 am
Messages 617 - 646 of 1226   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help