SipRegistrationListener callbacks do not start

I am trying to run SIPDemo, a sample application downloaded from Google Andoid, but could not start it.

The problem that I am facing is that after I call SipManager.open, passing it the profile and waiting for the intent, it should start the registration process with the SIP provider, in my case I will use an already registered account to connect. But not one of the callbacks in the SipRegistrationListener starts. Incorrect weather that the application can register or not, the weather can even hit the SIP server or not.

Also note that I pass null as a listner in a call to SipManager.open, but on the next line providing a listener by calling SipManager.setRegistrationListener.

Below is the full FullScreenActivity code, which I changed a bit after loading.

public class CallActivity extends AppCompatActivity { private static final String INTENT_INCOMING_CALL = "android.SipDemo.INCOMING_CALL"; private static final String TAG_CALL_ACTIVITY = "CallActivity"; public String sipAddress = "yyyyyyyyyyy"; public SipManager mSIPManager; public SipProfile mLocalSIPProfile; public SipAudioCall mSIPAudioCall; public IncomingCallReceiver mCallReceiver; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_call); ActionBar actionBar = getSupportActionBar(); if (actionBar != null) { actionBar.hide(); } IntentFilter filter = new IntentFilter(); filter.addAction(INTENT_INCOMING_CALL); mCallReceiver = new IncomingCallReceiver(); this.registerReceiver(mCallReceiver, filter); initSIPManager(); } public void initSIPManager() { if (mSIPManager == null) { mSIPManager = SipManager.newInstance(this); } if (mSIPManager != null) { Toast.makeText(this, "Created SIPManager Instance", Toast.LENGTH_SHORT).show(); initLocalProfile(); } } /** * Logs you into your SIP provider, registering this device as the location to * send SIP calls to for your SIP address. */ public void initLocalProfile() { if (mSIPManager == null) { return; } if (mLocalSIPProfile != null) { closeLocalProfile(); } String username = "xxxxxx"; String password = "xxxxxxxxxx"; String domain = "getonsip.com"; try { SipProfile.Builder builder = new SipProfile.Builder(username, domain); builder.setPassword(password); builder.setAuthUserName("xxxxxxxxxxxx"); builder.setDisplayName("xxxxxxx"); builder.setOutboundProxy("sip.onsip.com"); builder.setPort(5080); mLocalSIPProfile = builder.build(); Intent i = new Intent(); i.setAction(INTENT_INCOMING_CALL); PendingIntent pi = PendingIntent.getBroadcast(this, 0, i, Intent.FILL_IN_DATA); mSIPManager.open(mLocalSIPProfile, pi, null); // This listener must be added AFTER mSIPManager.open is called, // Otherwise the methods aren't guaranteed to fire. mSIPManager.setRegistrationListener(mLocalSIPProfile.getUriString(), new SipRegistrationListener() { public void onRegistering(String localProfileUri) { Toast.makeText(CallActivity.this, "Registering with SIP Server...", Toast.LENGTH_SHORT).show(); } public void onRegistrationDone(String localProfileUri, long expiryTime) { Toast.makeText(CallActivity.this, "Ready", Toast.LENGTH_SHORT).show(); } public void onRegistrationFailed(String localProfileUri, int errorCode, String errorMessage) { Toast.makeText(CallActivity.this, "Registration failed. Please check settings.", Toast.LENGTH_SHORT).show(); } }); } catch (ParseException pe) { Toast.makeText(CallActivity.this, "ParseException=" + pe.getMessage(), Toast.LENGTH_SHORT).show(); } catch (SipException se) { Toast.makeText(CallActivity.this, "SIPException=" + se.getMessage(), Toast.LENGTH_SHORT).show(); } } /** * Closes out your local profile, freeing associated objects into memory * and unregistering your device from the server. */ public void closeLocalProfile() { Toast.makeText(CallActivity.this, "Closing Profile", Toast.LENGTH_SHORT).show(); if (mSIPManager == null) { return; } try { if (mLocalSIPProfile != null) { mSIPManager.close(mLocalSIPProfile.getUriString()); } } catch (Exception ee) { Toast.makeText(CallActivity.this, "Exception=" + ee.getMessage(), Toast.LENGTH_SHORT).show(); Log.d(TAG_CALL_ACTIVITY, "Failed to close local profile.", ee); } } } 
+7
android voip sip
source share

No one has answered this question yet.

See related questions:

1770
Get screen sizes in pixels
3
I have a memory leak using ListActivity in Android
2
setText on a button from another type of Android activity
one
The activity of logging in with volleyball, php, mysql after success, upon successful completion of the work, does not go to another activity
one
Get the number from "Contacts" to "Edit"
one
Android AlarmManager for reading periodic sensors
0
Send SMS to Android
0
Error getting client side GCM token
0
I'm trying to set an alarm at a specific time using the alarm manager, but the alarm is triggered instantly?
-2
how to get data from firebase using listview snippet?

All Articles