Jump to content

Welcome to Geeks to Go - Register now for FREE

Need help with your computer or device? Want to learn new tech skills? You're in the right place!
Geeks to Go is a friendly community of tech experts who can solve any problem you have. Just create a free account and post your question. Our volunteers will reply quickly and guide you through the steps. Don't let tech troubles stop you. Join Geeks to Go now and get the support you need!

How it Works Create Account
Photo

Sending SMS using AJAX through HTTP


  • Please log in to reply

#1
thomasqueen

thomasqueen

    New Member

  • Member
  • Pip
  • 1 posts
Hey guys. For my project, I needed to find a way to send SMS messages from AJAX using HTTP. It turns out, it is easy to send messages from AJAX using HTTP requestes and a software called Ozeki NG SMS Gateway.
First you need to download, install and configure Ozeki NG SMS Gateway software to your computer. You can download the source code from their webpage: http://ozekisms.com/index.php?owpn=246

This code is particularly useful for
• add SMS functionality to a website.
• add SMS functionality to a corporate Intranet.
• create automated SMS notifications.
• increase website security by adding SMS login.

Here is a part of the source code:

smssend.js
...
function GetXmlHttpObject()
{
var xmlHttp = null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp = new XMLHttpRequest();
}
catch (e)
{
// Internet Explorer
try
{
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xmlHttp;
}
...


I hope this will be as useful to you as it is for me! Thomas
  • 0

Advertisements







Similar Topics

0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users

As Featured On:

Microsoft Yahoo BBC MSN PC Magazine Washington Post HP