Hi, I have a problem connecting my webservice client to the server. My problem is, that the URL that is stored in the WSDL file is not valid, so I want to use my own configurable (by some XML file) URL. But ... I do not know how to change the URL in my source code.
My current code looks like this: XYZservice service = new XYZservice(); Foo foo = service.getXYZPort(); But then the program is using the URL of the webservice from the WSDL file. I want to have something like this: XYZservice service = new XYZService(http://....:8080/service); Foo foo = service.getXYZPort(); How is this possible? Any clues? -- View this message in context: http://cxf.547215.n5.nabble.com/Connect-to-url-not-in-WSDL-tp5711974.html Sent from the cxf-user mailing list archive at Nabble.com.
