我正在运行独立的Spring Jaxws应用程序,并且正在使用org.springframework.remoting.jaxws.SimpleJaxWsServiceExporter公开webservice,端点是
  127.0.0.1:9595/MyFirstService”和127.0.0.1:9595/MySecondService。现在,我想在不同的端口(例如代码127.0.0.1:9595//MyFirstService和127.0.0.1:8585/MySecondService')上公开我的Web服务。

请帮助我实现这一目标。

最佳答案

我找到了解决方案。

我正在使用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>

10-05 18:26