.NET 2.0 may break existing XML-RPC.NET applications because of a breaking change in System.Reflection.Emit code generation. The problem was reported to...
Hello all, hoping someone out there can help me with this I have a client / server using XmlRpc to pass data and call remotes methods and 90% of the time...
The response looks fine to me. Based on a Google search for the error message this looks like a client written in XmlRpc++, a C++ library for XML-RPC. Have you...
I didn't realize there was a separate site for XmlRpc++, could you forward me the link, this problem is driving me crazy I wish that it wasn't an intermittent...
Googling for "XmlRpc++" should take you there. - Charles ... forward me the link, this problem is driving me crazy I wish that it wasn't an intermittent thing,...
i'm trying to write some code that will interface with livejournal's xml-rpc interface. here's the thing. in order to log in to livejournal, you have two basic...
Is it possible to change the way a type is mapped using code attributes. My server (a perl one) is automatically typeing phone numbers to integers but there is...
There won't be a problem with the LJGetChallenge method having no parameters. I don't understand the code - the return from LJGetChallenge is not used and...
According to the spec (and the XML-RPC.NET implementation) an integer value must be a "four-byte signed integer". It sounds like the server is returning an...
This is probably a case of me not entirely understanding the instructions. The LJ.XMLRPC.getchallenge method takes no arguments, and returns a struct with two...
I've posted about the Fiddler HTTP debugging proxy here: http://www.cookcomputing.com/blog/archives/000485.html#485 As the snapshots illustrate this is a great...
Hi Mike - can you run Fiddler - mentioned in my previous post here - and supply the TextView output for request and response? This will tell us what the server...
I gladly shall after I figure out how to intergrate it (temporarily) into my app. In the meantime, you can see Livejournal's technical specs on the challenge...
No need to integrate Fiddler with your app: just install it and run it and it will display HTTP traffic on your machine. - Charles ... [Non-text portions of...
This is related to the breaking change in .NET 2.0 I mentioned recently. The interface is not public at the assembly level because the Program class is not...
Hallo, I try to implement a service :-). Until now everything worked fine. Now I changed a member of a struct which is used as a parameter for a function. The...
Hi JTeichi - that is a bug. I've fixed it and a build containing the fix is available here: http://www.cookcomputing.com/test/xml-rpc.net.0.9.3.1.alpha.zip -...
That worked :) I misread the instructions, I thought only the interface had to be explicitly declared public in order for this to work. Here's what Fiddler...
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...