黑莓 - 使用EDGE网的HttpConnection

时间:2012-04-23 17:41:48

标签: blackberry httpconnection cellular-network

我想为黑莓应用程序做一个httpconnection。我正在使用像

这样的网址

http://ip:port/prueba.php;deviceside=true

如果我想通过wifi将它用于设备,我添加了interface = wifi。

但我不知道为什么它不通过EDGE连接。还有什么我可以做的吗?我听说你签署了申请,但我不明白。

1 个答案:

答案 0 :(得分:0)

使用:&#34 ;; deviceside = true; ConnectionUID =" + srTCP.getUid()

 private ServiceRecord srTCP;
 private void init() 
    {

        ServiceBook sb = ServiceBook.getSB();
        ServiceRecord[] records = sb.getRecords();

        for (int i = 0; i < records.length; i++)
        {
            ServiceRecord myRecord = records[i];
            String cid, uid;

            if (myRecord.isValid() && !myRecord.isDisabled()) 
            {
                cid = myRecord.getCid().toLowerCase();
                uid = myRecord.getUid().toLowerCase();
                if (cid.indexOf(WPTCP_STR) != -1 && uid.indexOf(WIFI_STR) == -1 && uid.indexOf(MMS_STR) == -1) 
                {
                    String httpProxyAddress = getDataString(myRecord, BYTE_PROXY_ADDRESS);
                    if ((httpProxyAddress == null) || StringUtils.isBlank(httpProxyAddress.trim())) 
                    {
                        srTCP = myRecord;
                    } 
                }
            }
      }
  }