3

我有一个 Elastix 服务器,我的桌面呼叫应用程序和 Zoiper 应用程序将其完美地用于呼叫目的。但是,我自己的使用 Android SIP 的应用程序运行不正常,我无法找到真正的问题。每当我调用配置文件注册时,它都会失败,并且日志中会显示 REGISTRATION NOT RUNNING 的错误消息。

这是我的代码片段:

public void InitializeProfile()
    {
        if (mSipManager == null)
        {
            return;
        }

        if (mSipProfile != null){
            closeLocalProfile();
        }

        SipProfile.Builder builder = null;
        try {
            builder = new SipProfile.Builder(Username, Domain);
        } catch (ParseException e) {
            e.printStackTrace();
        }
        builder.setPassword(Password);
        mSipProfile = builder.build();

        Intent intent = new Intent();
        intent.setAction("android.SipDemo.INCOMING_CALL");
        PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, intent, Intent.FILL_IN_DATA);
        try {
            mSipManager.open(mSipProfile, pendingIntent, null);

        } catch (SipException e) {
            Log.i("open", e.toString());
            e.printStackTrace();
        }




        try {
            mSipManager.setRegistrationListener(mSipProfile.getUriString(), new SipRegistrationListener() {

                public void onRegistering(String localProfileUri) {
                   // updateStatus("Registering with SIP Server...");
                    Log.i("helloworld", "Registering with SIP Server...");

                }


                public void onRegistrationDone(String localProfileUri, long expiryTime) {
                   // updateStatus("Ready");
                    Log.i("helloworld", "Ready");
                }


                public void onRegistrationFailed(String localProfileUri, int errorCode, String errorMessage) {
                   // updateStatus("Registration failed.  Please check settings.");
                    Log.i("helloworld", "Registration failed.  Please check settings."+ errorMessage+ " " + Integer.toString(errorCode));
                }
            });
        } catch (SipException e) {
            e.printStackTrace();
        }

    }
4

0 回答 0