Does anyone know if it is (or should be) possible to connect to a Java server from a C# client? The Java server recieves the method call from the C# client but...
Yes. The FaultString property of the XmlRpcFaultException may indicate why the server is returning an XML-RPC fault response. - Charles ... [Non-text portions...
i'm using the .NET client to do the request to the server. The problem is HOW i use the .NET client side to include/call the server side xml-rpc php script for...
hi, did my code show any error her. i newbie in xml-rpc VB.net... I using the FAQ sample for trying my manually proxy via firewall. Please help. Thanks! ... ...
Hello, this example which i modify(into vb.net manually proxy) from your MathApp sample. But i miss something. Because the value won't be change since i make ...
Is there any way to return class objects, or map them to structs automatically? I am using LLBLGen Pro to generate DAL classes and would like to find some...
Sorry i know where my mistake liao. Haha~ too noob... ... from ... make ... help!!! ... ("http://www.cookcomputing.com/xmlrpcsamples/math.rem") ... Integer) ...
hello, can i let the user to specify the method call name? ... <XmlRpcMethod("math.Add")> _ Public Function Add(ByVal a As Integer, ByVal b As Integer) As...
I am new to XML-RPC, so bare with me. I searched the messages and didn't find anything on this subject. I will have a flash client talking to IIS (asp.net)....
Hi Rob, Just curious - why isn't SSL an option? Ben _____ From: XMLRPCNET@yahoogroups.com [mailto:XMLRPCNET@yahoogroups.com] On Behalf Of rteegarden Sent:...
... More generally, it'ld be usefull in my opinion to specify class objects as input parameters as well. This mainly to overcome a limitation of C#, where you...
Help, how come still got error about the authentication althought i already use the "proxy.Credentials"??? i try to pass throught the SQUID Proxy-cache server....
I use this if (bUuseProxy) { Uri proxyURI = new Uri("http://myproxy.com:8080"); WebProxy proxy = new WebProxy(proxyURI, true); proxy.Credentials = new ...
On this project it has 2 front ends, one running flash in an active desktop enviroment and the other is flash in a browser. I have been told by the flash...
I think it's worth investigating whether SSL can work from a desktop Flash app. Once your communication is routed through SSL, nobody will be able to see the...
Thanks Ben, that does make sense. We will be using Glow and Zinc for the desktop app, so I will follow up with them on getting it all to work on SSL. Thanks...
Thanks Charles. Should you need some help in coding, just let me know. I must admit that I'm much more proficient in C/C++ than in C#, but given some...
Hi, my situation is like this >>>>> i using a client pc in my LAN and connect with a linux server.... When i need to access another xmlrpc web service(other...
I searched the board, and found these notes about 0.9.0: dateTime parsing supports "yyyy-MM-ddTHH:mm:ss" to handle blog service providers which return invalid...
Hi Charles, I need want to run an XMLRPC server. I have created my class with required logic & have extended the XmlRpcServerProtocol class. I want to specify...
Is there a way to take advantage if the ability of .NET to create multiple definitions of a method with different signatures? I have this two definitions in a...
The .NET DateTime type cannot have a value of "0000-00-00T00:00:00" which is why the problem is occurring. I don't know how other XML-RPC libraries would...