2

我在 sip 开发和尝试使用 pjsip 实现 windows phone 8 客户端方面非常新。

我从 pjsip 构建了示例应用程序,它创建了具有 telnet 连接的 pjsua 应用程序。

现在,我不明白的是,我将如何使用这个库并在没有 telnet 的情况下集成到我的应用程序中,

我只需要放置一个手动拨号盘并从那里拨打电话,即可完成此操作,程序将是什么?

用于 android 或 iphone 的 pjsip 有两个示例应用程序,csipsimple 和 siphon,但用于 windows phone 8 的 pjsip 没有这样的应用程序。

关于前进道路的任何帮助都会非常有帮助。

谢谢

4

2 回答 2

4

既然您提到您已经尝试过 windows phone telnet 应用程序示例,我假设您已经下载了他们的wp8 入门指南中提到的 PJSIP winphone 源代码。如您所述,要创建一个执行拨出和接听来电的简单应用程序,您可以简单地重用这个 winphone 项目。

打开winphone项目并执行:

  1. 创建新的 Windows Phone 项目并将其设置为启动项目(让我们将此项目称为 SIP_UI)。这将用作 UI。您可以创建一个稍后将执行拨出呼叫的“呼叫按钮”。
  2. 遵循此 SIP_UI 的现有 pjsua_wp WMAppManifest.xml 设置。尤其是能力部分。如果您只使用默认设置,您的应用程序将无法运行。
  3. 创建新的 Windows Phone 运行时项目(我们称之为 SIP_WINPRT)。在这个类中创建一个类和一个方法,稍后将执行实际调用。
  4. 按照现有的 pjsua_wp_backend 更改 SIP_WINPRT 的属性设置(右键单击 SIP_WINPRT 项目 -> 属性)。尤其是在 References、Additional include 目录和预处理器定义上进行更改。相应地调整路径。
  5. 在 winphone 示例中搜索 simple_pjsua.c。并尝试在您在 SIP_WINPRT 中创建的类中实现它。我创建的示例:

    #include "pch.h"
    #include "backend.h"
    #include "pjsua.h"
    
    #define SIP_DOMAIN  "dogdomain"
    #define SIP_USER    "dog"
    #define SIP_PASSWD  "dog"
    
    using namespace backend;
    using namespace Platform;
    
    SipletRuntimeComponent::SipletRuntimeComponent()
    {
    }
    
    /* Display error and exit application */
    static void error_exit(const char *title, pj_status_t status)
    {
        //pjsua_perror(THIS_FILE, title, status);
        pjsua_destroy();
        exit(1);
    }
    
    /* Callback called by the library upon receiving incoming call */
    static void on_incoming_call(pjsua_acc_id acc_id, pjsua_call_id call_id,
                     pjsip_rx_data *rdata)
    {
        pjsua_call_info ci;
    
        PJ_UNUSED_ARG(acc_id);
        PJ_UNUSED_ARG(rdata);
    
        pjsua_call_get_info(call_id, &ci);
    
        //PJ_LOG(3,(THIS_FILE, "Incoming call from %.*s!!",
        //       (int)ci.remote_info.slen,
        //       ci.remote_info.ptr));
    
        /* Automatically answer incoming calls with 200/OK */
        pjsua_call_answer(call_id, 200, NULL, NULL);
    }
    
    /* Callback called by the library when call's media state has changed */
    static void on_call_media_state(pjsua_call_id call_id)
    {
        pjsua_call_info ci;
    
        pjsua_call_get_info(call_id, &ci);
    
        if (ci.media_status == PJSUA_CALL_MEDIA_ACTIVE) {
        // When media is active, connect call to sound device.
        pjsua_conf_connect(ci.conf_slot, 0);
        pjsua_conf_connect(0, ci.conf_slot);
        }
    }
    
    /* Callback called by the library when call's state has changed */
    static void on_call_state(pjsua_call_id call_id, pjsip_event *e)
    {
        pjsua_call_info ci;
    
        PJ_UNUSED_ARG(e);
    
        pjsua_call_get_info(call_id, &ci);
        //PJ_LOG(3,(THIS_FILE, "Call %d state=%.*s", call_id,
        //       (int)ci.state_text.slen,
        //       ci.state_text.ptr));
    }
    
    
    int SipletRuntimeComponent::SipCall(int address)
    {
        /* Create pjsua */
        pj_status_t status;
        status = pjsua_create();
        if (status != PJ_SUCCESS){
            //Error in pjsua_create()
            return -1;
        }
    
        /* Validate the URL*/
        char url[50] = "sip:cat:cat@catdomain:5060";
        status = pjsua_verify_url(url);
        if (status != PJ_SUCCESS){
            //Invalid URL given
            return -1;
        }
    
        /* Init pjsua */
        {
            pjsua_config cfg;
            pjsua_logging_config log_cfg;
    
            pjsua_config_default(&cfg);
            cfg.cb.on_incoming_call = &on_incoming_call;
            cfg.cb.on_call_media_state = &on_call_media_state;
            cfg.cb.on_call_state = &on_call_state;
    
            pjsua_logging_config_default(&log_cfg);
            log_cfg.console_level = 4;
    
            status = pjsua_init(&cfg, &log_cfg, NULL);
            if (status != PJ_SUCCESS){
                //Error in pjsua_init()
                pjsua_destroy();
                return -1;
            }
        }
    
        /* Add UDP transport. */
        {
            pjsua_transport_config cfg;
    
            pjsua_transport_config_default(&cfg);
            cfg.port = 5060;
            status = pjsua_transport_create(PJSIP_TRANSPORT_UDP, &cfg, NULL);
            if (status != PJ_SUCCESS){
                //Error creating transport
                pjsua_destroy();
                return -1;
            }
        }
    
        /* Initialization is done, now start pjsua */
        status = pjsua_start();
        if (status != PJ_SUCCESS){
            //Error starting pjsua
            pjsua_destroy();
            return -1;
        }
    
        /* Register to SIP server by creating SIP account. */
        pjsua_acc_id acc_id;
        {
            pjsua_acc_config cfg;
    
            pjsua_acc_config_default(&cfg);
            cfg.id = pj_str("sip:" SIP_USER "@" SIP_DOMAIN);
            cfg.reg_uri = pj_str("sip:" SIP_DOMAIN);
            cfg.cred_count = 1;
            cfg.cred_info[0].realm = pj_str(SIP_DOMAIN);
            cfg.cred_info[0].scheme = pj_str("digest");
            cfg.cred_info[0].username = pj_str(SIP_USER);
            cfg.cred_info[0].data_type = PJSIP_CRED_DATA_PLAIN_PASSWD;
            cfg.cred_info[0].data = pj_str(SIP_PASSWD);
    
            status = pjsua_acc_add(&cfg, PJ_TRUE, &acc_id);
    
            if (status != PJ_SUCCESS){          
                //Error adding account
                pjsua_destroy();
                return -1;
            }
        }
    
        /* make call to the URL. */
        pj_str_t uri = pj_str(url);
        status = pjsua_call_make_call(acc_id, &uri, 0, NULL, NULL, NULL);
        if (status != PJ_SUCCESS){
            //Error making call
            pjsua_destroy();
            return -1;
        }
    
        return address + 1;
    }
    
  6. 在 SIP_UI 项目中添加 SIP_WINPRT 作为参考。

  7. 按下呼叫按钮时呼叫 SIP_WINPRT。
于 2014-07-01T06:49:16.840 回答
0

好吧,您的问题似乎与 PJSip 无关,而是与 UI 开发有关。我建议您创建您的 UI(使用 XAML/C# 或 XAML/C++,不要忘记它必须是 Windows Phone 8.0 Silverlight 项目)。然后开始引用 PJSip 库。

希望能帮助到你!

于 2014-06-20T07:22:35.287 回答