我是 GroovyWS 的新手。
我喜欢在我的 Grails 应用程序中使用 SSL 网络服务。到目前为止,我收集了以下一段代码
def myServiceUrl ="https://myserverurl/services/myservicename"
Map<String, String> mapClient = [
"https.keystore":"",
"https.keystore.pass":"",
"https.truststore":"",
"https.truststore.pass":"client"
]
def proxy = new WSClient(myServiceUrl +"?wsdl", this.class.classLoader)
proxy.setSSLProperties(mapClient)
proxy.setBasicAuthentication("username","password")
proxy.initialize()
但这一切都以一个例外告终
java.lang.NullPointerException
at groovyx.net.ws.cxf.SSLHelper.getLocalWsdlUrl(SSLHelper.java:253)
我想知道我怎样才能得到预先写好的一段代码?到目前为止,我已经使用了 GroovyWS 有没有其他方法可以在 Grails/Groovy 中实现 WS 客户端?
提前致谢