Hi, I'm new to WebServices and I'm using axis and the WSDL2Java tool to generate
java client for
testing. I got this error when I try to pass an bean object that has a field using java.util.Date.
- Could not convert java.util.Date to bean field 'dobDate', type java.util.Calendar
- Exception:
java.lang.IllegalArgumentException: argument type mismatch
The WSDL works fot C# client, but not for the Java client. I tried using GregorianCalendar instead, and the problem in Java client went away, but it become a problem for the C# client because it couldn't get the date.
Can anybody help me on this? Thanks you so much!!
Calvin