Hi, Im using an java applet to communicate with an php server using xml- rpc. I created a login, but my variable $FAIL_ATTEMPTS is not adding and im getting...
Sorry, but I fear you should study your php a little bit more... The line $FAILED_ATTEMPTS; in the code does strictly nothing - as in php there is no need for ...
I'm calling a XML-RPC remote procedure and I'm finding that the application is case sensitive with respect to member names in my methodCall. I was wondering...
... Here is the spec http://www.xmlrpc.com/spec There is nothing in the spec which talks about case sensitivity. It's an issue for the application. My...
We've been using the CurrentTime webservice to verify that people running our services have their time synced up correctly on their machines. however, it...
It doesn't resolve for me either, but that's no surprise given that xmlrpc.com has been disintegrating for a while now. ... [Non-text portions of this message...
I have php-xmlrpc.dll installed on a server as part of money service in a virtual world (using WAMP). How can I do a simple check that it is functioning OK...
the phpxmlrpc library includes a complete xmlrpc debugger. To install it, you will need a php server - it might be the same as the wmlrpc server to be tested...
Hi, I am sending data from windows client to linux server with pstream transport. The problem happen, when the windows client is receiving response i.e. during...
... You're probably going to get more help if you tell us exactly what XML-RPC implementation (including the version) you are using on Linux and Windows. John...
If I've got an endpoint of: https://example.com/rpc What response would you expect if the wrong scheme was used by mistake? http://example.com/rpc Is there a...
... The central concept of XML-RPC over HTTP is "RPC". The other two have not been important in the past, and it's unlikely there is any particular care about...
Jay Carlson
nop@...
Dec 24, 2008 9:16 am
6792
... How about in a practical world? ;) I suppose what I return is whatever I document. So, I'm looking for suggestions. In my *web* app some pages require...
I would be inclined to return the redirect or define and document an XML-RPC fault code for redirection. The former lets your users take advantage of good...
Hi, I am currently testing my application on windows with xmlrpc 01.16.00. I am getting utf related problems. This occurs when i try to to call function...
Greetings Jay. It seems by your log that you are passing invalid data to your method. UTF-8 can only represent values 0x00-0x7f in single-byte format. When...
Hi Troy, The same piece of code is working fine in linux. In windows its giving this particular problem. Also if two-byte representation is needed, do i need...
Hi, It seems va_listx operation is not working properly on windows. The arguments are populated with the string "callback_method" in xmlrpc_build.c. ...
Hello, thank you for the great lib ... but i wonder if there is an "running" example for a real vb.net xmlrpc-net SERVER. I dont like to have an IIS or...
I'd say the best choices are: - the php xmlrpc extension (www.php.net/xmlrpc). Fastest of them all, since it is written in C and not in PHP, and comes as...
Hello everyone, Iam using the xmlrpc with the c#.net. My server function looks like this below. API = (('object_id', 'ASCII string', 1), ('services', 'struct',...
Hello Dineshp. You can nest XmlRpcStructs just like you would nest .net Hashtables: XmlRpcStruct t = new XmlRpcStruct(); XmlRpcStruct u = new XmlRpcStruct(); ...
Hello troy, Thank you very much for your answer. I have implemented the interface and structure as below [XmlRpcUrl("http://www.myurl.com")] public interface...
Dinesh, If your client is not receiveing a response, your client is probably not transmitting a request. Try using Wireshark http://www.wireshark.org/ to ...
hello troy, Thank you once again for your reply. Actually is it possible to view the request in from the c#.Net itself so that i can verify with the server api...