我正在调用一个典型的 SOAP WCF 方法void HelloWorld();
不幸的是,它的响应如下:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<HelloWorld xmlns="http://tempuri.org/"/>
</s:Body>
</s:Envelope>
有什么办法可以<HelloWorld xmlns="http://tempuri.org/"/>
从响应中删除该行(基本上是空的<s:Body>
)?