I am using C# with .net 4 and am trying to consume a java webservice. My code was autogenerated by adding a .net 2.0 style webservice reference. I believe there is an issue with the types .net is sending to the java webservice, here is the exception I receive when I attempt to connect:
Internal Server Error (deserialization error: deserialization error: unexpected element type: expected={http://schemas.xmlsoap.org/soap/encoding/}long, actual={http://www.w3.org/2001/XMLSchema}long)
Old documentation from the webservice: When serializing objects to SOAP messages, the Microsoft .NET platform maps all primitives to W3C XML schema types. This, in conjunction with the .NET platforms inability to differentiate primitives from primitive wrappers (through auto-boxing) causes an interoperability problem with Sun One web services when using encoded RPC SOAP messages. In the Java programming language primitives and their equivalent object wrappers cannot be auto-boxed thus are differentiated in the language. When the web services are generated and deployed under Sun One, the server side WSDL maps Java primitives to the W3C schema type and maps Java Objects to the SOAP schema type.
Does anyone know how I can tell .net to send a http://schemas.xmlsoap.org/soap/encoding/}long instead of a http://www.w3.org/2001/XMLSchema}long?
Thanks! AFrieze