I'll give you some random thoughts :
- I see dateTime being nillable in your WSLoginValue data type. DateTime are
not nillable in .NET, they are value types like int or short. It would be
better if you could mark them not nillable, though I don't think your main
problem comes from here.
- your namespace
http://localhost:9082/axis/services/AuthLogin is strange,
but then again, it is legal...
- your imports are strange : no location whatsoever to find the schemas (my
guess is your problem comes from here), imports are circular
(
http://xml.apache.org/xml-soap imports urn:AuthLogin which imports
http://xml.apache.org/xml-soap...), and
http://xml.apache.org/xml-soap is not
used anyway.
Do you have a java client working with this WSDL ? Does the error come when
importing the wsdl or when calling the service ? I suggest you clean up the
WSDL of all the strange things I told you, and try it again.
Hope this helps
Regards
François