Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
4answers
686 views

How does object reference and cloning works in java

Below is the code ArrayList arList = someMethod();// returning ArrayList with customDO objects Now somewhere in different class I am getting data from this arList CustomDo custDO= ...
2
votes
2answers
844 views

Keeping session alive C#

I'm using HttpWebRequest to log on to a website and get the session cookie. My application scrapes certain pages, and eventually becomes idle, resulting in the session dying. What would be a good way ...
2
votes
7answers
3k views

Check if a server is available

I'm looking for a way to check if a server is still available. We have a offline application that saves data on the server, but if the serverconnection drops (it happens occasionally), we have to save ...
1
vote
2answers
603 views

How to keep service alive?

Any application that has a service going obviousely counts on it to be always running. It's part of the product and if it's a paid app - the user expects it. However, it seems that there is no way ...
0
votes
3answers
233 views

What is the best way of create BroadcastReceiver?

I have spent few days to work on Service + BroadcastReceiver, but still cannot make it perfect. I hope someone can help, thanks! I am writing a App that show user current location on map(The map that ...
0
votes
1answer
292 views

Should I create service for GPS tracking APP?

I am writing a location service App that log where the user has been every minute. Should I create a service for the GPS process? OR just create the LocationManager at the Activity? Which one is ...
0
votes
1answer
508 views

send heartbeart by calling a jsp doesn't keep session alive

I want to keep session alive when I open web page on browser even if I doesn't touch it for a long time, this is how I try to do: on server side (tomcat), session timeout set to 8 mins. main jsp ...
0
votes
1answer
223 views

problem with images in creating client side PDF with image using flex and AlivePDF

I am creating client side PDF with image using flex and AlivePDF for a web based application. Images have been generated on that pdf but it is creating problem for large size images as half of the ...
0
votes
1answer
162 views

How would I check if the client is no longer connected via TCP in Java?

I'm making a server/client test and want to know if the client is disconnected in java via TCP. I'd rather not do a heartbeat but if I have to, I will.