Can i help me solve this problem ? I have to develop a web service in java. That have to return a xml below. I dont know how to return multiple value like that in java
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<Response xmlns="http://tempuri.org/">
<Result>int</Result>
<strReturn>string</strReturn>
</Response>
</soap:Body>
</soap:Envelope>