Questions tagged [ussd]

Unstructured Supplementary Service Data is a communication protocol used in GSM

351 questions
0
votes
0 answers

Dialing USSD code generates 'IllegalStateException'

I wanna transfer money through SIM card Using USSD code.. In instance, for my SIM card, the USSD will Seem like that '*858*2*phonenumber*3#' This is my android Code.. String ussd = "*858*000*1" + Uri.encode("#"); startActivity(new…
0
votes
0 answers

How do I develop application for USSD mobile codes?

I want to develop application on top of USSD codes. I have a web app that shows the status of a request. Here, i need to create an USSD app that will take application no. from user and then server will show the status of application. Please help.
Deepak Gangore
  • 343
  • 1
  • 13
0
votes
1 answer

how to to take and show USSD response in a Textview

I want to create an application with USSD Code, but I don't know how to take and show the USSD response in a TextView. I've tried this toturial: Using IExtendedNetworkService to get USSD response in Android I made all Classes that topic said like…
0
votes
1 answer

J2ME plataformRequest with USSD sometimes work's

I do an aplication that reports valance I simply call platformRequest("tel:*222#"); Where *222# is the way to get valance in my network Work in Samnsug for the moment But in Some Lg istead of do ussd do a voice call and of course fail I want to…
Rolando Corratge Nieves
  • 1,233
  • 2
  • 10
  • 25
0
votes
1 answer

USSD output with portuguese characters in php

I am creating a USSD application, with Portuguese language,when trying to display menu for example 1.Transferéncia 2.Serviços 3.Transacçõesit 4.Informações displays on the phone 1.Transfer?ncia 2Servi?os *proximo without displaying other menu items.…
0
votes
3 answers

How to fix ussd code error?

My Logcat: 08-23 01:32:12.806 1299-1299/? E/AndroidRuntime﹕ FATAL EXCEPTION: main Process: com.haftasia.easycode, PID: 1299 java.lang.SecurityException: Permission Denial: starting Intent { act=android.intent.action.CALL dat=tel:xxxxxxxx…
Ali Rezaiyan
  • 3,011
  • 3
  • 16
  • 27
0
votes
1 answer

USSD gives Invalid Number

I am trying to write an app in Android Studio using API 22 that will run a USSD code when I tap a button. Here's my code: public class MainActivity extends Activity { protected void onCreate(Bundle icicle) { super.onCreate(icicle); …
0
votes
1 answer

Check balance using USSD Command in C#

I update for this question and know it worked correctly.. I try to check balance in my mavecom modem but I got no response in my textbox. It stays empty. Here my code : private SerialPort _port; private void simpleButton1_Click(object sender,…
aminvincent
  • 553
  • 1
  • 12
  • 43
0
votes
0 answers

Facebook for USSD

I am currently trying to build a USSD service using Facebook API's. However, Facebook has upgraded to v2.0 API's and now it requires Facebook permissions in order to use some features. So firstly, what should i create the type of my new app in…
Iphone User
  • 1,930
  • 2
  • 17
  • 26
0
votes
0 answers

Loading a number with special characters in the dialler programmatically

I read from from this post that Apple does not allow numbers with special characters * and # to be dialed programmatically for security reasons. Can a number with special characters be loaded programmatically (displayed in dialer) so that the user…
NSologistic
  • 745
  • 4
  • 14
0
votes
1 answer

Arduino GSM USSD AT-Command reply is empty

I have this arduino code. GSM shield get connected and the ussd is also being sent but I am not getting any reply (something like 'ok'). The ussd short code is a valid one. What am I missing here? Or is there an error in my code? (Equipement:…
user4700203
0
votes
1 answer

string and braces in spring mvc response

i am implementing a ussd service in spring with the following sample code @RequestMapping(value = "/ussd", method = RequestMethod.GET) public @ResponseBody String processUSSD(UssdRequest ussdrequest) { return "Welcome to our Service.\n1. Test…
user1351077
  • 107
  • 1
  • 4
  • 14
0
votes
1 answer

USSD processing ,which os offers the most flexibility?

I need to implement the whole ussd processing functions,like dialer a ussd code programmatically,creating sessions and show users input based on response,and after all things done,destroying sessions and all. in my initial study,i found its not…
Shofiqul Alam
  • 585
  • 1
  • 7
  • 29
0
votes
4 answers

Android App Development call doesnt call full USSD code

My app currently does not produce the final "#" at the end of AT&T's USSD code for checking data use (Which is supposed to be *3282#) Here is my code: public void callATT(View view){ Intent intent = new Intent(Intent.ACTION_CALL,…
tgs266
  • 188
  • 1
  • 3
  • 13
0
votes
1 answer

Windows Phone 8.1: USSD

Does Windows Phone 8.1 SDK support USSD? If yes, where is the documentation? I can't find anything related or any third-party APIs that Read/Write the USSD in the Windows Phone platform.
Vahid
  • 3,384
  • 2
  • 35
  • 69