OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

wsrp-dev message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: AXIS1 Problem with generated sources: Params were mixed up within super constructor.


Hello,

I have a troble while building the sources generated by Axis1 1.4.
There's a problem with super constructor, it looks like params were
mixed up within.

For example, there are two classes: one is MarkupContext which extends
MimeResponse.

Constructor of MimeResponse is generated in such a way that described
attribute is at the end.
But, constructor of MarkupContext invokes super with the attribute
placed as a first param.

==================================
  <complexType name="MimeResponse">
    <sequence>
      <element name="useCachedItem"      type="xsd:boolean"
default="false" minOccurs="0"/>
      <element name="mimeType"           type="xsd:string"
minOccurs="0"/>
      <element name="itemString"         type="xsd:string"
minOccurs="0"/>
      <element name="itemBinary"         type="xsd:base64Binary"
minOccurs="0"/>
      <element name="locale"             type="xsd:string"
minOccurs="0"/>
      <element name="requiresRewriting"  type="xsd:boolean"
default="false" minOccurs="0"/>
      <element name="cacheControl"       type="types:CacheControl"
minOccurs="0"/>
      <element name="clientAttributes"   type="types:NamedString"
minOccurs="0"/>
      <element name="extensions"         type="types:Extension"
minOccurs="0"   maxOccurs="unbounded"/>
    </sequence>
    <attribute name="ccppProfileWarning" type="xsd:string"
use="optional"/>
  </complexType>
  <element name="MimeResponse" type="types:MimeResponse"/>

  <complexType name="MarkupContext">
    <complexContent>
      <extension base="types:MimeResponse">
        <sequence>
          <element name="preferredTitle"       type="xsd:string"
  minOccurs="0"/>
          <element name="validNewModes"       type="xsd:string"
   minOccurs="0" maxOccurs="unbounded"/>
        </sequence>
      </extension>
    </complexContent>
  </complexType>
  <element name="MarkupContext" type="types:MarkupContext"/>
==================================

Regards,
Alexey.


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]