View previous topic :: View next topic |
Author |
Message |
Vanesa Beginner
Joined: 08 Jun 2006 Posts: 3 Topics: 2 Location: Spain
|
Posted: Thu May 29, 2008 7:36 am Post subject: send messages SMS from a JCL |
|
|
it is possible to send messages SMS from a JCL to a mobile phone? _________________ Thanks |
|
Back to top |
|
|
Nic Clouston Advanced
Joined: 01 Feb 2007 Posts: 1075 Topics: 7 Location: At Home
|
Posted: Thu May 29, 2008 8:39 am Post subject: |
|
|
No - JCL just tells the computer which programs to run and which files are required. There may be a program out there that can do it. _________________ Utility and Program control cards are NOT, repeat NOT, JCL. |
|
Back to top |
|
|
Vanesa Beginner
Joined: 08 Jun 2006 Posts: 3 Topics: 2 Location: Spain
|
Posted: Thu May 29, 2008 9:43 am Post subject: |
|
|
If it has done somebody it, it could say please to me that it programs has used _________________ Thanks |
|
Back to top |
|
|
Cogito-Ergo-Sum Advanced
Joined: 15 Dec 2002 Posts: 637 Topics: 43 Location: Bengaluru, INDIA
|
Posted: Fri May 30, 2008 11:46 am Post subject: |
|
|
umm...generally, mobile service providers have a facility to have a mail id using your number in the format of your_number@your_service_provider. Try sending an email to this id and it will turn up as a SMS on your handheld. _________________ ALL opinions are welcome.
Debugging tip:
When you have eliminated all which is impossible, then whatever remains, however improbable, must be the truth.
-- Sherlock Holmes. |
|
Back to top |
|
|
Vanesa Beginner
Joined: 08 Jun 2006 Posts: 3 Topics: 2 Location: Spain
|
Posted: Mon Jun 02, 2008 1:54 am Post subject: |
|
|
It only needed to know if technically it is possible.
If finally I must program it, I will try what you send to me and I will put in the forum I have done since it.
Thank you very much _________________ Thanks |
|
Back to top |
|
|
Terry_Heinze Supermod
Joined: 31 May 2004 Posts: 391 Topics: 4 Location: Richfield, MN, USA
|
Posted: Mon Jun 02, 2008 9:47 am Post subject: |
|
|
Thanks for the reminder, Cogito. I tested e-mailing a msg to <my-cell-phone-number>@txt.att.net and it works great. Sending a reply back to my e-mail address worked fine, too. _________________ ....Terry |
|
Back to top |
|
|
sanjay gupta Beginner
Joined: 31 May 2011 Posts: 2 Topics: 0 Location: Bangalore
|
Posted: Wed Jun 01, 2011 2:28 am Post subject: |
|
|
Hi can any one tell me how to Send an SMS to a mobile from JCL? _________________ D. Sanjay Gupta |
|
Back to top |
|
|
dbzTHEdinosauer Supermod
Joined: 20 Oct 2006 Posts: 1411 Topics: 26 Location: germany
|
Posted: Wed Jun 01, 2011 5:21 am Post subject: |
|
|
The truthfulness of NIC's answer (second post in this thread)
has not changed in the last few years.
actually, it will never change. _________________ Dick Brenholtz
American living in Varel, Germany |
|
Back to top |
|
|
Franko Beginner
Joined: 04 Feb 2010 Posts: 8 Topics: 0 Location: Kansas City
|
Posted: Wed Jun 01, 2011 1:14 pm Post subject: |
|
|
Look into ZOSMAIL. This is a program that is run under TSO batch (IKJEFT01) and uses ZIP390 services. It will send messages to a cell phone client if you know the cell phone number and the service provider's mobile email address. For example: TMobile uses xxx@TMOMAIL.NET.
Code: |
//DBMAIL EXEC ZOSMAIL
//MAIL DD *
FROM:xxx
TO:9999999999@TMOMAIL.NET
SUBJECT:TESTJOB CPT NORMALLY
/*
|
|
|
Back to top |
|
|
sanjay gupta Beginner
Joined: 31 May 2011 Posts: 2 Topics: 0 Location: Bangalore
|
Posted: Thu Jun 02, 2011 12:43 am Post subject: |
|
|
Hi Franko thanks for your answer. Can you please give the JCL code for the above. And do we need any JOBLIB for the ZOMAIL? _________________ D. Sanjay Gupta |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Thu Jun 02, 2011 8:55 am Post subject: |
|
|
Franko,
Looks Like you are executing a PROC named ZOSMAIL. Check the expanded JCL and I think it is using SMTP which is used to send mails. AFAIK zosmail is not a standard TSO package.
Sanjay,
Search the forums here for SMTP and you will find many examples.
Kolusu |
|
Back to top |
|
|
|
|