|
比如说我有个SoapMessage reply的变量
reply的SOAP消息为
- <?xml version="1.0" encoding="UTF-8"?>
- <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <soapenv:Body>
- <Response xmlns="">This is the response</Response>
- </soapenv:Body>
- </soapenv:Envelope>
复制代码
现在我想提取<Response>元素里的值要怎么做到? |
|