我正在运行Standalone Spring Jaxws Application并使用org.springframework.remoting.jaxws.SimpleJaxWsServiceExporter来公开webservice,端点是 127.0.0.1:9595/MyFirstService'和127.0.0.1:9595/MySecondService。现在我想在不同的端口上公开我的Web服务,如代码127.0.0.1:9595//MyFirstService和127.0.0.1:8585/MySecondService'。
请帮助我实现这一目标。
答案 0 :(得分:0)
我找到了解决方案。
我使用的是org.springframework.remoting.jaxws.SimpleJaxWsServiceExporter
现在我把它改成了
<jaxws:endpoint id="sampleReq" implementor="#request" address="localhost:9090/MyFirstService" >
</jaxws:endpoint>
<jaxws:endpoint id="sampleReq2" implementor="#request2" address="localhost:8585/MySecondService" >
</jaxws:endpoint>