我在 Grails 项目中使用 ws-client 来调用 Web 服务。
没关系,但它正在从 WSDL 读取端点。
如何在运行时更改端点?
def proxy = new WSClient(wsdlURL, Thread.currentThread().getContextClassLoader());
proxy.setEndpoint(''); // this doesn't exists, ERROR!
谢谢!
注意:需要我用它BindingProvider.ENDPOINT_ADDRESS_PROPERTY
来解决这个问题吗?