Re: Unparseable date: Cannot receive DateTime field contain

2008-05-25 Thread asheikh
Hi, Just in case it benefits for someone else, The cause of this problem was that the machine's Regional and Languages was set to Arabic(Something that I haven't dealt with before). I have changed to English and everything went well. Still wondering why Axis2-1.4 work fine with Arabic settings a

Re: Unparseable date: Cannot receive DateTime field contain

2008-05-19 Thread asheikh
Hey Joern, Thanks for the response. The code below works fine for me as well. I don't understand why the mistake is because of my code. My code runs fine with Axis2-1.4 and Axis2-1.3 in another machine. The NumberFormat Exception is thrown by org.apache.axis2.databinding.utils.ConverterUtil.con

AW: Unparseable date: Cannot receive DateTime field contain

2008-05-18 Thread joern.albinger
H ey , you have got a NumerFormat Exception. That is not a mistake of Axis, it is because of your code: Maybe you try this one: SimpleDateFormat format = new SimpleDateFormat("-MM-dd' 'HH:mm:ss.0"); Date now = new Date(); String dateString = now.toString(); String value = format.form

Unparseable date: Cannot receive DateTime field contain

2008-05-18 Thread asheikh
Hi Running the following code in two machines with latest release axis2-1.3 (axis2-1.4 is fine) generates the exception below , while other machines are fine. org.apache.axis2.databinding.utils.ConverterUtil.*convertToDateTime* Please, can someone put some light on why the following code would g