Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Paging in Perl

by kschwab (Vicar)
on Sep 09, 2002 at 18:46 UTC ( [id://196388]=note: print w/replies, xml ) Need Help??


in reply to Paging in Perl

Paging providers typically provide several mechanisms to send pages. Here's my take:

  • SMTP This is the most widely supported, but least well defined. The format of the message is entirely up the provider and how they translate email to a page. Also, unless you do a bit of work, the message could sit in a local or remote mail queue. ( try a combination of Net::DNS::Resolver and Net::SMTP if you want to connect directly to the remote SMTP server).
  • TAP (aka IXO ) This is probably the second most widely supported method. Clunky because you have to do it via a modem, but handy for the same reason. ( if your monitoring box notices that the network is down, the modem could still be accessible for notification). I've found it easiest to just have perl talk to kermit. Google around for a script called "ckepage.ksc".
  • SNPP (simple network paging protocol) Third most widely supported method. Check out Net::SNPP. If your provider supports it, this is probably the most straightforward way to send pages.
  • WCTP: (wireless communication transfer protocol ). This is probably the least widely supported protocol, but is the "latest/greatest" thing. I'm not aware of a perl implementation yet, but there general info here.
Other links that might be helpful:
  • sendpage - a pretty comprehensive paging system that include SNPP and TAP clients, as well as an SNPP server
  • Part of the kermit faq explaining how to send a page from kermit
  • Net::Pager this perl module uses Simplewire's quasi-free paging service, which I don't like. Perhaps you will though.
I've done quite a bit of pager integration with perl, so feel free to /msg me if you need more specific info.

Good luck !

Update:This link has fairly decent information on which paging providers support SNPP, WCTP, etc. Also shows host and port names for the services.

Replies are listed 'Best First'.
Re: Re: Paging in Perl
by Xaositect (Friar) on Sep 09, 2002 at 23:51 UTC
    Don't forget web interfaces, many paging companies let you send pages through a web interface like this one.
    I'd be far more messy than having a nice builtin perl module, but I suspect it wouldn't be that difficult to get the format of the form submission and write a script to send requests to it.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://196388]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (4)
As of 2024-04-16 19:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found