Computing Staff
  • 3

How To Access Another Computer By Using Java

  • 3

if there are many pc’s and if i enter a address of a
desired pc then it should get connected to the
desired pc only wirelessly. how this can happen by using java.
Is there any package’s available.
i m a begineer to java.

Share

3 Answers

  1. Hi,

    You might consider configuring your database server to allow remote connections. On some hosts, this feature is disabled by default as a security measure.

    • 0
  2. As far as I know, there’s no java application for doing this. Internally within a LAN it’s easiest just to use Window’s builtin “Remote Desktop Connection” (RDC).
    If you’re trying to connect remotely that opens up a whole other can of worms.

    • 0
  3. It looks like you are trying to ‘use/consume’ the web application.

    All you need is a ‘static ip address’ for the web application is running. Let us consider the static and public ip is: 166.20.20.123

    You can access your application from other system using.

    http://166.20.20.123:8080/MyProject.

    However, to get this static ip, you have to request your network provider (ACT/Airtel..). If you have multiple devices connected to the router, then ‘port-forwarding’ is required.

    At this moment, connect your system directly to the network cable(don’t use router or LAN) and check your ip address ( by googling my ip address) and use the same in above format from remote location.

    • 0