[jbossws-issues] [JBoss JIRA] Created: (JBWS-1337) SOAP request with complex types mapped to default namespace is not accepted

Magesh Kumar B (JIRA) jira-events at jboss.com
Tue Nov 7 23:55:41 EST 2006


SOAP request with complex types mapped to default namespace is not accepted
---------------------------------------------------------------------------

                 Key: JBWS-1337
                 URL: http://jira.jboss.com/jira/browse/JBWS-1337
             Project: JBoss Web Services
          Issue Type: Bug
      Security Level: Public (Everyone can see)
          Components: jaxrpc
    Affects Versions: jbossws-1.0.3.SP1
         Environment: Tested with SOAPUI and JBossWS1.0.3SP1 on JBossAS4.0.4GA
            Reporter: Magesh Kumar B
            Priority: Critical
             Fix For: jbossws-1.0.5


Literal web services are required to be schema valid. So when looking into these issues, as long as the xml matches the schema, then we MUST support it.

<Foo xmlns="blah"/>

Is semantically equivalent to

<ns:Foo xmlns:ns="blah"/>


Both should work. Also the following are equivalent:

<customer xmlns="customer-namespace">

   <name xmlns=''>Fred</name>

</customer>

<ns:customer xmlns:ns="customer-namespace">

    <name>Fred</name>

</ns:customer>



-- 
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