RE: email to cell phone

2002-07-18 Thread Jack Li

Thank you Rick, all I need is to send email to cell phones. Many people have
replied very helpfully. The simple way is just sending emails like regular
emails ([EMAIL PROTECTED]).

Thank you and all the people who helped me.

Jack Li

-Original Message-
From: Rick Fincher [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 4:33 PM
To: Tomcat Users List
Subject: Re: email to cell phone


Hi Jack,

Are you tasked with coming up with the whole solution, or just sending mail
to a pre-existing setup for e-mailing cell phones?

The easy part is sending mail.  Is your monitoring stuff running under
Tomcat?

You can send mail directly from your monitoring software if you have access
to that software.

I've seen people use setups where they use a modem to dial the phone then
play a pre-recorded message, too.  That's a little more proactive than
sending mail to the phone because most phones use a short beep (if anything)
when mail arrives, and put a mail waiting icon on the display.

Since Java now has voice synthesis you can create messages to be spoken on
the fly.

A lot depends on what your situation is.  You didn't really give enough
details for anyone to give a good answer.

Rick

- Original Message -

 Thanks for your reply. I don't know much about the wireless stuff. We have
a
 program (in java) that is monitoring our systems. If a problem occurs on
the
 systems, we need to send a notice email to some cell phones. I don't know
 what are required in terms of hardware, software or third party services.

 Jack



--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: email to cell phone

2002-07-17 Thread Turner, John


Write a servlet.

John Turner
[EMAIL PROTECTED]


-Original Message-
From: Jack Li [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 11:31 AM
To: '[EMAIL PROTECTED]'
Subject: email to cell phone


Hi,
How to send the emails to cell phones from Tomcat?
 
Thanks,
Jack Li

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: email to cell phone

2002-07-17 Thread Jack Li

would you tell me more about how to in the servlet?

Thanks

-Original Message-
From: Turner, John [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 1:24 PM
To: 'Tomcat Users List'
Subject: RE: email to cell phone



Write a servlet.

John Turner
[EMAIL PROTECTED]


-Original Message-
From: Jack Li [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 11:31 AM
To: '[EMAIL PROTECTED]'
Subject: email to cell phone


Hi,
How to send the emails to cell phones from Tomcat?
 
Thanks,
Jack Li

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: email to cell phone

2002-07-17 Thread Reynir Hübner

I think you should do some research on the web.
how would you like to achive this tecnically ? how does tomcat come into the whole 
thing ? what are the entry points of your application ?
where does the email originate, what is it that you are trying to achive ? do you want 
to send the email as SMS or differently ? do you want to send the SMS with radio-modem 
? over SMS-gateway at your telco ? how are we going to be able to answer such a 
question.

do research, come back and ask us if you have problems. 

hope it helps
 reynir

 -Original Message-
 From: Jack Li [mailto:[EMAIL PROTECTED]]
 Sent: 17. júlí 2002 17:42
 To: 'Tomcat Users List'
 Subject: RE: email to cell phone
 
 
 would you tell me more about how to in the servlet?
 
 Thanks
 
 -Original Message-
 From: Turner, John [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, July 17, 2002 1:24 PM
 To: 'Tomcat Users List'
 Subject: RE: email to cell phone
 
 
 
 Write a servlet.
 
 John Turner
 [EMAIL PROTECTED]
 
 
 -Original Message-
 From: Jack Li [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, July 17, 2002 11:31 AM
 To: '[EMAIL PROTECTED]'
 Subject: email to cell phone
 
 
 Hi,
 How to send the emails to cell phones from Tomcat?
  
 Thanks,
 Jack Li
 
 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]
 
 

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: email to cell phone

2002-07-17 Thread Peter Choe

use the mail api from sun.

you can get the necessary jar files and documentation from the sun java 
website.

At 01:42 PM 7/17/2002, you wrote:
would you tell me more about how to in the servlet?

Thanks

-Original Message-
From: Turner, John [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 1:24 PM
To: 'Tomcat Users List'
Subject: RE: email to cell phone



Write a servlet.

John Turner
[EMAIL PROTECTED]


-Original Message-
From: Jack Li [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 11:31 AM
To: '[EMAIL PROTECTED]'
Subject: email to cell phone


Hi,
How to send the emails to cell phones from Tomcat?

Thanks,
Jack Li

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Peter Choe


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: email to cell phone

2002-07-17 Thread Will Hartung

From: Jack Li [EMAIL PROTECTED]
Sent: Wednesday, July 17, 2002 8:30 AM
Subject: email to cell phone


 Hi,
 How to send the emails to cell phones from Tomcat?

You'd send e-mail to a cell phone the same way you'd send email to anyone
else. E-mail is E-mail.

The JavaMail API is one of the better ways to send mail.

If you're talking about sending SMS messages, then I can't help you there.
There seems to be several SMS providers, rather than some central overall
protocol that works with all of them. Some of the providers have web forms
that can send messages, so you could use those as a crude web service. Lots
of variables here you'd need to work out.

Regards,

Will Hartung
([EMAIL PROTECTED])




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: email to cell phone

2002-07-17 Thread Turner, John


Please do some more research.  Google is a great resource, as are the
archives of this mailing list.  You can use the JavaMail API to send mail
from a servlet, the fact that it is a cellphone on the other end is
irrelevant...it's still just sending mail.

A search at google on tomcat javamail example will return over 1,000 hits.

John Turner
[EMAIL PROTECTED]

-Original Message-
From: Jack Li [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 1:42 PM
To: 'Tomcat Users List'
Subject: RE: email to cell phone


would you tell me more about how to in the servlet?

Thanks

-Original Message-
From: Turner, John [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 1:24 PM
To: 'Tomcat Users List'
Subject: RE: email to cell phone



Write a servlet.

John Turner
[EMAIL PROTECTED]


-Original Message-
From: Jack Li [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 11:31 AM
To: '[EMAIL PROTECTED]'
Subject: email to cell phone


Hi,
How to send the emails to cell phones from Tomcat?
 
Thanks,
Jack Li

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: email to cell phone

2002-07-17 Thread Bing Zhang


From within the servlet sending out email using, let's say, Javamail
package,  and recipent address is something like:
[EMAIL PROTECTED]  

Bing

-Original Message-
From: Jack Li [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 1:42 PM
To: 'Tomcat Users List'
Subject: RE: email to cell phone


would you tell me more about how to in the servlet?

Thanks

-Original Message-
From: Turner, John [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 1:24 PM
To: 'Tomcat Users List'
Subject: RE: email to cell phone



Write a servlet.

John Turner
[EMAIL PROTECTED]


-Original Message-
From: Jack Li [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 11:31 AM
To: '[EMAIL PROTECTED]'
Subject: email to cell phone


Hi,
How to send the emails to cell phones from Tomcat?
 
Thanks,
Jack Li

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: email to cell phone

2002-07-17 Thread Sundar Chakravarthy

In other words your cell phone service provider
has an email-to-phone gateway already established
for you.

You just send email to your email-id in the gateway.



-Original Message-
From: Bing Zhang [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 2:54 PM
To: 'Tomcat Users List'
Subject: RE: email to cell phone



From within the servlet sending out email using, let's say, Javamail
package,  and recipent address is something like:
[EMAIL PROTECTED]  

Bing

-Original Message-
From: Jack Li [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 1:42 PM
To: 'Tomcat Users List'
Subject: RE: email to cell phone


would you tell me more about how to in the servlet?

Thanks

-Original Message-
From: Turner, John [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 1:24 PM
To: 'Tomcat Users List'
Subject: RE: email to cell phone



Write a servlet.

John Turner
[EMAIL PROTECTED]


-Original Message-
From: Jack Li [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 11:31 AM
To: '[EMAIL PROTECTED]'
Subject: email to cell phone


Hi,
How to send the emails to cell phones from Tomcat?
 
Thanks,
Jack Li

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: email to cell phone

2002-07-17 Thread Rick Fincher

Hi Jack,

Sun has a demo webapp that uses tags to send mail and read it off pop and
IMAP servers.  The following URL is page on Sun's site that explains how it
works.  Down at the bottom near Conclusions is a download link to the
code.

If you have an e-mail address to the phone uer or SMS service just send them
a mail.  The tags make it a no-brainer for any JSP page to send mail.

Rick

http://developer.java.sun.com/developer/technicalArticles/javaserverpages/em
ailapps/
- Original Message -
From: Jack Li [EMAIL PROTECTED]
To: 'Tomcat Users List' [EMAIL PROTECTED]
Sent: Wednesday, July 17, 2002 1:42 PM
Subject: RE: email to cell phone


 would you tell me more about how to in the servlet?

 Thanks

 -Original Message-
 From: Turner, John [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, July 17, 2002 1:24 PM
 To: 'Tomcat Users List'
 Subject: RE: email to cell phone



 Write a servlet.

 John Turner
 [EMAIL PROTECTED]


 -Original Message-
 From: Jack Li [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, July 17, 2002 11:31 AM
 To: '[EMAIL PROTECTED]'
 Subject: email to cell phone


 Hi,
 How to send the emails to cell phones from Tomcat?

 Thanks,
 Jack Li

 --
 To unsubscribe, e-mail:
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]

 --
 To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
mailto:[EMAIL PROTECTED]




--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: email to cell phone

2002-07-17 Thread Jack Li

Thanks for your reply. I don't know much about the wireless stuff. We have a
program (in java) that is monitoring our systems. If a problem occurs on the
systems, we need to send a notice email to some cell phones. I don't know
what are required in terms of hardware, software or third party services.

Jack

-Original Message-
From: Will Hartung [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 2:34 PM
To: Tomcat Users List
Subject: Re: email to cell phone


From: Jack Li [EMAIL PROTECTED]
Sent: Wednesday, July 17, 2002 8:30 AM
Subject: email to cell phone


 Hi,
 How to send the emails to cell phones from Tomcat?

You'd send e-mail to a cell phone the same way you'd send email to anyone
else. E-mail is E-mail.

The JavaMail API is one of the better ways to send mail.

If you're talking about sending SMS messages, then I can't help you there.
There seems to be several SMS providers, rather than some central overall
protocol that works with all of them. Some of the providers have web forms
that can send messages, so you could use those as a crude web service. Lots
of variables here you'd need to work out.

Regards,

Will Hartung
([EMAIL PROTECTED])




--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: email to cell phone

2002-07-17 Thread Turner, John


If the cellphone address looks like [EMAIL PROTECTED], then its just
mail.  If the cellphone address is something else, then it is probably SMS,
which is a different beast.

John Turner
[EMAIL PROTECTED]


-Original Message-
From: Jack Li [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 2:55 PM
To: 'Tomcat Users List'
Subject: RE: email to cell phone


Thanks for your reply. I don't know much about the wireless stuff. We have a
program (in java) that is monitoring our systems. If a problem occurs on the
systems, we need to send a notice email to some cell phones. I don't know
what are required in terms of hardware, software or third party services.

Jack

-Original Message-
From: Will Hartung [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 2:34 PM
To: Tomcat Users List
Subject: Re: email to cell phone


From: Jack Li [EMAIL PROTECTED]
Sent: Wednesday, July 17, 2002 8:30 AM
Subject: email to cell phone


 Hi,
 How to send the emails to cell phones from Tomcat?

You'd send e-mail to a cell phone the same way you'd send email to anyone
else. E-mail is E-mail.

The JavaMail API is one of the better ways to send mail.

If you're talking about sending SMS messages, then I can't help you there.
There seems to be several SMS providers, rather than some central overall
protocol that works with all of them. Some of the providers have web forms
that can send messages, so you could use those as a crude web service. Lots
of variables here you'd need to work out.

Regards,

Will Hartung
([EMAIL PROTECTED])




--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: email to cell phone

2002-07-17 Thread Rick Fincher

Hi Jack,

Are you tasked with coming up with the whole solution, or just sending mail
to a pre-existing setup for e-mailing cell phones?

The easy part is sending mail.  Is your monitoring stuff running under
Tomcat?

You can send mail directly from your monitoring software if you have access
to that software.

I've seen people use setups where they use a modem to dial the phone then
play a pre-recorded message, too.  That's a little more proactive than
sending mail to the phone because most phones use a short beep (if anything)
when mail arrives, and put a mail waiting icon on the display.

Since Java now has voice synthesis you can create messages to be spoken on
the fly.

A lot depends on what your situation is.  You didn't really give enough
details for anyone to give a good answer.

Rick

- Original Message -

 Thanks for your reply. I don't know much about the wireless stuff. We have
a
 program (in java) that is monitoring our systems. If a problem occurs on
the
 systems, we need to send a notice email to some cell phones. I don't know
 what are required in terms of hardware, software or third party services.

 Jack



--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: email to cell phone

2002-07-17 Thread Jack Li

Great help. That's all I need. Thank you very much.

Jack

-Original Message-
From: Bing Zhang [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 2:54 PM
To: 'Tomcat Users List'
Subject: RE: email to cell phone



From within the servlet sending out email using, let's say, Javamail
package,  and recipent address is something like:
[EMAIL PROTECTED]  

Bing

-Original Message-
From: Jack Li [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 1:42 PM
To: 'Tomcat Users List'
Subject: RE: email to cell phone


would you tell me more about how to in the servlet?

Thanks

-Original Message-
From: Turner, John [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 1:24 PM
To: 'Tomcat Users List'
Subject: RE: email to cell phone



Write a servlet.

John Turner
[EMAIL PROTECTED]


-Original Message-
From: Jack Li [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 17, 2002 11:31 AM
To: '[EMAIL PROTECTED]'
Subject: email to cell phone


Hi,
How to send the emails to cell phones from Tomcat?
 
Thanks,
Jack Li

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:
mailto:[EMAIL PROTECTED]
For additional commands, e-mail:
mailto:[EMAIL PROTECTED]

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]