我有以下 JAX-WS 方法
public School createUpdateSchool(Perks reqeustData, DataHandler contentData)
{
----
----
}
在我的 SOAP 响应中,
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ns3:CreateUpdateSchoolResponse xmlns:ns2=".........">
<return>
<ns2:Student name="Raj" ......
<ns2:Exam pattern="CBSE"............
............
</return>
</ns3:CreateUpdateSchoolResponse>
</S:Body>
</S:Envelope>
事实上,我可以自定义元素,但我无法从肥皂响应中完全删除它。
- 是否可以通过某些配置删除它?
- 如果没有,至少通过 SOAP 处理程序如何做到这一点?
任何帮助将不胜感激。