我看到说客户端发送SOAP消息如下:
<?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>
<DocumentLiteral xmlns="http://www.contoso.com">
<address>
<Street>One Microsoft Way</Street>
<City>Redmond</City>
<Zip>98052</Zip>
</address>
</DocumentLiteral>
</soap:Body>
</soap:Envelope>
但是,我要怎样才能发这样的信息到服务器端呢?
我可以在jsp页面里提交类似的一段xml代码到服务器么?
具体怎么弄呀?谢谢先^_^