sms

How to acess a website using own asp.net page?

允我心安 提交于 2019-12-24 19:15:59
问题 I here want to call another website url, login into it, and use one of its function using my asp.net project. I'm working on a project in asp.net where my web based program will send sms to mobile phones. Since I don't want to subscribe to any gateways or similar, I found this website: http://sms80.com Now what I want to do is, from my asp.net page I need to access this website, login and use its service but all this must be done hidden programatically in my asp.net page. I somehow inspected

only hide notifications for SMS from specific no or stop notification sound(or mute it) for 1-2 seconds?

随声附和 提交于 2019-12-24 19:03:05
问题 My application uses SMSs for data exchange between my android app and a device. The device will have a sim card in it, which will send a lot of regular SMSs to my App(i.e. to my paired sim no). The issue is, a lot no messages are bothering my App users and they are getting irritated. I know, from KITKAT 4.4, I can't delete/write a SMS from provider. But can I just prevent notifications(specially voice), then vibration and then if possible status bar notification. And I don't want to create an

Android Messaging, Email app behavior when starting app from a link

你说的曾经没有我的故事 提交于 2019-12-24 18:51:36
问题 I am working on the capability of starting an app via an SMS link or an email. It is all working fine. Custom links don't parse on Android phones, but that is another story. My http style link works great. But the issue is the behavior of apps like Messaging, Android GMail App, Android Mail app, Android Outlook app, Whatsapp, etc. ( Here is the scenario: Go to app, like Messaging, Gmail, etc. Click on the link to start up my app (app starts up correctly) Hit the Home Button Hit the icon of

Retrieve SMS with User Data Header (UDH) on Android devices

橙三吉。 提交于 2019-12-24 18:21:49
问题 I am developing an Android application that should retrieve SMS with User Data Header (UDH). Messages with UDH are invisible for standard Android SMS messenger. I use "06050415810000" UDH for testing ("06" - header length, "05" - header type, "04" - length of the rest of the header, "1581" - destination port, "0000" - src port). Device with Samsung OS has retrieved message with such header and the message was shown in the Inbox folder (but it was not possible to open the message). Device with

Get current coordinates

杀马特。学长 韩版系。学妹 提交于 2019-12-24 15:54:42
问题 Im writing an application that supposed to send coordinates in an SMS, but I've been struggling a bit with understanding how to get the coordinates. At the moment I'm using this LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE); Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER); longitude = location.getLongitude(); latitude = location.getLatitude(); And then i pass the long and lat into the text, but this only gives me the last know

Silent sms detection IOS

最后都变了- 提交于 2019-12-24 14:40:22
问题 Is it possible to detect a silent SMS in application? I'm working on a project that registers users by SMS verification code (Phone number). The current workflow in application is that the user writes his phone number and requests verification code. The server sends the verification code by SMS to the previously written phone number. Now the part that I want to change is, instead of forcing the user to shut off my application and go to the SMS app to copy the verification code, then going

How can I log all sent SMS along with package name?

不问归期 提交于 2019-12-24 14:40:02
问题 I am trying to develop an app which logs all sent SMS along with UID or package name of the application which triggered that event. I am doing this for a research purpose.Thanks in advance ... I am looking to log the UID or package name of application which send that sms. Sorry for my english if it is disgusting. 回答1: After a series of researches, I found that package name of application which triggered the SMS is explicitly stored in creator field(index 19) of SMS DB. 来源: https:/

Android ContentObserver- determine the SMS status

柔情痞子 提交于 2019-12-24 11:36:08
问题 I've registered a ContentObserver to the URI of Telephony.Sms.CONTENT_URI , in order to be notified every time the user sends or receives a new SMS message. For successfully-sent and received messages, this works fine - but for messages that have failed to send, I noticed an unexpected behavior: The messages seem to be reported as if they were successfully sent, even though they're not - and I couldn't find any indication about the failure. Inside the obeserver's onChange function, I tried to

SMS Logger: method getContentResolver() is undefined for the type

左心房为你撑大大i 提交于 2019-12-24 10:58:28
问题 I'am begginer in android programming and I'am trying to create app that is logging sms's to a file. Iam having a problem with "The method getContentResolver() is undefined for the type SMSObserver" and i dont know why... Here is the code: public class SMSObserver extends ContentObserver { SMSLogger smsLogger; public SMSObserver(SMSLogger smsLogger) { super(new Handler()); this.smsLogger = smsLogger; } @Override public void onChange(boolean selfChange) { super.onChange(selfChange); querySMS();

How do I Send SMS to Active Directory Users

耗尽温柔 提交于 2019-12-24 10:50:02
问题 How do I send an SMS to Active Directory Users. I want to design a small application (in C#) for my telecom operator client that will send various SMS based notifications to their (AD) users by using their SMS gateway. 回答1: I'm assuming you mean that the mobile number is stored in AD & you wish to pull this number out with a query and use the API provided by your SMS gateway to send a message? You may want to look at this code sample. You can query AD with System.DirectoryServices. Finding