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...
Hi, Is there a way I can send a C# dictionary object using XMLRPC.NET. My requirement is to send a List like <string , int>. janandith. [Non-text portions of...
Hi, The XML-RPC server I talk with is in python. It needs a tuple as input. How can I send it using C# and XML-RPC.NET janandith [Non-text portions of this...
I'm new to XMLRPC. Trying to figure out how to convert an XMLRPC call written in Java to call the same service from .NET app using XMLRPCNET. Here is a...
I'm accessing an XML-RPC service where one type (User) includes a property that may be one of a small set of known values. In C#, I'd do this as an enum, but...