Web services 使用https://作为默认jboss web服务器方案

Web services 使用https://作为默认jboss web服务器方案,web-services,jboss6.x,Web Services,Jboss6.x,当前的jBoss配置使web服务在HTTP(端口7001)和HTTPS(端口7002)上都可用,wsdl包含soap:address 位置=”http://localhost:7001/my/web/service/url/". 我想要的是强迫它表现出来 location=“httpS://localhost:7002/my/web/service/url/” 以下是standalone.xml的一些关键部分: <connector name="http" protocol="HTTP/1

当前的
jBoss
配置使web服务在HTTP(端口7001)和HTTPS(端口7002)上都可用,
wsdl
包含
soap:address

位置=”http://localhost:7001/my/web/service/url/". 我想要的是强迫它表现出来 location=“httpS://localhost:7002/my/web/service/url/”

以下是standalone.xml的一些关键部分:

<connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http" redirect-port="7002"/>
<connector name="https" protocol="HTTP/1.1" scheme="https" socket-binding="https" enable-lookups="false" secure="true">
    <ssl name="ssl" key-alias="softclub.mobile.banking" password="rmi+ssl" certificate-key-file="../standalone/configuration/jboss.keystore" protocol="TLSv1" verify-client="false"/>
</connector>

<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>
    ...
</subsystem>

<socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}">
    ...
    <socket-binding name="http" port="7001"/>
    <socket-binding name="https" port="7002"/>
    ....
 </socket-binding-group>

真的
${jboss.bind.address:127.0.0.1}
...
...
....
可能吗