This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I need to poll the web server that launched the java web start. Does anybody can throw some light on how can I do this. Right now I am thinking of: 1) Have a Client thread which polls every specific interval. And Server side open a proxy server listening on a particular socket. More of Socket programming
karthikeyan Chockalingam
Ranch Hand
Joined: Sep 06, 2003
Posts: 259
posted
0
Instead you can open a HttpURLConnection and analyse a meta file which indicates any changes [as below] perodically in a Thread. Or you can invoke a server side component using HTTP Tunnelling.
Originally posted by Mayya Ramdas: I need to poll the web server that launched the java web start. I am having 2 options Using HTTP calls, or seperate socket
ram
Greenhorn
Joined: Mar 06, 2008
Posts: 6
posted
0
Yes I am doing HttpUrlConnection for scheduled polling. Still there are many ways to do that Thanks