Unstructured Supplementary Service Data is a communication protocol used in GSM
Questions tagged [ussd]
351 questions
0
votes
1 answer
Programmatic USSD in Worklight
Recent Worklight version supports USSD communication from client to adapter. It is quite interesting option for occasional client-server communication when missing internet connection. What bothers me however is programmatic support and here comes…

andy
- 757
- 5
- 13
0
votes
1 answer
Fail to display IMEI using code snippet
When I dial *#06# on my phone the IMEI is displayed. Fine.
But when I use this kind of code :
String imei="*#06#";
Intent cintent= new Intent(Intent.ACTION_DIAL, Uri.parse("tel:"+Uri.encode(imei)));
startActivity(cintent);
(or ACTION_CALL instead…

Fred
- 1
0
votes
1 answer
Command AT and CUSD result
I send USSD command with AT.
Sometimes I receive the response CUSD=4 sometimes it works for the same input.
The error always appends at the beginning of a new USSD session (#xxx#).
Do you know what exactly means this response? The description of the…

Julio
- 2,493
- 4
- 33
- 53
0
votes
0 answers
How to get AT Command Response?
I am developing a SIM Toolkit application using C#. I use the following code to get the response. But it shows me unformatted text which is not readable. This USSD code should display "Your Current balance is 100.00".
private void…

Drop Shadow
- 845
- 3
- 12
- 28
0
votes
1 answer
Can a subscriber reply to a USSD Push message sent as a menu?
Is it possible to send a push USSD notification as a menu to a subscriber and have the subscriber respond to the notification in that same session?
E.g. Subscriber gets a push USSD message saying "You have a new voicemail. Send 1 to get it as an…

3ph
- 55
- 1
- 3
- 9
0
votes
1 answer
GSM DATA INTERCHANGE
I was wondering if it is possible to send via GSM protocol and appropriate AT commands, few data through a simple GSM call (witout using data traffic).
For example my system is a PIC + GSM Module and it monitors and processes a string of data.
When…

divivoma
- 13
- 4
0
votes
0 answers
USSD setup error in mvn clean install -Pjboss
I am following http://code.google.com/p/ussdgateway/wiki/DeployUSSDGWFromTrunk link to setup USSD on my pc.
but getting build failure when try in do mvn clean install -Pjboss
plz help.
java.lang.Exception: Creation of AS failed. Other AS with…

Saurabh Jaiswal
- 1
- 1
0
votes
1 answer
Cannot send USSD GSM Modem
I am working with SMS Application using VB.NET and Serial Ports using GSM modem. I checked the following threads on this site but it cannot answer my problem. Here's what I've done
AT+CUSD?
+CUSD: 1
OK
AT+CUSD=?
+CUSD:…

pvzkch
- 341
- 2
- 4
- 18
0
votes
1 answer
How to Communicate with Service
I'm using a USSDInterceptor service to get the USSD responce in my application. Here is the service:
package com.codedemigod.services;
import com.android.internal.telephony.IExtendedNetworkService;
public class CDUSSDService extends…

narges
- 31
- 4
0
votes
1 answer
Windows phone 8 copy ussd code to dialer
Is there a way I can copy USSD code generated from my app and then open the dialler and then programmatically paste the code to allow the user to press "call"
I've tried using the PhoneCallTask class but the phone tells me that it isn't possible to…

Eastman
- 368
- 2
- 8
0
votes
1 answer
can I use USSD messages in the background without the pop-up message showing
I am starting to develop a cross-platform mobile app and I want to use the USSD , I am using JavaScript/HTML5/JQuery and I wonder if I can use the USSD messages contents without the pop-up message , I am reading that the new version of android…

user2339201
- 15
- 1
- 4
0
votes
1 answer
Pings go through but application sporadically loses connectivity.
Question
is there a possibility pings have a 100% success rate but other tcp traffic may fail randomly? If so why and how to resolve the issue?
Background
We are binding to a ussd gateway however we sporadically lose connectivity and are forced to…

sqwale
- 554
- 3
- 24
0
votes
1 answer
Get USSD codes reques text in android
[Edit]
i want to retrieve USSD code result text,how can do it?
for example : after calling *12345*1# my device show a popup message for me, i want to get that text.
can anyone help me?

Hamzeh Shabani
- 5
- 1
- 4
0
votes
1 answer
USSD and balance checker on android 4.2?
I want to develop an balance checker application on android?
Unfortunately, Android Jelly Bean 4.2 abandon USSD support. Do you know any way to support it on android 4.2?

Jack
- 724
- 1
- 8
- 15
0
votes
2 answers
How to retrieve response result in sending USSD commands in c#?
I sent USSD command using this code:
SerialPort port = new SerialPort();
port.BaudRate = 921600;
port.PortName = "COM16";
port.Parity = Parity.None;
port.DataBits = 8;
port.StopBits = StopBits.One;
port.ReadTimeout = 3000;
port.WriteTimeout =…

motevalizadeh
- 5,244
- 14
- 61
- 108