3

我一直在使用 OpenNetCF.Telephony(可在此处获得http://tapi.codeplex.com),使用此包装器非常容易使用 TAPI 发送和接收 USSD 消息;直到现在我一直在使用它与许多 GSM 设备,它工作完美无瑕!!!

最近我在摩托罗拉 MC65 和 ES400 上测试了我的程序,都是 3.5G HSDPA 设备,并且能够毫无问题地发送我的 USSD 请求,但响应没有被读取消息功能捕获;奇怪的是,它与我使用过的所有其他 GSM 设备中都可以完美运行的代码相同,因为 USSD 在响应时会显示一个弹出窗口,我知道运营商的服务器响应很快,但我的 LineGetMessage 呼叫命中超时而没有注意到收到响应...

这是我为测试功能而制作的一个小样本的摘录,它可以在任何地方进行测试,因为任何运营商的平台如果不期望发送消息,都会以“未知应用程序”或类似消息进行响应,但即使此响应也不不要被抓住...

        private void btnUSSDSend_Click(object sender, EventArgs e)
    {
        int ret = 0; 
        for (int i = 0; i < m_tapi.NumberOfDevices; i++)
        {

            DeviceCapabilities dc = new DeviceCapabilities(LINE_DEV_CAPS_INITIAL_SIZE); //LINEDEVCAPS
            dc.Store(); 
            int dwVersion = m_tapi.NegotiateVersion(i);
            ret = NativeMethods.lineGetDevCaps(m_tapi.hLineApp, i, dwVersion, 0, dc.Data); //NativeTapi.lineGetDevCaps
            if (ret < 0)
            {
                MessageBox.Show(((ErrorCode)ret).ToString()); //LINEERR
            }

            if ((ErrorCode)ret == ErrorCode.StructureTooSmall)  //LINEERR  STRUCTURETOOSMALL
            {
                dc.Data = new byte[dc.NeededSize]; //dc.dwNeededSize
                ret = NativeMethods.lineGetDevCaps(m_tapi.hLineApp, i, dwVersion, 0, dc.Data); //NativeTapi
            }

            dc.Load();

            DeviceCaps.Add( i, dc);

            AddressStatus ac = new AddressStatus(1024);
            ac.Store();
            ret = NativeMethods.lineGetAddressCaps(m_tapi.hLineApp, i, 0, dwVersion, 0, ac.Data); //NativeTapi
            ac.Load();
            ac = null;

        }


        bool found = false;
        foreach (KeyValuePair<int, DeviceCapabilities> entry in DeviceCaps) //LINEDEVCAPS
        {
            DeviceCapabilities dc = entry.Value;  //LINEDEVCAPS 
            found = true;
            if (dc != null && dc.ProviderName.StartsWith(NativeMethods.CELLTSP_PROVIDERINFO_STRING)) //CellTSP.CELLTSP_PROVIDERINFO_STRING
            {
                m_line = m_tapi.CreateLine(entry.Key,  MediaMode.DataModem  | MediaMode.InteractiveVoice, CallPrivilege.Monitor |CallPrivilege.Owner ); //LINEMEDIAMODE LINECALLPRIVILEGE

                byte[] dialArray; 
                LineMessage msg; //LINEMESSAGE
                int flags = 0;
                byte[] chResponse;
                string Mensaje="";
                string dial = "*888#";
                int continuetonext = 0;
            needtosendanother:
                dialArray= Encoding.Unicode.GetBytes(dial);
                int length = dialArray.Length;
                int result = NativeMethods.lineSendUSSD(m_line.hLine, dialArray, dialArray.Length, 0); 
                AddMessage(dial, 0);


                while ( NativeMethods.lineGetMessage(m_tapi.hLineApp, out msg,10000)==0 ) //NativeTapi
                { 
                    if (msg.MessageID == LineMessages.LINE_DEVSPECIFIC && (int)(msg.Param1) == (int)LineMessages.LINE_USSD) //msg.dwMessageID | LINEMESSAGES | LINEDEVSPECIFIC_CELLTSP
                    {
                        flags = 0;
                        chResponse = new byte[(int)(msg.Param3)]; //msg.dwParam3
                        result = NativeMethods.lineGetUSSD(m_line.hLine, (int)(msg.Param2), chResponse, chResponse.Length, out flags); 
                        Mensaje = Encoding.Unicode.GetString(chResponse, 0, chResponse.Length);
                        AddMessage(Mensaje, 1);
                        break;
                    }
                }
                //in case I have to respond to another message
                if (Mensaje.ToUpper().Contains("ENTER PIN:"))
                {
                    continuetonext = 1;
                    dial = "1234";
                }
                //some more conditions here...
                //
                if (Mensaje.ToUpper().Contains("TRANSFERED"))
                {
                    continuetonext = 0;
                    dial = "TRANSFERED";
                }
                if (Mensaje.ToUpper().Contains("FAILED") || Mensaje.ToUpper().Contains("ERROR"))
                {
                    continuetonext = 0;
                    dial = "ERROR";
                }
                if (continuetonext==1) goto needtosendanother;
            }

        }

        if (!found)
        {
            MessageBox.Show("Error - line not found");
            return;
        }
    }

这是没有得到响应的代码,它每次都会超时:(

while ( NativeMethods.lineGetMessage(m_tapi.hLineApp, out msg,10000)==0 )

我知道我已经初始化了 TAPI,因为我已经发送了参数来注册事件,实际上它设法从发送 USSD 请求中接收确认 Linemessage,该请求由 TAPI 包装器中实例化的另一个线程处理,但实际的事件在这些设备中永远不会产生响应。

为了使 3/3.5G 设备正常工作,是否必须进行更改?我一直在比较 2G 设备所做的一切(与代码),一切似乎都完全一样,只是阅读响应是问题所在,我真的不知道如何让它工作......

在此先感谢您尝试任何其他想法或更改参数...

4

0 回答 0