RE: Calendar serialization

2005-02-07 Thread Shahi, Ashutosh
The problem you are facing is because dateTime is always sent in GMT Timezone over the wire Once you receive the dateTime in a java.util.Calendar, do: calendar.setTimeZone(java.util.TimeZone.getDefault()); That should give 12:38 back to u. Ashutosh -Original Message- From: Tomek Minkows

RE: Does Axis support https protocol?

2005-01-21 Thread Shahi, Ashutosh
Check the following link, it provides good intro to securing webservices using Tomcat+Axis http://www-128.ibm.com/developerworks/webservices/library/ws-sec1.html ASHUTOSH SHAHI -Original Message- From: Vivek Singhai [mailto:[EMAIL PROTECTED] Sent: Friday, January 21, 2005 3:26 PM To: [EMA

RE: Axis SOAP over HTTPS

2004-12-21 Thread Shahi, Ashutosh
Title: Message You will need to configure your webserver to enable HTTPS, generate the required certificates and change the port to SSL port while calling the service from client. For TOMCAT + Axis, you can find the following documentation useful: http://www-128.ibm.com/developerworks/we

RE: Attachment

2004-10-29 Thread Shahi, Ashutosh
Guys, You can check this link also. http://www.iseran.com/Steve/papers/fear-of-attachments.pdf Ashutosh -Original Message- From: Sagar Pidaparthi [mailto:[EMAIL PROTECTED] Sent: Saturday, October 30, 2004 2:07 AM To: [EMAIL PROTECTED] Cc: Sagar Pidaparthi Subject: RE: Attachment

RE: adding security to webservices in axis

2004-10-28 Thread Shahi, Ashutosh
http://www-128.ibm.com/developerworks/webservices/library/ws-sec1.html The following article provides good introduction to different options available to implement security in Tomcat + Axis. Regards, Ashutosh -Original Message- From: Marco Mistroni [mailto:[EMAIL PROTECTED] Sent: Thursda

RE: xmlsec.jar

2004-09-23 Thread Shahi, Ashutosh
Go to: http://xml.apache.org/security/dist/java-library/ , unzip the xml-security-bin-1_1_0.zip and you'll find the required jar in lib folder. Ashutosh Shahi -Original Message- From: Din%$h [mailto:[EMAIL PROTECTED] Sent: Thursday, September 23, 2004 1:02 PM To: [EMAIL PROTECTED] Subjec

Help on attachments!!

2004-09-20 Thread Shahi, Ashutosh
Hi all, Some help needed on attachments.  I have an input stream which has a soap message along with attachments i.e., basically a MIME message.  How do i read this input stream into a Message (or SOAPMessage). I have seen many examples, where the attachments were created later on, once

RE: using a generated Stub

2004-09-18 Thread Shahi, Ashutosh
Try using:  DataHandler dataHandler = new DataHandler(dataSource); Instead of DataHandler dataHandler = new DataHandler(dataSource, "image/gif"); It should work.   The problem is you are using the constructor: DataHandler(java.lang.Object obj, java.lang.String mimeType) For datahand

RE: SAAJ Example

2004-09-15 Thread Shahi, Ashutosh
Hi, You can go thru the tutorial provided at: http://java.sun.com/j2ee/1.4/docs/tutorial/doc/SAAJ3.html Regards, Ashutosh Shahi -Original Message- From: Sagar Pidaparthi [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 15, 2004 11:28 PM To: [EMAIL PROTECTED] Subject: RE: SAAJ Exampl