Hello Daniel, I tried to add the bindingNamePostfix but it didn't work :(
I see in the different XSD that soapBinding can only accept: - mtomEnabled, version, style, use. None about the bindingName nor bindingNamePostfix... But I succeed when I defined a new BindingConfiguration class like you said previously here: http://markmail.org/message/6qqguevxo4sxkzsw#query:bindingName%20cxf+pag e:1+mid:e5zzcovmprd3mtbi+state:results Thanks again for your help. -----Original Message----- From: Daniel Kulp [mailto:[EMAIL PROTECTED] Sent: 10 October 2008 19:39 To: [email protected] Cc: Maxime Orain Subject: Re: Change the bindingName There certainly isn't an "easy" way to do this. Nothing in any of the specs really allows control over this. In spring config, you can specify a binding configuration object. The SoapBindingConfiguration object has a bindingNamePostfix which can be configured in Spring to reset it to something else. Kind of like: <jaxws:endpoint id="simpleWithBinding" implementor="#greeter" address="http://localhost:8080/simpleWithAddress3"> <jaxws:binding> <soap:soapBinding bindingNamePostfix="HttpBinding"/> </jaxws:binding> </jaxws:endpoint> (I think, haven't actually tried it) Dan On Friday 10 October 2008 12:56:05 pm Maxime Orain wrote: > Re Hello to all! > > > > When I generate the WSDL from Java I get my Binding name set to : > SERVICE_NAME + "SoapBinding" > > > > Is there a way to change this? > > > > I would change it to SERVICE_NAME + "HttpBinding" (Like XFire did it) > > > > Thanks for your help! > > > > > > This email was sent to you by Thomson Reuters, the global news and > information company. Any views expressed in this message are those of the > individual sender, except where the sender specifically states them to be > the views of Thomson Reuters. -- Daniel Kulp [EMAIL PROTECTED] http://dankulp.com/blog This email was sent to you by Thomson Reuters, the global news and information company. Any views expressed in this message are those of the individual sender, except where the sender specifically states them to be the views of Thomson Reuters.
