Updated version of release 2.3 here. http://xmlrpcnet.googlecode.com/files/xml-rpc.net.2.3.2.zip Changes: * Issue 22: XmlRpcTypeMismatchException thrown if an...
Hello all, I am new to xml-rpc.net and I am having a problem. We are developing an API that receives xml-rpc responses from a 3rd party server. Most of the...
hi, I need to access a RPC server. which protected by another Apach web server. first user access Apache web server, once submit username/password, then...
I am totally new to XML-RPC, rather started today. The response structure of XML-RPC server is <?xml version="1.0" encoding="iso-8859-1" ?> <methodResponse> ...
hello everybody, I am trying to to launch a XML-RPC server on a Pocket PC but it isn't working since it needs the remoting libraries which are not available on...
Hi, I have a client(c# and xml-rpc.net) will call a server (this server protected by NetPoint or CoreID). Are there any one have any idea how my client can...
Hi - I've implemented a server as an .ASHX file within an ASP.Net website (based upon http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#3.11 only in C#) and am...
Just replying to my own question here. Firstly (and most importantly) it seems that I was doing the right thing in specifying the full URL down to the file...
Hi all, Is it normal that the XML-RPC.NET server always sends the "HTTP/1.1 100 Continue" even if the client does not send the Expect 100 header? Is there a...
It looks like the response XML is missing the encoding attribute in the XML declaration. Without this attribute UTF-8 is assumed. Your test code converts the...
Hi all, I have developed an application in Python running on a PDA that calls xmlrpc methods from a server authenticating in each call, and it works great, but...
I'm currently using the latest XML-RPC.NET version of the DLL in a managed C++ client application. Since C++ doesn't provide functions to (directly) return an...
Hi there, As part of my XML-RPC request, I have an element called "x-uniqueid" In the code I have put the following: [XmlElement(ElementName = "x-uniqueid")] ...
http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#1.11 ... custom attributes, but I'm not sure how to correctly set this attribute so that it is correctly picked up...
Ahhh ok figured it out! I had to use the following attribute: [XmlRpcMemberAttribute("x-uniqueid")] Hope that helps someone else Baz ... custom attributes, but...
#include "stdafx.h" using namespace System; using namespace CookComputing::XmlRpc; public interface class IEcho : public IXmlRpcProxy { [XmlRpcMethod] ...
I'm trying to troubleshoot a new document format that is sent as a request from a trading partner. I don't think he is sending the values that he claims. I've...
If you use the built-in compressed folders feature of Windows Explorer in Windows XP to extract files from the distribution, you may find that the contents of...
Hello to all. I am new to XML-RPC and am trying to create a .NET client to work with self hosted Wordpress weblogs using the xmlrpc.php server. I am happy with...
Thank you so much, and with apologies for missing that in the FAQ. I think my unfamiliarity with the concepts and terminology meant that I failed to spot...
Hi, I am trying to access a parameter-less method via XMLRPC.net and i have set UseEmptyParamsTag to false. Still I get an error saying that 'couldn't find...
Hi, I am trying to access a parameter-less method via XMLRPC.net and I have set UseEmptyParamsTag to false. Still I get an error saying that 'couldn't find...
Hi Brian: I just checked and setting UseEmptyParamsTags to false works as expected. You could check that the XML-RPC request is as you expect by using one of...