I am having a problem with a .NET client omitting null arguments from messages sent to my Apache SOAP (2.3.1) service. For example, SOAP service method signature is:
public int myMethod(String arg1, String arg2); My .NET C# client makes an call to the SOAP service like this: int result = myMethod(arg1, null); If arg2 is null, then arg2 is left out altogether from the message sent to my Apache SOAP service. So Apache SOAP generates a FAULT with the error "no signature match", since it received only one argument instead of two. Has anyone encountered this problem and figured out a solution? Thanks, Tim Dierks __________________________________________________ Do you Yahoo!? HotJobs - Search new jobs daily now http://hotjobs.yahoo.com/ -- To unsubscribe, e-mail: <mailto:soap-user-unsubscribe@;xml.apache.org> For additional commands, e-mail: <mailto:soap-user-help@;xml.apache.org>