这也适用于 Jboss 6。我在我的 Jboss 6.2.2 上试过了。在standalone.xml 中注释以下内容
<!-- <extension module="org.jboss.as.webservices"/> -->
然后在同一个standalone.xml 中注释下面的代码片段。请注意,如果您使用不同的配置文件名称或在域模式下,您将不得不在类似的地方执行此操作。
<!--
<subsystem xmlns="urn:jboss:domain:webservices:1.2">
<modify-wsdl-address>true</modify-wsdl-address>
<wsdl-host>${jboss.bind.address:127.0.0.1}</wsdl-host>
<endpoint-config name="Standard-Endpoint-Config"/>
<endpoint-config name="Recording-Endpoint-Config">
<pre-handler-chain name="recording-handlers" protocol-bindings="##SOAP11_HTTP ##SOAP11_HTTP_MTOM ##SOAP12_HTTP ##SOAP12_HTTP_MTOM">
<handler name="RecordingHandler" class="org.jboss.ws.common.invocation.RecordingServerHandler"/>
</pre-handler-chain>
</endpoint-config>
<client-config name="Standard-Client-Config"/>
</subsystem>
-->