sms

Receive SMS messages in a web application in the US on a hosted server

南楼画角 提交于 2020-01-20 03:18:32
问题 I'm trying to build a simple web application that will allow people to send SMS messages FROM their mobile phone TO my application. I've seen this question asked before: Receive SMS messages by web application Receiving a SMS message in a .NET application ... but I have a few unique (I think) circumstances. I'm expecting a very small number of messages (<1,000/month) My users are all in the U.S. I don't need to SEND SMS messages - I just want to allow users to be able to send messages TO the

make desktop sms application using blackberry

一曲冷凌霜 提交于 2020-01-17 06:56:12
问题 I have to make a SMS sending application in .NET, which uses the attached Blackberry handset(blackberry tour 9630 to be precise) to send SMS. I have never worked on smartphone application development, so want help in doing this. I searched SO for an answer and found one question, but its in java and i think that code would run on blackberry itself and not on desktop, correct me if i am wrong. So if someone could point me in the right direction I would be very grateful. Thanks in advance to

Failed to send sms through wvdial (No Carrier! Trying again)

戏子无情 提交于 2020-01-16 08:36:09
问题 Problem pi@raspberrypi:/~ $ sudo wvdial --> WvDial: Internet dialer version 1.61 --> Initializing modem. --> Sending: ATZ ATZ OK --> Sending: ATQ0 V1 E1 S0=0 &C1 &D2 ATQ0 V1 E1 S0=0 &C1 &D2 OK --> Modem initialized. --> Sending: ATDT07******** --> Waiting for carrier. ATDT07******** NO CARRIER --> No Carrier! Trying again. --> Sending: ATDT07******** --> Waiting for carrier. ATDT07******** NO CARRIER --> No Carrier! Trying again. --> Sending: ATDT07******** --> Waiting for carrier. ATDT07****

Wait time for response when receiving Twilio SMS messages

岁酱吖の 提交于 2020-01-16 04:44:07
问题 When my app receives a Twilio SMS message, how long does Twilio wait for a response from my app? What happens if that time has been exceeded (ie. does Twilio send back an error code, log an error in your Twilio account, etc)? 回答1: An 11200 error is an indicator of a connection failure between Twilio and your service. When Twilio requests a page from your server, we wait a maximum of 15 seconds for a response. A connection failure will occur if no response is returned in that time. 来源: https:/

SMS application [closed]

佐手、 提交于 2020-01-16 01:13:11
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I wish to develop a sms application in C#.net. So please help me by guiding me how to create such an application from scratch. 回答1: Best thing to do would be get an account on a cheap SMS/Voice provider. I use Twilio for a ton of spare time stuff. Their service works great , and it's really cheap ($1 a month for

How to add a validated number to sinch sandbox

℡╲_俬逩灬. 提交于 2020-01-15 08:04:40
问题 I am currently leveraging Sinch SMS to send SMS notifications based on events for a web application in python using sinchsms. When I send a message I get this exception: HTTP Error 403: Sandobx SMS only allowed to be sent to verified numbers. With this stacktrace: File "/usr/local/lib/python2.7/site-packages/sinchsms.py", line 79, in send_message return self._request(self.SEND_SMS_URL + to_number, values) File "/usr/local/lib/python2.7/site-packages/sinchsms.py", line 40, in _request

AT Command for receiving automatic SMS notification

左心房为你撑大大i 提交于 2020-01-14 13:59:30
问题 I have 2 gprs/gsm modems with me at the moment one of them is huawei and the other is a prolink modem. I have no problem sending or receiving SMSes via AT Commands. However I am trying to receive automatic notification using this command AT+CNMI and I am not able to get it to work but when I try this command the modem replies with ok with no errors. Procedures that I have performed so far Tried numerous combination for the AT+CNMI commands 2,1,0,0,0, 2,2,0,0,0 and etc but to no avail I have

Send SMS leads to Generic Failure

◇◆丶佛笑我妖孽 提交于 2020-01-14 13:14:50
问题 I am sending SMS through my application using a very common way that is explained in pretty much all tutorials. I use sendMultipartTextMessage with "sent Intents" and "delivery Intents", then a Broadcast receiver listen for the results and print things. But, everytime I try to send a SMS, even with something like 10 characters, I always get a "Generic failure". My default SMS app is working perfectly and I can send/receive SMS/MMS without any troubles so it can't be a network issue. I don't

How to send an array from broadcastReceiver class to MainActivity

女生的网名这么多〃 提交于 2020-01-14 04:44:08
问题 I am working in an Android application that looks for pharmacies that have a specific medicine .all that throw SMS . so the app receive a SMS that contains the name of all pharmacies that have the medicine,saved them in an array named OurString but this array is in broadcast receiver class .i have trid to send a string and it worked but when i tried the array didnt worked.so how do I send array to other class to view the pharmacies's names in a listView. This is my BroadcastRecieve class:

how to send arabic sms with at-command in c#

耗尽温柔 提交于 2020-01-13 19:36:10
问题 How can I send Arabic SMS with the at command in C#? When I send Arabic messages it shows incorrect characters. I tried using this code: serialPort1.BaseStream.Flush(); string cb = char.ConvertFromUtf32(26); System.Threading.Thread.Sleep(2000); this.serialPort1.Write("AT+CMGF=1\r"); this.serialPort1.Write("AT+CSCA=servicecenter\r\n");//Ufone Service Center this.serialPort1.Write("AT+CSCS=\"" + "HEX" + "\"\r\n"); this.serialPort1.Write("AT+CSMP=\"" + 1 + "," + 167 + "," + 0 + "," +8+ "\"\r\n")