Hi,

I have a simple test method:

Long foo(Long bar)

Java2WSDL maps the Long to xsd:long and the client stub contains the
method as:

long foo(long bar)


1) Is there a way to preserve the Long on the client side?

2) Is this done because of interop issues with .NET for example?

3) For best interop with .NET, should I change the server side exposed
methods to only use primitive types and not their object counterparts? But
then I won't be able to pass around 'null' unless I encode it as '0' for
example -- ah, the C days are back :)

Thank you.

Tim

Reply via email to