A Software To Receive SMS Message On Computer With Modem
This project is maintained by GauravSahu
SMS Query Responder is a program that lets you automatically receive and reply to SMS messages on a PC and website by using a 3G/GSM modem or phone attached to a computer.
SMS Query Responder allows you to programmatically receive and reply to incoming SMS messages on your website using any web language, such as JSP,PHP, ASP.NET and so forth.
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%
String smsText = request.getParameter("smst"); //get sms text content
String smsSender = request.getParameter("smsn"); // get sender number
out.print("Hello"); // output string
%>
SMS Query Responder software connects to a GSM or 3G modem plugged in a computer. Each time a new SMS message arrives to that modem, the software forwards that message to your web server via HTTP, so that the message can be handled by your script or web application.
Created By- Gaurav Sahu
Contributors - Akshay Gupta and Shubham Singh.