Check account using Java Mail

2002-02-19 Thread srinivasan
Hi list, Is there any way in Java Mail API to find if an account exists in a mail server. For example in [EMAIL PROTECTED]how do I find out if myAccount exists in domain.com before actually sending e-mail to that ID. Thanks, Srini

Re: Check account using Java Mail

2002-02-19 Thread Sabari Arasu (CTC)
I don't think this is possible. Pls correct me if I am wrong. Thanks and Regards, Sabari Arasu AIG - TCS Chennai India -Original Message- From: srinivasan [SMTP:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 3:16 PM To: [EMAIL PROTECTED] Subject: Check account using Java

Re: Getting Blob Data From Daabase and Creating an image in the Jsp Page

2002-02-19 Thread Dmitry Namiot
Check out DB taglib in Coldtags suite http://www.servletsuite.com/jsp.htm there is an example how to do that -- Dear All, I have am image stored in the database as blob. I read the stored blob from the database and get byte array. Now I can create a new image

Re: Check account using Java Mail

2002-02-19 Thread Next Step
Try sending VRFY command, but not all smtp server support it. At 05:04 AM 2/19/2002 -0500, you wrote: I don't think this is possible. Pls correct me if I am wrong. Thanks and Regards, Sabari Arasu AIG - TCS Chennai India

Re: Check account using Java Mail

2002-02-19 Thread Sabari Arasu (CTC)
Will VRFY command return true or false. I don't think so... Thanks and Regards, Sabari Arasu AIG - TCS Chennai India -Original Message- From: Next Step [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, February 19, 2002 3:50 PM To: [EMAIL PROTECTED] Subject: Re: Check account

Re: Check account using Java Mail

2002-02-19 Thread Next Step
No. You have to figure out yourself. VRFY root 250 2.1.5 [EMAIL PROTECTED] VRFY baduser 550 5.1.1 baduser... User unknown quit At 05:46 AM 2/19/2002 -0500, you wrote: Will VRFY command return true or false. I don't think so... Thanks and Regards, Sabari Arasu AIG - TCS Chennai India

Problem with CSV File download !

2002-02-19 Thread It, Cockpit (CAP, Contractor)
Hi Guys, I have a problem, my application should give a template of some format. Which is going to be a CSV file. So I am using response.setContentType(application/csv); response.setHeader(Content-Disposition,attachment; filename=UPLOAD.csv;); When I tried this the download was very fine with

Re: Check account using Java Mail

2002-02-19 Thread Suryanarayana Murthy
where to use this VRFY command . Is this command related to windows? how to test this command. please throw some light if any one knows about this. Thanks Regards, Suryanarayana Murthy A Email: [EMAIL PROTECTED] Ph: 8291680 Ext:1137 / 1136 Dial-Comm: 8* 742-1114/1118

Re: JSP and Servlets Apps in WebLogic Server6.1

2002-02-19 Thread Daniel Jaffa
It is automatic. For servlets all you need to do is to register them in the web.xml file. Jsp files you need to place under the application Daniel Jaffa Stuff i say i know: Java, JSP, JavaBeans, TagLibs, J2EE, EJB Before asking someone, do a search on google: Google will set you free If you

HTTP 400, 401, 403 ??

2002-02-19 Thread sufi malak
Hi, In this code : ... try { URL u = new URL(http://; + hostname + : + stringport); Socket s = new Socket(u.getHost(),port); OutputStream theOutput = s.getOutputStream(); // no autoflushing PrintWriter pw = new PrintWriter(theOutput,false); pw.print(GET

Re: Creating a servlet alias that will cover all files but JSP files.

2002-02-19 Thread Gabriel J Zimmerman
The problem with servlet mappings is that they only map to a servlet. They don't allow you to nullify a mapping for a subgrouping. Thus if I want to map /myalias/ to a servlet MyServlet but I don't want to include jsp files, there is no way to nullify the alias for that

Re: Generation Of Excel File From JSP

2002-02-19 Thread Luis Javier Beltrán
Hi Smita, I had the same requirement, and I found 2 alternatives: 1) You can use XML to create your Excel file, if you are using the last version of Excel (don't remember if Excel 200 supports it too) or 2) You can create your table in HTML and make the browser open it with Excel, as it can

Re: Check account using Java Mail

2002-02-19 Thread Chris Pratt
VRFY is an internal SMTP command. There's no way to directly issue it using JavaMail, since it abstracts away that level of complexity. Suffice to say that there is no sure fire way to automatically verify a user's email address. Any email system that has an administrator with any brains has

Re: Check account using Java Mail

2002-02-19 Thread Eric Fleming
Check out this site, they have some utilities you can use to validate email addresses. http://www.jscape.com/emailinspector/index.html Eric - Original Message - From: Chris Pratt [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 19, 2002 01:43 pm Subject: Re: Check account

How to depoy.

2002-02-19 Thread Sami J. Casab.
Hi: Im using tomcat 3.21 and i have a .war archive with all my clases and i need to deploy it, so where i should put this file and what i have to do? Thanks in advance. === To unsubscribe: mailto [EMAIL PROTECTED] with

Online chat, Feb. 21, on Web Services

2002-02-19 Thread Edward Ort
Got a question about Web services? Want to learn more about the Java Web Services Developer Pack? Then join this chat with Java WSDP architect Eduardo Pelegri-Llopart and implementation lead Craig McClanahan. They'll answer your questions on Thursday, February 21 at 11:00 A.M. PST/7:00 P.M. GMT.

Re: How to depoy.

2002-02-19 Thread Danny Ayers
There is documentation provided with Tomcat, in particular : http://jakarta.apache.org/tomcat/tomcat-3.2-doc/appdev/index.html --- Danny Ayers stuff http://www.isacat.net /stuff -Original Message- From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL

Re: How to depoy.

2002-02-19 Thread Michael Dizon
RTFM On Tuesday, February 19, 2002, at 04:16 PM, Sami J. Casab. wrote: -- Information from the mail header --- Sender: A mailing list about Java Server Pages specification and reference [EMAIL PROTECTED] Poster: Sami J.

Re: How to depoy.

2002-02-19 Thread marc benstein
/$TOMCAT_HOME/webapps/YOUR.war Knowledge is for the world to share. I spent hours reading the Tomcat documentation. I hope no one else has to. - Original Message - From: Sami J. Casab. [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 19, 2002 2:16 PM Subject: How to

Re: How to depoy.

2002-02-19 Thread Sami J. Casab.
Thanks for you help, my servlet is now working under http://www.smartware.com.mx:8080/sami/s3. Now i am trying to configure my apache web server because i dont want to use the 8080 port. I searched in http.config file but im not sure, could you give me a tip? Thanks in advace. -Mensaje

Re: How to depoy.

2002-02-19 Thread m benstein
Good try, but it's not Apache that's serving your Servlet. Tomcat is in charge of that. To change the port that Tomcat is on edit your server.xml file in $TOMCAT_HOME/conf/ and edit Parameter name=port value=new value/ !-- Normal HTTP -- Connector