Secure SSH to SMS

This is a polling service. Iflow scans a remote SSH service for XML data to convert to SMS messages.

Polling

The polling service uses the SSH File Transfer Protocol (SFTP) to access your service. It can look for a specific file name or read all available files depending on your set up.

The files it reads are in XML format. Below is a sample message:

<?xml version="1.0" ?>
<sms>
	<originator>+35387000000</originator>
	<recipient>+35385000000</recipient>
	<date>2013-06-28 11:30:45</date>
	<message><![CDATA[Martin%20Osborne%20will%20
              attend%20wed%20and%20thurs.]]></message>
</sms>
                

Polling Service - Single File Steps

  • Open SSH channel
  • Sign in to Remote Service
  • Change to pre-set folder name
  • Check for existance of pre-set file name
  • If exists read file contents and delete file
  • Parse message and deliver

Polling Service - Entire Folder Steps

  • Open SSH channel
  • Sign in to Remote Service
  • Change to pre-set folder name
  • Check for existance of ANY file
  • For each file found: read file contents and delete file; parse message; deliver
 
© Copyright 2020 Iflow. All Rights Reserved. Terms and Conditions | Cookie Preferences | Privacy Policy