


Zur komfortablen Nutzung der ASPSMS XML Schnittstelle
Die ASPSMS_XML VBScript Class richtet sich an Entwickler in einem
Windows Scripting Umfeld, wo die ActiveX-Komponente (aspsms.dll)
nicht installiert werden kann.
Die VBScript Class nutzt im Hintergrund die ASPSMS XML Schnittstelle.
Deshalb müssen die folgenden Objekte auf dem System vorhanden sein:
MSXML2.DOMDocument
MSXML2.XMLHTTP
Die ASPSMS_XML VBScript Class unterscheidet sich, was das Handling
anbelangt, nur minim von der ActiveX-Komponente (aspsms.dll).
ASPSMS_XML VBScipt Class Object Model
<%
'make the class available to your script
'i.E. included into a *.asp script.
%>
<!--#include file="aspsms_xml_vbscript_class.asp"-->
<%
Set SMS = New ASPSMS_XML
SMS.Userkey = "XXXXXXXXXXXX"
SMS.Password = "XXXXXX"
SMS.AddRecipient "+41791234567", "3512"
SMS.Originator = "Me"
SMS.MessageData = "Hello World"
SMS.SendTextMessage
Set SMS = Nothing
%>
Ein umfassendes ASP_XML VBScript Class scripting Beispiel einschliesslich Code der Class:
aspsms_xml_vbscript_class.zip