Hi all, Does XML-RPC call support name spaces and Schemas ? In a XML RPC call, if I have to ship an object to a server so that server can extract that info from the received object, do some computation and send back a different object.. how can i do so ? Hope to hear from u. amit ------------------ Sun Certified Java Programmer for Java 2 Programming
My understanding is that with XML-RPC you pass parameters and class name that you would like to use on a remote machine, not passing an object itself and manipulating it and passing back another object. So you would have to have the object on the remote machine, and you pass the parameters and do your processing there. You can return any parameter values then after your processing. BRian