You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by bu...@apache.org on 2002/10/02 18:51:49 UTC

DO NOT REPLY [Bug 13215] New: - Axis does not seem to support xs:group

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13215>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13215

Axis does not seem to support xs:group

           Summary: Axis does not seem to support xs:group
           Product: Axis
           Version: 1.0-rc1
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Major
          Priority: Other
         Component: WSDL processing
        AssignedTo: axis-dev@xml.apache.org
        ReportedBy: charlie1.savage@ps.ge.com


Axis does not seem to support xs:group elements.  For example

	<group name="RequestModelGroup">
		<sequence>
			<element name="version" type="string"/>
		</sequence>
	</group>

	<complexType name="Map">
		<sequence>
			<group ref="ows:RequestModelGroup"/>
			<element name="width" type="int"/>
			<element name="height" type="int"/>
		</sequence>
	</complexType>

When you run WSDL2Java, a GetMap Java class is created.  However, it only has a 
width and height property, not a version property (which it should).  Support 
of groups is very important because it allows creation of more modular schemas.