You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by iksrazal <ik...@gmail.com> on 2005/12/13 18:37:10 UTC

Re: Serializer/Deserializer for Java.sql.TimeStamp using java/AXIS 1.3

Save yourself lots of hassle and just use dateTime in your wsdl, which in java 
converts to Calendar. It goes like: 

http://e-docs.bea.com/wls/docs90/webserv/data_types.html

Calendar cal_stamp = Calendar.getInstance();
cal_stamp.setTime(rs.getTimestamp("stamp"));

HTH, 
iksrazal

Em Terça 13 Dezembro 2005 16:14, o Developer Developer escreveu:
> Hello all,
>
> Does anybody know if AXIS provides any Serilizer/Deserializer for
> java.sql.timeStamp type attributes ?
>
> Thanks !