CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Hybrid View

  1. #1
    Join Date
    Nov 2010
    Posts
    4

    [RESOLVED] Network programming: control a remote computer

    Hello everyone!

    I'm new to network programming in Java.

    I've read some quick tutorials about this topic.

    I wanna start with a very interesting project.

    One program (let call program A) runs on one computer (let call computer A). One program (let call program B) runs
    on another computer (let call computer B). The computers are connected in LAN network.

    Program A sends a request to computer B. This request is about locking computer B's keyboard (or take screen shot of computer B). After retrieving this request, program B send a feedback to computer A, and
    there will be a window on computer A with a CAPTCHA to ensure that the response is generated by a person. After the person on computer A side enters the captcha, let say the computer B's keyboard will be locked.

    I guess my explanation is clear.

    So please give a quick tutorial or any sugesstion to get me started writting code.

    Any help would be greatly appreciated!

  2. #2
    Join Date
    May 2006
    Location
    UK
    Posts
    4,473

    Re: Network programming: control a remote computer

    Google for a tutorial on RMI and/or Java Sockets
    Posting code? Use code tags like this: [code]...Your code here...[/code]
    Click here for examples of Java Code

  3. #3
    Join Date
    Nov 2010
    Posts
    4

    Re: Network programming: control a remote computer

    Thank you, i found the answer.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured