For my WebService I need minOccurs as 0 for SOAPResponse i.e ServiceResponse
in the WSDL 

which is currently '1' in my WSDL as below

<xsd:element name="LogonResponse">
- <xsd:complexType>
- <xsd:sequence>
  <xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true"
type="tns:LogonData" /> 
  </xsd:sequence>
  </xsd:complexType>
  </xsd:element>
  </xsd:schema>
  </wsdl:types>

to manipulate this i wrote an aegis config file parallel to my service class
as below

<mapping name="np:LogonService">
    <method name="Logon">
      <return-type minOccurs="0"/>
    </method>
  </mapping>
</mappings> 

but this is not working for me .
Can any help me whether minOccurs works with return-type or not

Thanks in advance
venkat
-- 
View this message in context: 
http://www.nabble.com/Aegis-binding-minOccurs-issue-tf2919063.html#a8157907
Sent from the XFire - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email

Reply via email to