You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Thomas Diesler (JIRA)" <ji...@apache.org> on 2008/04/08 15:49:24 UTC

[jira] Commented: (CXF-1514) Generated WSDL does not take 'transport-guarantee' in web.xml into account

    [ https://issues.apache.org/jira/browse/CXF-1514?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12586797#action_12586797 ] 

Thomas Diesler commented on CXF-1514:
-------------------------------------

<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

  <servlet>
    <servlet-name>ConfidentialEndpoint</servlet-name>
    <servlet-class>org.jboss.test.ws.jaxws.jbws1190.ConfidentialEndpoint</servlet-class>
  </servlet>
    
  <servlet>
    <servlet-name>TestEndpoint</servlet-name>
    <servlet-class>org.jboss.test.ws.jaxws.jbws1190.TestEndpointImpl</servlet-class>
  </servlet>
 
  <servlet-mapping>
    <servlet-name>ConfidentialEndpoint</servlet-name>
    <url-pattern>/ConfidentialEndpoint</url-pattern>
  </servlet-mapping>
   
  <servlet-mapping>
    <servlet-name>TestEndpoint</servlet-name>
    <url-pattern>/TestEndpoint</url-pattern>
  </servlet-mapping>
  
  <security-constraint>
    <web-resource-collection>
      <web-resource-name>ConfidentialEndpoint</web-resource-name>
      <url-pattern>/ConfidentialEndpoint</url-pattern>
    </web-resource-collection>    
    <user-data-constraint>
      <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
  </security-constraint>  
</web-app>

15:47:39,758 INFO  [ReflectionServiceFactoryBean] Creating Service {http://org.jboss/test/ws/jbws1190}ConfidentialService from class org.jboss.test.ws.jaxws.jbws1190.ConfidentialEndpoint
15:47:40,868 INFO  [ServerImpl] Setting the server's publish address to be http://127.0.0.1:8080/jaxws-jbws1190/ConfidentialEndpoint


> Generated WSDL does not take 'transport-guarantee' in web.xml into account
> --------------------------------------------------------------------------
>
>                 Key: CXF-1514
>                 URL: https://issues.apache.org/jira/browse/CXF-1514
>             Project: CXF
>          Issue Type: Bug
>    Affects Versions: 2.0.5
>            Reporter: Thomas Diesler
>
> [tdiesler@tddell trunk]$ ant -Dtest=jaxws/jbws1190 test
> tests-run-internal:
>     [junit] Running org.jboss.test.ws.jaxws.jbws1190.JBWS1190TestCase
>     [junit] Tests run: 2, Failures: 0, Errors: 2, Time elapsed: 6.989 sec
>     [junit] Test org.jboss.test.ws.jaxws.jbws1190.JBWS1190TestCase FAILED

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.