Am using CookComputing.XmlRpc library to post blogs to Live Spaces using the MetaWeblog API. Am using the newPost() method of the API. I try to add the...
Hello all, Has anybody done a Shopatron integration using XMLRPCNET? I'd like to use it in my project - great project, docs and community - but I'm concerned...
Hi there! I am trying to get an connection to an existing XMLRPC-Server in the www. I create a new proxy, set the NetworkCredentials and try to connect to the...
It's a problem with proxy generation. Without seeing the interface code, and associated types, it is impossible to determine what is causing it. ... [Non-text...
Hey people! I have following problem: I'm trying to get some data via xmlrpc from the server (which is a Java-Server). My client is written in C# but the...
Is it just me or are the compiled binaries missing from the currently linked xml-rpc.net.2.4.0.zip file? (I tried recompiling but I obviously don't have the...
Hi. I'm New in C# and xml-rpc.NET. But it's a good idea use the Try Catch. Here a code, I didn't test, but I think is ok. I removed ToString too. I hope have...
We have an .ashx file in a subfolder within our main application folder. As per the instructions on the http://www.xml-rpc.net/faq, section 3.11 "Can I...
Unlike the example in the FAQ you are using code-behind. Is the vb file in the App_Code folder? What do you see if you try to access the url of the ashx file...
I realize that the XML-RPC spec does NOT define support for 64-bit integers (at least based on my Google/Bing searches for the past hour or so), but I did see...
I'm getting a: XmlRpcInvalidXmlRpcException: response contains struct member aImage with missing value [response : struct mapped to type XmlRpcStruct] when...
I've checked in support for <i8>, with unit tests, on the 2.4 branch in preparation for a 2.5 release. You can checkout and build the code from here: ...
Hi, I have a simple method that returns the result set of whatever sql query I send as a parameter. Let's say I have one like this: select col1, col2, col3,...
Hi Wayne: XmlRpcStruct derives from Hashtable and so the ordering of the entries in the collection depends on the hash value of each entry. The XML-RPC spec...
Hi! First, I'm a big fan of the XMLRPC Library! Awesome code. I am working on a web handler (ashx) as an event listener. The events are being sent as a Request...
Hi Charles! Do you mean use the XmlRpcLogger to output the mentioned to xml files? If so, at what point (where) do I attach the tracer? I've successfully used...
Sorry, what I suggested is for a client proxy only. It is not supported on the server. You will have to write some code to dump the request stream in...
Hi Charles! I turned off my logging code and sure enough that error went away to be replaced with perhaps a more meaningful one (below). Is this being thrown...
It looks like the Request does not follow the XML-RPC spec. A couple of the The <param> tags do not contain a <value> tag. Is there something I can do to work...
Complain to the people who wrote the client code? :-) You could modify this code in DeserializeRequest: XmlNode valueNode = SelectSingleNode(paramNode,...