I am consuming a java web service from .Net web application and i get the mentioned exception "java.lang.NullPointerException", the .NET exception type is Sysem.ServiceModel.FaultException. I have not access to the web service code
The web service call is :
var response = tere.agregarGuia( guia );
Relevant wsdl:
<xs:complexType name="agregarGuia">
<xs:sequence>
<xs:element minOccurs="0" name="guia" type="xs:string"/>
<xs:element minOccurs="0" name="autenticacion" type="tns:autenticacion"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="autenticacion">
<xs:sequence>
<xs:element minOccurs="0" name="codAduana" type="xs:string"/>
<xs:element minOccurs="0" name="firmaWSAA" type="xs:string"/>
<xs:element minOccurs="0" name="idUsuario" type="xs:string"/>
<xs:element minOccurs="0" name="ticketWSAA" type="xs:string"/></xs:sequence></xs:complexType>
.....
<operation name="agregarGuia" parameterOrder="agregarGuia">
<input message="tns:serviciotereSoap_agregarGuia"/>
<output message="tns:serviciotereSoap_agregarGuiaResponse"/>
</operation>
What could be the problem? Is there a tool that allows me to get more inside from the web service execution?