You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Bozhong Lin (JIRA)" <ji...@apache.org> on 2007/03/07 07:53:24 UTC

[jira] Updated: (CXF-369) xsd:dateTime becomes XMLGregorianCalendarImpl when Date needed

     [ https://issues.apache.org/jira/browse/CXF-369?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bozhong Lin updated CXF-369:
----------------------------

    Component/s: Soap Binding

> xsd:dateTime becomes XMLGregorianCalendarImpl when Date needed
> --------------------------------------------------------------
>
>                 Key: CXF-369
>                 URL: https://issues.apache.org/jira/browse/CXF-369
>             Project: CXF
>          Issue Type: Bug
>          Components: Soap Binding
>         Environment: svn head, jax-ws api, annotations
>            Reporter: Cameron Taggart
>         Assigned To: maomaode
>
> I have a web method:
> public Date echoDate(String sessionID, Date input);
> The soapUI 1.6 client works, but the Axis 1.3 client passes in xsi:type="xsd:dateTime".  The CXF server turns the dateTime into a XMLGregorianCalendarImpl instead of a date when that is set.  AbstractInvoker then fails at this call res = m.invoke(serviceObject, paramArray); with an IllegalArgumentException.
> Here is the full request that does not work:
> <soapenv:Envelope 
> xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
> xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
> <soapenv:Body>
> <echoDate xmlns="urn:TestService/wsdl">
> <sessionID>2CE0B857-43D1-F488-0E0A-F055FDCB8294</sessionID>
> <input xsi:type="xsd:dateTime">2008-01-19T00:29:48.889Z</input>
> </echoDate>
> </soapenv:Body>
> </soapenv:Envelope>
> Failure Response
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
>    <soap:Body>
>       <soap:Fault>
>          <faultcode>soap:Server</faultcode>
>          <faultstring>argument type mismatch</faultstring>
>       </soap:Fault>
>    </soap:Body>
> </soap:Envelope>
> Removing 'xsi:type="xsd:dateTime"' makes it work.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.