Hi, Does anyone know why it is not supported to run functions that return void in Java XML-RPC server, and if one wants to do so, what is the easiest way to...
Hi, you may find it useful to check my website http://perisic.com/xmlrpc that contains a student's assigned based on the apache package with a minor...
Hi All, I am in process of developing a server and currently analyzing various models to develop the same. My basic requirement is that : 1) Server can be...
... Is the communication RPC-like? I.e. does a client always initiate a communication, and is there a single response to it from the server? Are these...
Yes, the client initiates the process, sends a query to the server. the server inturn processes the query and sends back the response. Is RPC-XML a feasible...
It sounds like XML-RPC is a good match for what you want, and you can use the XML-RPC For C/C++ libraries (http://xmlrpc-c.sourceforge.net) to implement it. ...
Hi Bryan, Thanks a lot for the reply. I wanted to have few queries for the same: 1) Will XML-RPC work if I make the server on UNix and have windows client ? 2)...
... XML-RPC is a communication protocol, and it's entirely insensitive to what operating systems the parties use. The XML-RPC software we've been talking about...
Hi The error message means you do not have the xmlrpc client class available in your current script environment or it is not called xmlrpc_client . You...
Hi, I'm looking for a complete xml-rpc client implementation for JavaScript that would run without applets and in most browsers and would be under an...
Hi, You can use JavaScript library for XML-RPC available at http://scottandrew.com/xml-rpc/. Go through list of XML-RPC implementations (not just Java Script)...
... That one is partial, it only creates messages. ... The other one there is jsolait which does this and many other things... I'd rather have a simple thing. ...
Hi, I'm working on a distributed computing project in the field of Medical Imaging. When starting this project I was initially referred to PVM and MPI for ...
I am new to xml and I am trying to use xml as web.config file. I will use asp.net form to get the web.config settings. Below is my web.config file: <?xml...
I don't know much about XML-RPC, but I know enough to realise that your question has very little to do with the XML-RPC protocol. Try to find a list which is...
XML-RPC spec does not provide way for making an asynchronous callback. The current spec only allows to create another XML-RPC server at the client end for each...
... There's no need for XML-RPC to define this. You can just put a transaction ID of your own invention in the parameter list for the original call and the...
Hi, I am currently implementing XML-RPC for the CDuce XML-oriented programming language (http://www.cduce.org) and am facing the following pb with the spec: ...
Judicael Courant
Judicael.Courant@...
Mar 23, 2005 3:59 pm
6133
... The spec does not require that the names be unique. I believe most implementations will silently ignore all but the last of the duplicates (certainly...
Hi PEAR libraries should be include()d or require()d relative to the include_path environment variable in your php.ini file. E.g if you install your PEAR...
Hi I'm using apache xmlrpc implementation, I'm trying to make an applet and I need it to be xmlrpc client. In apache implementation there are classes for...
hi, i have also used xmlrpc with JApplet. you can move ahead with xmlrpcclient class. xmlrpcapplet class is not required. xmlrpc-1.2-b1-applet.jar is not...
Is it possible to connect an Apache server to an OLE server using XML- RPC? I am running Apache 1.3 on my Win2000 machine and have a OLE server running on it...
I used the sample JavaClient and JavaServer code to figure out how this XMLRPC stuff works. I keep getting the following when I run the Client. JavaClient:...
I'm am a total newbie to Java and xmlrpc. Here is what I've done so far. Downloaded and built the apache xmlrpc package generated the two jar files. Now...
Hi everybody, I'm currently developing an xml-rpc based application using Borland Delphi, and i'm having difficulties on passing a "struct" data type to the...
I suggest you take a look at the DXMLRPC implementation. This is what I've been using and, after a few patches, it seems to answer the need. You could also...
... Hi I tried this: import org.apache.xmlrpc.*; public class NewApplet extends javax.swing.JApplet { public void init() { try { XmlRpcClient server = new ...
Hi I'm working with apache xmlrpc-1.2-b1 implementation. This one is the latest release, but I found some bugs using SimpleXmlRpcClient, it doesn't support...