> On Feb 13, 2015, at 6:49 AM, Pasadi Munasinghe <[email protected]> wrote: > > I need to implement a Client in cxf to send messages to a WS endpoint > without initializing a service class without using a WSDL. Can anyone > suggest me how to do this..? > Thanx..!
JAX-WS has some ways to do this, but it’s not “easy”. You would need to do a Service.create(name) to create the Service, call addPort on it to define the port (soap1.1/1.2, url, etc…), then create the Dispatch object from it. -- Daniel Kulp [email protected] - http://dankulp.com/blog Talend Community Coder - http://coders.talend.com
