I am using WSClient to connect to a wsdl server.
def proxy = new MyWSClient("https://", this.class.classLoader)
proxy.initialize()
All works as expected with http request. But when I use SSL(https) I get an error "The document has moved", in the browser it appears.
I do see that the plugin connected to the server since i get the prints of the plugin of the available methods:
INFO MyWSClient - available method: {http://...}checkCredentials
Questions:
- in the print of available methods, as can be seen, the service is http and not https - why?
- Does WSClient support SSL calls?
- Is there a better way to implement a call to a wsdl in grails?
Thanks in advance