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

2004-10-22 Thread Roland Weber
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 Engineer, [EMAIL PROTECTED] direct 720.564.6532

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 Roland Weber
/mail/Multipart.html hope that helps, Roland Gerdes, Tom [EMAIL PROTECTED] 19.10.2004 21:10 Please respond to Commons HttpClient Project To Commons HttpClient Project [EMAIL PROTECTED] cc Subject Is it possible to send and email using HTTPCLIENT? Can I just send a multipart post

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

2004-10-20 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-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-20 Thread Gerdes, Tom
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 configured to your java

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

Is it possible to send and email using HTTPCLIENT?

2004-10-19 Thread Gerdes, Tom
Can I just send a multipart post to an email server with attached files using Httpclient? Would this work for an email? If so, does anyone have an example of doing this? - To unsubscribe, e-mail: [EMAIL PROTECTED] For