sms-gateway

Send SMS using triggers and stored procedures from SQL Server 2008

本秂侑毒 提交于 2019-12-06 10:46:43
I written a trigger on smslog table ALTER TRIGGER [dbo].[mytrigger] ON [dbo].[smslog] AFTER INSERT AS Declare @MobileNo int Declare @smstext as varchar(300) Begin set @MobileNo = ( select mobile from inserted) set @smstext = (select smstext from inserted) set @sResponse = 'test' Exec pr_SendSmsSQL @MobileNo, @smstext, @sResponse END Stored procedure is create procedure [dbo].[pr_SendSmsSQL] @MobileNo varchar(12), @smstext as varchar(300), @sResponse varchar(1000) OUT as BEGIN Declare @iReq int,@hr int Declare @sUrl as varchar(500) DECLARE @errorSource VARCHAR(8000) DECLARE @errorDescription

How to set up Kannel without using a 3rd party gateway service

早过忘川 提交于 2019-12-06 06:43:42
问题 I'd like to set up Kannel to send SMS messages without going through a 3rd party gateway like Clickatell or Twilio. In other words, I'd like to connect to the SMPP server for each wireless services (AT&T, Verizon, etc.). How difficult/easy is it to run a Kannel server this way? Each SMSC has to be configured for each mobile network. What is the support like for each network in the US (AT&T, Verizon, T-mobile, Sprint)? Can someone point me to a tutorial/blog for pulling this off (besides the

sending sms(text) from java code to mobile phone in windows

南笙酒味 提交于 2019-12-06 06:29:10
问题 Is it possible to send sms from windows machine to mobile phone. I have searched a lot and got the following code. Sender.java package sms; import java.util.Date; public class Sender implements Runnable { private static final long STANDARD=500; private static final long LONG=2000; private static final long VERYLONG=20000; SerialConnection mySerial =null; static final private char cntrlZ=(char)26; String in, out; Thread aThread=null; private long delay=STANDARD; String recipient=null; String

How to SEND/Retrieve SMS from GOIP

让人想犯罪 __ 提交于 2019-12-06 06:02:16
Is there a way for a PHP or VB.net to retrieve/send sms on GOIP (sms-gateway) without accessing it built in Web Manager?. The said device is using UDP port 44444. This script is only to send SMS via php on a GOIP VOIP GATEWAY <?php $rand = rand(); $url = 'http://goip-ip-adress-here/default/en_US/sms_info.html'; $line = '1'; // sim card to use in my case #1 $telnum = '1230000000'; // phone number to send sms $smscontent = 'this is a test sms'; //your message $username = "admin"; //goip username $password = "1234"; //goip password $fields = array( 'line' => urlencode($line), 'smskey' =>

Send SMS from Web (are there some providers for this)?

痴心易碎 提交于 2019-12-05 13:27:52
I'd like to have something like what the app.net site has. You click a button and get the option to send a link to your phone via SMS (or email). What are some options for implementing the sms side of things, and are there services or open source packages that provide this? Here's a random example from app.net . Click the "Get this App" button to see what I mean. Something like this would even work for me <a href="http://saasSMS.com?url=mycorp.com/test.html">Send link to Phone</a> Where "saasSMS.com" is some service that handles the whole sms side of things. Ideally could either handle that

Receiving SMS and storing it in database using Twilio

北城以北 提交于 2019-12-05 13:09:52
i am using Twilio API to send and receive sms from the customers. Every time i send the sms to my customers, i store the feilds like to , body in to my database. I have implemented the API for send message that works fine and am simply saving the fields in to my database. My Problem When i receive SMS from my customers to my twilio number. i want to get the fields like from number and the body and save to my databse. i looked that the documentation here https://www.twilio.com/docs/api/twiml https://www.twilio.com/blog/2012/04/get-started-with-twilio-sms-receiving-incoming-sms-quickstart.html

SMS gateway for (legally) spoofing SMS messages

自古美人都是妖i 提交于 2019-12-05 12:10:13
I'm looking for an SMS gateway to send text messages over an HTTP interface. However, some SMS gateways do not allow to set the sender ID, and those who allow it either require the user to prove that the sender ID is his own mobile phone number, or they manually check each sender ID to prevent SMS Spoofing . For my application, however, I need to be able to set the sender ID as part of the HTTP request. Depending on the number of users, I might have thousands of different sender IDs, and I cannot authenticate or review them separately. The purpose of my application is completely legal, as is

How do some SMS messages transmit the senders name?

徘徊边缘 提交于 2019-12-05 08:10:16
I have noticed that certain SMS messages that I receive from companies come with a 'sender name'. eg. Just today I received an SMS from a number I have never used before (not im my contacts), however the senders name showed up as 'Adobe'. I get this from other companies too. eg Facebook, Google & Banking. Is it similar to how a email server works? (you tell the server who you 'are' before you send the message) Is this the case with a carrier's cell tower? I guess I'm wondering what the service is called and how it works? (ie. can you send 'header info' with SMS messages or is the cell tower

Can anyone recommend any good UK based SMS gateways for sending and receiving SMS using C#?

徘徊边缘 提交于 2019-12-05 00:59:35
问题 Has anyone used any in the UK, and if so, were they any good? 回答1: Clickatell is a popular SMS gateway. It works in 200+ countries. Their API offers a choice of connection options via: HTTP/S, SMPP, SMTP, FTP, XML, SOAP, COM Object. The HTTP/S method is as simple as this: http://api.clickatell.com/http/sendmsg?to=NUMBER&msg=Message+Body+Here (Clickatell API Guide). The SMTP method consists of sending a plain-text e-mail to: sms@messaging.clickatell.com , with the following body: user: xxxxx

Kannel Sqlbox not working (trying to connect to SQL Server instead of MySQL)?

那年仲夏 提交于 2019-12-04 18:14:45
I have a Kannel up and running on an Ubuntu 16.04 box, with local MySQL DLR storage. I want to add sqlbox to queue the incoming SMS in the same database. When I try to launch the sqlbox sqlbox.conf , here is what I get. 2017-08-03 14:02:21 [55982] [0] INFO: Starting to log to file /var/log/kannel/kannel-sqlbox.log level 0 2017-08-03 14:02:21 [55982] [0] INFO: Added logfile `/var/log/kannel/kannel-sqlbox.log' with level `0'. 2017-08-03 14:02:21 [55982] [0] PANIC: SQLBOX: MSSql: connection settings for id 'sqlbox-db' are not specified! 2017-08-03 14:02:21 [55982] [0] PANIC: sqlbox(gw_backtrace