Quicklinks
Simple Network Paging Protocol (SNPP) is a standard for sending one- and two-way wireless messages to pagers. In its simplest form, SNPP provides a simple way to make a link between the Internet and a Telocator Alphanumeric input Protocol (TAP) paging terminal.
The SNPP object features the following:
The Dialup object is part of the ActiveXperts Mobile Messaging Toolkit. Overview of all Mobile Messaging Toolkit objects:
Option Explicit ' Declare objects Dim objSnpp, objMessage ' Create objects Set objSnpp = CreateObject ( "AxMmToolkit.Snpp" ) Set objMessage = CreateObject ( "AxMmToolkit.PagerMessage" ) ' Set Server objSnpp.Server = "snpp.pageallcom.com" objSnpp.ServerPort = 444 objSnpp.ServerTimeout = 2500 objMessage.Recipient = "12345678" objMessage.Data = "Hello World!" ' Send the message WScript.Echo "Sending the message..." objSnpp.Send ( objMessage ) WScript.Echo "Send, result: " & objSnpp.LastError If ( objSnpp.LastError = 0 ) Then WScript.Echo "Last response: " & objSnpp.ProviderResponse End If WScript.Echo "Ready." Wscript.Sleep 3000
Samples are available for: C# .NET, Visual Basic .NET, Visual C/C++, VBA, ASP, ASP .NET, Java, Javascript, PHP, HTML, ColdFusion, Delphi, C++ Builder and more.
On ftp.activexperts-labs.com, you can find many Mobile Messaging Toolkit samples. Samples are also part of the Mobile Messaging Toolkit installation.