hi, we have a web service written in java. the web service's interface defines a method getFoo(Long l). the ws' implementing method tests the parameter for null. calling the web service from a java axis client works flawlessly, the parameter remains null if the client has set it to null (or hasn't set it at all). but when the call is issued from an axis c client in java we get 0 (the Long wrapper type). how can we work around this issue. we were thinking of modifying the WSDL2Ws tool, so it doesn't add the parameter to the call if it's null. is this the right way?
thanks, leon
