vlatkozelka
vlatkozelka

Reputation: 999

Remotely controlling a java pplication

I made a monitoring application using JAVA , it takes a udp stream carrying tv channels and displays them in one frame. The application has a lot of buttons and controls , like : disabling channels , mute , choose speaker , snapshots ...

Now the problem is the customer wants to install it on a server but control it from a different computer (security purposes). what i mean is the application has to start and be processed on the server but the display and input has to be on the computer, the GUI needs to be shown on the other computer.

I'm trying to stay away from having to do this manually through socket programming (if possible because) as i said there are so much controls in this .

what would be the best or maybe easiest approach to this ?

thank you

Upvotes: 0

Views: 67

Answers (2)

Greg Watkins
Greg Watkins

Reputation: 5

There are remote support applications such as logmein that allow your customer to see your gui and run it as if they were on the remote machine.

Upvotes: 0

webuster
webuster

Reputation: 2510

Try RMI. You may decouple server-side from the actual controls that you actually use locally, without the need for socket programming. And from a programmatic point of view, you're actually using and calling methods on objects as if they're your own and locally available.

Upvotes: 1

Related Questions