WSDL is generating the wrong code in the class files.

Here is the code generated from WSDL for xsd:date,
xsd:dateTime
    
public WaitTimeFormat(java.lang.String value) {
        this.value = new java.util.Calendar(value);
    }

Java Docs says, you cannot instantiate a Calendar
using the New; an instance of the calendar can be
obtained using the getInstance method. If you compile
the code, you will get compilation errors.

Here is one approach to resolve the problem.

For the Date types, uses the DateFormatte, to parse
and from there construct the Calendar object.



______________________________________________________________________ 
Post your ad for FREE! http://personals.yahoo.ca

Reply via email to