Dear all, I would like to use this library in my .NET application, but I cannot find any example related to it under compact framework. I just discover from...
Hi Nel - the Compact Framework build of XML-RPC.Net only supports clients. Also you have to code proxy classes manually because the CF does not support...
Gregg Tavares has provided a fix for dateTime handling when the Japanese Wareki calendar is being used. Alex Hung has reported some problems with other XML-RPC...
... effettivamente ... No, l'array è inizializzato bene , praticamente il server è scritto in c#, ed il client in Perl. L'invocazione non riesce, anche se...
I suggest to continue this discussion in english, in order to share more ideas with other programmers. Just to summarize the problem : you have developed a...
Hello, I'm currently using the xmlrpc.net library for communications with a server running an XMLRPC server utilizing Perl and Frontier. When I receive a...
Hi Matt - does the XML in the string returned from ReadToEnd contain an encoding and if so what is it? After calling ReadToEnd what is the value of the...
The xml string does not contain an encoding. Is this the problem which I should be tackling? The CurrentEncoding is System.Text.UTF8Encoding once the...
I missed the CF dll from the 0.9.1 distribution. I've uploaded a version to: http://www.cookcomputing.com/test/CookComputing.XmlRpc.CF.dll XmlRpcProxyGen...
Hi Matt - If you could supply me with a copy of the response XML document it would be very helpful for investigating this. Perhaps the easiest way to do this...
If I may offer my 2 cents here :) I read on .net 24/7 that the CurrentEncoding property is broken, in the sense that it will always return UTF8Encoding...
I'm having an issue where I need an outgoing member to be optional. Spefically I'm using the metaWeblog.newPost function and I need to be able to NOT have a...
Hi Guys. I'm very new to XMLRPC and have a few project that need to use it. Im having a few problems with what i think might be advanced concepts that being an...
Hi Greg - you could represent the return value of the XML-RPC method along these lines: struct Location { public double latitutude; public double longtitude; }...
Hi Greg - use XmlRpcDateTime as the member type and decorate it with [XmlRpcMissingMapping(MappingAction.Ignore)] If the serializer detects that the member is...
Um, I'm probably wrong (I'm new to C#) but since DateTime is a struct not a class I thought it is therefore a value type and therefore there's no such thing as...
I didn't suggest the use of DateTime :-) - Charles ... struct not a ... no such ... without and ... On Behalf ... value, ... nullable ... default, ... send...
DOH! Thank you. I must be blind ... I didn't suggest the use of DateTime :-) - Charles ... struct not a ... no such ... without and ... On Behalf ... value, ...
FYI there is a change in System.Reflection.Emit in .NET 2 beta 2 which means that when an interface is used as input to XmlRpcProxyGen.Create, the interface...
Hi. I'm experimenting with xml-rpc on .net compact framework. I have a xml-rpc running on the same machine on port 5000. The server works, i proved that with...
Try changing the first parameter of Invoke to "GetHelloName". This parameter is the name of the enclosing method - not the XML-RPC name of the method. It would...
Hi, I know this is not a MT support group but since the problem I am having doesn't seem to occur when the (apparently) same XML-RPC request is made from a OX...
Does this posting by Dare Obasanjo shed any light on the problem: http://www.25hoursaday.com/weblog/PermaLink.aspx?guid=d98a420e-6679-474c-865a-30578338ceb8 I...
Since posting that I've had a flurry of requests and issues to sort out, plus the release of .NET2 beta 2. I spent some time over last weekend finishing these...