[jbossws-issues] [JBoss JIRA] Updated: (JBWS-1761) WSProvide ignore SOAPBinding declaration

Thomas Diesler (JIRA) jira-events at lists.jboss.org
Wed Oct 10 10:51:03 EDT 2007


     [ http://jira.jboss.com/jira/browse/JBWS-1761?page=all ]

Thomas Diesler updated JBWS-1761:
---------------------------------

    Description: 
I specified the SOAPBinding in the EJB3 stateless session bean as follows:

Code:

...
import static javax.xml.ws.soap.SOAPBinding.SOAP12HTTP_BINDING;
...
@WebService(name="Kundenverwaltung",
             targetNamespace="http://ws.hska.de/kundenverwaltung",
             serviceName="KundenverwaltungService")
@BindingType(SOAP12HTTP_BINDING)

@Stateless
@Remote(KundenverwaltungService.class)
@RolesAllowed(ROLLE_MITARBEITER)

@WebContext(contextRoot="/hska/KundenverwaltungService",
            urlPattern="/*",
            authMethod="BASIC",
            transportGuarantee="NONE")
@SecurityDomain("hska")
@EndpointConfig(configName="Standard WSSecurity Endpoint")
public class KundenverwaltungServiceBean implements KundenverwaltungService {...	



The generated WSDL looks as follows:
Code:

...
 <binding name='KundenverwaltungBinding' type='tns:Kundenverwaltung'>
  <soap:binding style='document' transport='http://schemas.xmlsoap.org/soap/http'/>
  <operation ...	

> WSProvide ignore SOAPBinding declaration
> ----------------------------------------
>
>                 Key: JBWS-1761
>                 URL: http://jira.jboss.com/jira/browse/JBWS-1761
>             Project: JBoss Web Services
>          Issue Type: Bug
>      Security Level: Public(Everyone can see) 
>    Affects Versions: jbossws-2.0.0
>            Reporter: Heiko Braun
>         Assigned To: Thomas Diesler
>             Fix For:  jbossws-2.0.2
>
>
> I specified the SOAPBinding in the EJB3 stateless session bean as follows:
> Code:
> ...
> import static javax.xml.ws.soap.SOAPBinding.SOAP12HTTP_BINDING;
> ...
> @WebService(name="Kundenverwaltung",
>              targetNamespace="http://ws.hska.de/kundenverwaltung",
>              serviceName="KundenverwaltungService")
> @BindingType(SOAP12HTTP_BINDING)
> @Stateless
> @Remote(KundenverwaltungService.class)
> @RolesAllowed(ROLLE_MITARBEITER)
> @WebContext(contextRoot="/hska/KundenverwaltungService",
>             urlPattern="/*",
>             authMethod="BASIC",
>             transportGuarantee="NONE")
> @SecurityDomain("hska")
> @EndpointConfig(configName="Standard WSSecurity Endpoint")
> public class KundenverwaltungServiceBean implements KundenverwaltungService {...	
> The generated WSDL looks as follows:
> Code:
> ...
>  <binding name='KundenverwaltungBinding' type='tns:Kundenverwaltung'>
>   <soap:binding style='document' transport='http://schemas.xmlsoap.org/soap/http'/>
>   <operation ...	

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jbossws-issues mailing list