Hi, pls what does this error mean? I dont have any testValue element in schema.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soapenv:Header/> <soapenv:Body> <soapenv:Fault> <faultcode>soapenv:Client</faultcode> <faultstring>java.lang.RuntimeException: testValue cannot be null !!</faultstring> <detail/> </soapenv:Fault> </soapenv:Body> </soapenv:Envelope> ------------ I see now maybe where s the problem. I have this type(all elements in it are nillable): <xs:complexType name="tuser"> <xs:sequence> <xs:element name="user_name" type="tns:tuser_name" nillable="true"/> <xs:element name="email" type="tns:temail" nillable="true"/> <xs:element name="telephone" type="tns:ttelephone" nillable="true"/> <xs:element name="fax" type="tns:tfax" nillable="true"/> <xs:element name="lang" type="tns:tlang" nillable="true"/> <xs:element name="ico" type="tns:tico" nillable="true"></xs:element> <xs:element name="address1" type="tns:taddress" nillable="true"/> <xs:element name="address2" type="tns:taddress" nillable="true"/> <xs:element name="address3" type="tns:taddress" nillable="true"/> <xs:element name="address4" type="tns:taddress" nillable="true"/> <xs:element name="dic" type="tns:tdic" nillable="true"></xs:element> <xs:element name="contact_person" type="tns:tcontact_person" nillable="true"></xs:element> <xs:element name="bank_account" type="tns:tbank_account" nillable="true"></xs:element> <xs:element name="proc_info" type="tns:tproc_info" nillable="true"></xs:element> <xs:element name="todo_info" type="tns:ttodo_info" nillable="true"></xs:element> <xs:element name="agreement_no" type="tns:tagreement_no" nillable="true"></xs:element> <xs:element name="sigla" type="tns:tsigla" nillable="true"/> <xs:element name="center_id" type="xs:int" nillable="true"></xs:element> </xs:sequence> </xs:complexType> But when I try to send null value with any element in this type, then there must be problem in axis libraries. I use ADB and in previous version it worked correctly. I m trying last Axis2 release - 1.1. RC2 Thanks for info, Vladi --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
