RE: Is it possible to send and email using HTTPCLIENT?

2004-10-21 Thread Roland Weber
Please respond to "Commons HttpClient Project" To "'Commons HttpClient Project'" <[EMAIL PROTECTED]> cc Subject RE: Is it possible to send and email using HTTPCLIENT? How about FTP through an HTTP proxy? Thanks, Steve Steve Johnson, Software Engin

RE: Is it possible to send and email using HTTPCLIENT?

2004-10-21 Thread Steve Johnson
HttpClient Project Subject: RE: Is it possible to send and email using HTTPCLIENT? Thanks! -Original Message- From: Roland Weber [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 20, 2004 1:03 AM To: Commons HttpClient Project Subject: Re: Is it possible to send and email using HTTPCLIENT

Re: Is it possible to send and email using HTTPCLIENT?

2004-10-20 Thread Ortwin Glück
Gerdes, Tom wrote: Thanks, for the example! Question though about it... In the main you use the "send" class. Is this supposed to be "SendApp", or am I missing something about the code? Tom, send is a static method of SendApp. For further questions about the Java language, please refer to your

RE: Is it possible to send and email using HTTPCLIENT?

2004-10-20 Thread Gerdes, Tom
1:11 AM To: Commons HttpClient Project Subject: Re: Is it possible to send and email using HTTPCLIENT? HttpClient is specific to Http/hhtps protocols. You can't send messages to email server using Http client. You need to have local SMTP mail server/SMTP mail server provided by your ISP

RE: Is it possible to send and email using HTTPCLIENT?

2004-10-20 Thread Gerdes, Tom
Thanks! -Original Message- From: Roland Weber [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 20, 2004 1:03 AM To: Commons HttpClient Project Subject: Re: Is it possible to send and email using HTTPCLIENT? Hello Tom, no it is not. Protocols for transferring EMail are SMTP or IMAP

Re: Is it possible to send and email using HTTPCLIENT?

2004-10-19 Thread IndianAtTech
HttpClient is specific to Http/hhtps protocols. You can't send messages to email server using Http client. You need to have local SMTP mail server/SMTP mail server provided by your ISP configured to your java application for sending the messages to external server. This code example might help

Re: Is it possible to send and email using HTTPCLIENT?

2004-10-19 Thread Roland Weber
Hello Tom, no it is not. Protocols for transferring EMail are SMTP or IMAP. HttpClient implements HTTP. Browsers do lots more than just HTTP, that's why most of them chose to implement mailing functionality as well. But HttpClient is intentionally focused on HTTP alone, which is tricky enough. T