Hi all, I have built an axis2 service in java and it provides a function of getting a date, as wsdl segment:
<xs:element minOccurs="0" name="date" nillable="true" type="xs:date"/> I can get the response with date, segment: <date>2010-04-24+08:00</date> But the c-stub "failed in building element date". text_value = axiom_element_get_text(current_element, env, current_node); // 2010-04-24+08:00 element = (void*)axutil_date_time_create(env); status = axutil_date_time_deserialize_date_time((axutil_date_time_t*)element, env, text_value); // AXIS2_FAILURE Isn't it a bug? How to deserialize this date time correctly? Regards, Zhigang