Java XMLRPC request-String
- by Philip
Hi,
I'm using Apache XML-RPC 3.1.2 to talk to an online-service. They have something special, they need a hash over the whole XML with a secret key for some kind of security, like this:
String hash = md5(xmlRequest + secretKey);
String requestURL = "http://foo.bar/?authHash=" + hash;
So I need the XML-request like this:
<?xml…