Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Take A QuizChallenge yourself and boost your learning! Start the quiz now to earn credits.
Take A QuizUnlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Take A QuizKindly log in to use this feature. We’ll take you to the login page automatically.
LoginGeneral Tech Technology & Software 3 years ago
User submissions are the sole responsibility of contributors, with TuteeHUB disclaiming liability for accuracy, copyrights, or consequences of use; content is for informational purposes only and not professional advice.
No matter what stage you're at in your education or career, TuteeHUB will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Kindly log in to use this feature. We’ll take you to the login page automatically.
LoginReady to take your education and career to the next level? Register today and join our growing community of learners and professionals.
Your experience on this site will be improved by allowing cookies. Read Cookie Policy
Your experience on this site will be improved by allowing cookies. Read Cookie Policy
manpreet
Best Answer
3 years ago
I am developing a text message type app.
The messages are communicated only in direction ((1)Server -> (n)Client)
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:
Java: