Regression from 1.2.1 regarding unqualified elements
----------------------------------------------------

         Key: AXIS-2414
         URL: http://issues.apache.org/jira/browse/AXIS-2414
     Project: Apache Axis
        Type: Bug
  Components: Basic Architecture  
    Versions: 1.3    
    Reporter: Trygve Aasjord


I'm having an issue in 1.3 with unqualified elements in the WSDL (generated by 
BizTalk), causing the prefix to be added anyway.

Example schema (elementFormDefault="qualified", haven't testet if this matters):
<xs:complexType name="ListOfOrder"> 
  <xs:sequence> 
    <xs:element name="Order" minOccurs="0" maxOccurs="unbounded" 
form="unqualified" type="ns1:Order/>
  </xs:sequence>  
</xs:complexType> 

<xs:complexType name="Order"> 
...
</xs:complexType>


With Axis 1.3 the following XML is sent, and causes the BizTalk server to choke:
<ListOfOrder xmlns="">
   <ns1:Order>
   ...
   </ns1:Order>
</ListOfOrder>

I then downgraded to Axis 1.2.1 and got this XML, which works fine:
<ListOfOrder xmlns="">
   <Order>
   ...
   <Order>
</ListOfOrder>


   

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

Reply via email to