我開始處理SOAP消息,我需要獲取此響應的字符串然後將其轉換爲圖片,但問題是要讓字符串開始用。從Java的SOAP C#Webservice獲取單個數據片段
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<ObtenerImagenResponse xmlns="http://localhost/WebService">
<ObtenerImagenResult>This is a picture</ObtenerImagenResult>
</ObtenerImagenResponse>
</soap:Body>
</soap:Envelope>
如何從Java中提取「這是一張圖片」。
(我熟悉發送SOAP消息,我也可以得到一些消息,這要感謝一些C但我不知道如何使用它們)。
預先感謝您。如果需要,我可以提供更多信息,但這只是很多類似的SOAP響應的示例,我無法閱讀,哪些響應攜帶一個單一元素。
你可以使用XPath http://stackoverflow.com/questions/2811001/how-to-read-xml-using-xpath-in-java –