doufenyu7610 2015-02-20 15:16
浏览 163
已采纳

通过持久连接实现与POST(HTTP)的推送技术连接

I am developing a text message type app.

The messages are communicated only in direction ((1)Server -> (n)Client)

  • Server: PHP (LAMP)
  • Clients: Android (Java)

One option is to ask to server every x seconds "new messages?". This option is not worth me because creating a HTTP connection every x seconds for each device is very expensive. For example 10 000 devices creating new connection every 5 seg. This option is like the system is working now.

Option two is that I want to implement, but I don't know how do it in (Java-PHP).

The idea is the following, based on push technology:

Maintain a connection from the client to the server open continuously. That connection will never transport any data.

When the server wants to send a message to a client, force close of continuous connection.

Then the client instantly receives the event that the connection has been closed. In this case the event of closed connection means "new messages", so the client will open POST connection to get data.

How can maintain an open connection between Java and PHP continuously and that the server has the ability to close it instantly?

This is working code for POST connection between java and PHP, to try if from this code is possible open connection indefinitely.

Php:

<?php    
    if (isset($_POST['myId']))
    {       $in = $_POST['myId'];               
            //(...)             
            echo $myResponse;               
    }        
?>

Java:

HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(URL);                      

List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
nameValuePairs.add(new BasicNameValuePair(key,content));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

HttpResponse response = httpclient.execute(httppost);
  • 写回答

1条回答 默认 最新

  • drxkx6149 2015-02-20 15:44
    关注

    WebSocket should be the best solution in your case. You can find many libraries for different languages even for PHP and Java. WebSocket allows you to create persistent bi-directional connection. So you can push a message from a server to the client without any client-side request.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突