Hi Massimo - if you want to send a request with an arbitrary number of parameters, the way to do it now is to use the params key word: [XmlRpcMethod] public...
715
acme821
Jul 21, 2006 4:30 pm
Hi, I have got a strange problem accessing an eGroupWare Server via XML-RPC. Some of the functions, especially the ones that I myself have programmed, return...
716
Arian Kulp
atkulp
Jul 21, 2006 6:18 pm
I have an application that is attempting to send a base-64 encoded JPEG image to a method. The encoded string is about 26k. When I try to invoke the method...
717
Charles Cook
charlescookuk
Jul 21, 2006 6:29 pm
Hi Arian - I'll have a look at this later - please send the code for the proxy method causing the problem so I can check that. What is the specific exception...
718
zhu_bixian
Jul 24, 2006 10:22 am
Hello This is my first time to use XML-RPC. The problem I met is when I made XML-RPC between TCL and C#, it failed. If the server is written in TCL and the...
719
charlescookuk
Jul 24, 2006 11:27 am
Hi - for the protocol violation try using the following application config file with your client: <?xml version ="1.0"?> <configuration> <system.net> ...
720
charlescookuk
Jul 26, 2006 6:40 am
FYI if you get the "The server committed a protocol violation" exception when making an XML-RPC call, have a look at this post: ...
721
sprg3ak
Jul 28, 2006 10:49 pm
When I first tried to run the code below in .NET 2.0 I got an error stating that an interface was inaccessible. So, I came by this site and noticed a new...
722
Andrew Bradnan
anbrad
Jul 29, 2006 2:14 am
I just had to set m_xml.KeepAlive = false; and then I didn't get that exception any longer. hth Andrew _____ From: XMLRPCNET@yahoogroups.com...
723
charlescookuk
Jul 29, 2006 7:30 am
I tried the code below. Obviously it returns an error because the struct doesn't contain the required members but it is an XML-RPC fault response so things are...
724
donhrobjartz
Jul 30, 2006 8:21 am
Hi, i am having some troubles with using the component. I was wondering if someone could help me out. I am making a xml-rpc call to a xml-rpc server that...
725
charlescookuk
Jul 30, 2006 9:06 am
What are you expecting the XML-RPC response to contain? Can you supply a dump of the response? See here: http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#5.1 -...
726
donhrobjartz
Jul 30, 2006 2:38 pm
Hi Charles, thanks for the fast reply! I attached a logger to the Xmlrpc call like you suggested and the response is obviously correct from the server. Please...
727
charlescookuk
Jul 30, 2006 4:02 pm
I'm afraid this is not valid XML-RPC. Each member element in a struct must have one "name" child element and one "value" child element, not as in your...
728
donhrobjartz
Jul 30, 2006 5:18 pm
Charles, thank you again for replying. According to the specs i beleive you are right. http://www.xmlrpc.com/spec. However i am not sure whether the XmlRpc...
730
Andrew Bradnan
anbrad
Jul 31, 2006 12:20 am
I believe that's IXmlRpcProxy.KeepAlive, so on the client interface you Create. _____ From: XMLRPCNET@yahoogroups.com [mailto:XMLRPCNET@yahoogroups.com] On...
731
charlescookuk
Jul 31, 2006 7:06 am
Two suggestions: (1) You could hack the XmlRpcClientProtocol class so that instead of calling DeserializeResponse it returns the raw XML. (2) You could hack...
732
Hoi Kok Kent
kent_plaza
Aug 1, 2006 4:13 am
Hi, everyone. How XMLRPC server return a datatable to client? since i read the forum and XMLRPCNET site, is it XMLRPCNET able to return data in basic datatype...
733
netinlet
Aug 2, 2006 6:29 am
Is there a how-to anywhere about using the xml-rpc client library over an ssl connection? Any pointers would be appreciated. I ran across an old post on this...
734
charlescookuk
Aug 2, 2006 7:33 am
Version 2.0.0 is up at http://www.xml-rpc.net/ The main change is the addition of a .NET 2.0 build to allow use of 2.0 features such as generics and nullable...
737
charlescookuk
Aug 13, 2006 12:55 pm
Version 2.1.0 is up at http://www.xml-rpc.net/ New features and changes: * Add support for proxy interfaces with overloaded methods. * Add support for the...
739
thatiminator
Aug 15, 2006 6:40 am
Hi guys, I'm using XML-RPC.NET in a project I'm currently working on and I must say I love it since the first moment: intuitive design, decent documentation,...
740
thatiminator
Aug 15, 2006 6:47 am
@Moderator: My last message no longer applies. Turned out it didn't have to do with XML-RPC.NET at all. My apologies. Tim...
741
edburdo
Aug 16, 2006 6:37 am
Anyone have some samples on how to use the MetaWeblog or MoveableType API's with XML-RPC.Net? I think the MT api's are the better approach for Wordpress....
742
acelen_ni
Aug 18, 2006 2:22 am
when I use the hello client to connect hello server which provided in the new release, the connection is still alive. Thought I set the proxy's property...
743
lorns_gandia
Aug 22, 2006 7:36 am
Hi, I'm working on an application that makes asynchronous method calls (I based this code on AsychBetty sample app). The application works fine however, can...
744
Charles Cook
charlescookuk
Aug 23, 2006 7:32 am
Hi Lorns - the call to EndLogUser in the callback method should throw an exception in the connection fails. - Charles ... [Non-text portions of this message...
745
Ma. Leonora Gandia
lorns_gandia
Aug 24, 2006 1:29 am
Thanks, I would try to add the call to error handler on the callback method. However, while testing this application I have again encountered an error. To give...
746
lorns_gandia
Sep 1, 2006 2:23 am
Hi, Just would like to ask if it is really necessary to declare the callback method as static method instead of an instance method? I am not sure if this could...
747
charlescookuk
Sep 1, 2006 6:54 am
Hi Lorns - the AsyncCallback delegate can be constructed using either a static or instance method. - Charles...