代码之家  ›  专栏  ›  技术社区  ›  ip696

CXF总是在WSDL中返回第一次打开url的人

  •  0
  • ip696  · 技术社区  · 6 年前

    我创造 SOAP CXF :

    @Bean
    Endpoint endpoint() {
        EndpointImpl endpoint = new EndpointImpl(bus, myEndpoint);
        endpoint.publish(path);
        return endpoint;
    }
    

    当我在浏览器中打开url时,比如: http://localhost:6666/app/ws?wsdl <soap:address location="http://localhost:6666/app/ws"/>

    但当我用外部URL打开时: http://172.16.105.134:6666/app/ws?wsdl <soap:地址位置="http://localhost:6666/app/ws“/>

    一般来说,我总是得到我第一次打开的url。

    但是我的任务总是返回请求它的url。我该怎么做?

    1 回复  |  直到 6 年前
        1
  •  0
  •   Dennis Kieselhorst    6 年前

    WSDL由缓存 org.apache.cxf.wsdl11.WSDLManagerImpl . 您可以提供自己的 org.apache.cxf.wsdl.WSDLManager publishedEndpointUrl 属性进行更新(请参见 https://github.com/apache/cxf/blob/master/rt/frontend/jaxws/src/main/java/org/apache/cxf/jaxws/EndpointImpl.java#L347