Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
7answers
813 views

How can I write a Java application that can update itself at runtime?

I would like to implement a java application (server application) that can download a new version (.jar file) from a given url, and then update itself at runtime. What is the best way to do this and ...
2
votes
1answer
91 views

Comparable Architectures With OSGi?

I am going to implement a server application that should update client software remotely. Clients mostly use pull mechanism for receiving updated software. As a beginner I am looking for architectures ...
0
votes
0answers
41 views

Developing a Server Application [closed]

I have to develop software that runs on a server, in other words the program will only stop if the server is turned off. So I was wandering if there are any rules and so forth. As in how can I check ...
0
votes
4answers
318 views

C# Server-Client Applications

I want to know how can I write an application in C# that acts as a chat server or any kind of server, maybe a file sharing server. And the second application will act as a client which connects to ...
0
votes
1answer
425 views

ThreadPool and Producer - Consumer pattern design question

I want to implement a Producer - Consumers pattern using a ThreadPool for the Consumers. I will have 1 producer of requests and multiple consumers that will handle the incoming requests. When ...