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

Reply via email to