In a java class,the Xml rpc webserver is listing to the client requests (by url like http://localhost:8056/) and the xml request is having multiple number of lines like

<methodCall>
<methodName>method1</methodName>
<params>
<param><value><string>hello1</string></value></param>
<param><value><string>hello2</string></value></param>
</params>
</methodCall>

how to catch all the parameters which are going to vary by request to request.. but every we have to use the same method to process the request.

Thanks in advance..

link|improve this question

53% accept rate
feedback

1 Answer

Why not use the Apache XML-RPC library which does all parsing for you?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.