Send SMS – How to interface with RSA Authentication Manager

The secure SysManSMS Server is a perfect fit to safely forward SMS messages from RSA Authentication Manager, without sending secret information out to the Internet. RSA sends url’s which can be directed to your local SysManHTTP client module, which again uses the SysManSMS Server (SMS Gateway) for a direct GSM Network delivery.

Another solution would be to create your own PHP script to do the same. Below you will find a sample code to setup your IIS Server to receive RSA HTTP requests and write message files into SysManSMS Server’s INPUT Folder.

<?php
 

$TEMPPATH   = 'c:\\temp';
$INPUTPATH  = 'c:\\program files (x86)\\SysManSMS\\GSMserver\\INPUT\\';
$RANDOM           = rand(5, 15).".txt";
$DIMS       = chr(161);
$FILETMP    = $TEMPPATH.$RANDOM;
$FILEINPUT  = $INPUTPATH.$RANDOM;
$MSGTYPE    = ""; // * makes it a flash message
$MESSAGE    = strtr($_REQUEST["message"],chr(10),chr(13));
 

$fcontent = $DIMS."SMS".$DIMS."+".$_REQUEST["to"].$MSGTYPE.$DIMS.$MESSAGE.$DIMS."HTTPclient".$DIMS."Fclient".$DIMS."\n";
 

$fp = fopen($FILETMP,'w+b');
fwrite($fp,$fcontent);
fclose($fp);
rename($FILETMP,$FILEINPUT);
echo "success";
?>

Comment on this FAQ

Contact us

Visiting Address :
SysMan AS
Tripod Capital Collective
Vestre Strømkaien 7
5006 Bergen
Norway

Telephone : +47 56 12 31 31
Sales Email : sales@sysman.no
Support Email : support@sysman.no