Hi Im trying to interoperate with a perl XMLRPC::Lite server. I would like to upload a file (via an ASP.NET page) to the server and save it in a MySQL...
Hi, I am having some trouble with MSN Spaces new metaWeblog API implementation. When I called blogger.getUsersBlogs I get a xml doc that has extranous...
The response is not valid XML - it contains two byte order marks. This was a problem during the Spaces API beta but was supposed to have been fixed. I've...
I got a reply from their developer, Dare Obasanjo saying the same. "Our service is returning an extra unicode byte order mark at the beginning of the XML ...
Hallo, Is there anyone who has successfully created a PDA client using the XML-RPC .net library and the .net Compact Framework? I can't find any examples or ...
For those who are interested, here is how I stripped out the extra BOM characters. public XmlRpcResponse DeserializeResponse(Stream stm, Type svcType) { if...
I'm trying to send the following payload using xml-rpc.net and have found in the documentation on sending a struct but how do I add the infomation prior and...
If I understand the question correctly you need to define a method which takes several parameters, i.e. taking an int, int, struct, string. - Charles...
Charles, Thanks for the reply. Yes, I tried using multiple parameters in the method call and it worked great. Sometimes things are too simple. Can I change the...
Hi Brad - you will need to change the source and rebuild if you want to change the output for integer values (or fix the server code if it can't handle <i4>). ...
how exactly do I map something like this return value: HTTP/1.1 200 OK Connection: close Content-length: 420 Content-Type: text/xml Date: Mon, 15 Jul 2002...
Use something like this, with second struct as the return type. If the return type is XmlRpcStruct it will contain a single member with key "added" and value...
I've developed a client using XML-RPC.NET (works great). It retrieves an XML-RPC struct from a server and in an object provides access to certain elements of...
There is a bug in XmlRpcStruct. Rebuild the library with the following version of XmlRpcStruct.cs. I'll make available a test build later today. /* XML-RPC.NET...
Hi all, Right now when I need to send an empty array I set the property to an empty c# array (e.g. new Category[]{} ) and xml-rpc.net outputs the following: ...
Hi Alex - the alternatives you provide are all valid XML-RPC values and so could not possibly be used to represent an empty array or empty struct. In general I...
Snapshot of current state of next release here: http://www.cookcomputing.com/test/xml-rpc.net.0.9.3.3.alpha.zip Includes fix for problem below. - Charles ... ...
Hi Group, Does anyone know if the xml-rpc.net 0.9.2 supports SSL/https? I have searched the web and the mailing list, but the only answer I can find is this...
Esben Laursen
lists@...
Jan 24, 2006 8:07 pm
593
One of the things the LiveJournal service allows you to do is to use dedicated servers which are less congested when you're a paying member. In order for your...
Yes, if you need to provide a client certicate use the ClientCertificates property, otherwise, for example when connecting to the MSN Space XML-RPC API, the...
... Thank you very much for your suggestion! :) It's been very helpful for me in finding what I did wrong (a very stupid mistake, really :D) Thanks again, ...
... Im just a novice, so Im not quite sure what you mean by the MSN space XML-RPC API. Is it possible to do a ssl communication without inporting a ssl...
Esben Laursen
lists@...
Jan 27, 2006 3:32 pm
600
Hi again experts, Is there any way to get the header send/recieved from a xmlrpc? I know I can get the xml request/response, but I would also like to see the ...