通过ASMX web servcie函数读取SOAP XML
我在VB中编写了一个简单的Web服务(ASMX)函数:
Public Function processMessage(ByVal Messages as XMLElement) As String Dim strS as string strS = Messages.outerXML Return strS End Function
并通过发送以下请求进行测试(尝试读取两条消息):
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:urn="urn:gps-hex-communicator"> <soap:Header/> <soap:Body> <processMessage xmlns="urn:gps-hex-communicator"> <Messages> <Message> <DeviceID>11A</DeviceID> <MessageID>1111B</MessageID> </Message> <Message> <DeviceID>22A</DeviceID> <MessageID>2222B<MessageID> </Message> </Messages> </processMessage> </soap:Body> </soap:Envelope>
并得到以下回应:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <soap:Body> <processMessageResponse xmlns="urn:gps-hex-communicator"> <processMessageResult><![CDATA[<Message xmlns="urn:gps-hex-communicator"> <DeviceID>11A</DeviceID> <MessageID>1111B</MessageID> </Message>]]></processMessageResult> </processMessageResponse> </soap:Body> </soap:Envelope>
问题在于,它在阅读第一条消息后停止,而第二条消息从不出现。 我怎么才能得到它?
第二条消息上有一个破损的标签
<MessageID>2222B<MessageID>
应该可能是
<MessageID>2222B</MessageID>
谢谢大家。 我现在得到了答案。 XmlAnyElementAttribute有助于获取所有内容。因此,asmx函数的第一行应该是:
Public Function processMessage(<XmlAnyElementAttribute()> ByVal Messages as XmlElement) As String
链接地址: http://www.djcxy.com/p/18741.html
上一篇: Read SOAP XML by ASMX web servcie function
下一篇: Java: JAXB: Marshelling of JAXBElement<Calendar> to xs:date not correct