0

我在 Grails 项目中使用 ws-client 来调用 Web 服务。

没关系,但它正在从 WSDL 读取端点。

如何在运行时更改端点?

def proxy = new WSClient(wsdlURL, Thread.currentThread().getContextClassLoader());
proxy.setEndpoint(''); // this doesn't exists, ERROR!

谢谢!

注意:需要我用它BindingProvider.ENDPOINT_ADDRESS_PROPERTY来解决这个问题吗?

4

2 回答 2

1

您可以通过执行以下代码来更改端点地址:

// getter method for the wrapped client class
WSClient.metaClass.getCxfClient = { ->
    delegate.client
}
// init ws client
proxy = new WSClient(wsdlURL, this.class.classLoader)
proxy.initialize()
// get client instance
def cxfClient = proxy.cxfClient
// create new endpoint url
URL newUrl = new URL("http://edu-02:8080/educenter/services/sync")
// assign new created url to the client
cxfClient.getConduit().getTarget().getAddress().setValue(newUrl.toExternalForm());
于 2011-07-26T05:58:48.960 回答
0

使用 hitty5 answer,一个方法封装的答案。

// class with proxy attribute instanciated
def setEndpoint(String endpoint){
    String url = new URL(endpoint).toExternalForm()
    this.proxy.client.conduit.target.address.setValue(url)
}

额外:设置超时,使用:

proxy.client.conduit.clientSidePolicy.setReceiveTimeout(999)
proxy.client.conduit.clientSidePolicy.setConnectionTimeout(999)
于 2011-07-26T14:28:26.490 回答