Re: Soap Request Date Format

2007-11-08 Thread Paul Fremantle
If you don't like the formatting why don't you replace your Date object with a String in the client and just format the string correctly? Unless I've misunderstood the problem. Paul On Nov 8, 2007 11:53 AM, Nguyen Le <[EMAIL PROTECTED]> wrote: > Hi, > > The issue is that my Soap Message Request

Re: Soap Request Date Format

2007-11-08 Thread Nguyen Le
Hi, The issue is that my Soap Message Request is constructed when invoke the following method _call.invoke(new java.lang.Object[] {requestObj, sessionID}); It appears that this method construct the Soap Request and then sends it to the Web Service Server. So there is no way for me to get a handle

Re: Soap Request Date Format

2007-11-06 Thread Anthony Bull
Why don't you just take the date from the soap message, format it with SimpleDateFormat into the form you want and then use it? You need to keep in mind that having a standard date format in your service means third parties can easily connect to it without having to run date formatting code (e

Soap Request Date Format

2007-11-06 Thread Nguyen Le
Hi, I was wondering if the date format for SOAP request generated by axis are hardcoded. In my SOAP request I have the following format 2007-11-21T18:00: 55.437Z But I need it to be the following 2007-11-21T18:00: I have tried modifying the SimpleDateFormat but to no avail. I have tried to do