Hi, *i am using the following definition in my service.xml*
<operation name="createInitial"> <messageReceiver class="org.apache.axis2.rpc.receivers.RPCMessageReceiver" /> </operation> *pointing to:* public Status createInitial(String wsml) throws AxisFault; *in the WSDL i noticed:* <xs:element name="createInitial"> <xs:complexType> <xs:sequence> <xs:element minOccurs="0" name="wsml" nillable="true" type="xs:string"/> </xs:sequence> </xs:complexType> </xs:element> *so - how can i set minOccurs ="1" form my class or the service.xml ?? It should not be nillable.* Regards, Tobias