Search:

Type: Posts; User: Voodoo

Search: Search took 0.09 seconds.

  1. Replies
    5
    Views
    2,013

    Re: RMI Interface server

    ...anyway, here is an example. Server on remote host is WhistleBlower and Client is WhistleListener.
    Server on localhost: java WhistleBlower 12345
    Client: java WhistleListener localhost 12345


    ...
  2. Replies
    5
    Views
    2,013

    Re: RMI Interface server

    Hi Souparno,
    Normally a server runs on a defined port, says 12345, and numerous clients can access this sever via THIS port. The number of clients depends only on the restriction of your Operating...
  3. Replies
    5
    Views
    2,013

    Re: RMI Interface server

    ....sorry for misplacing the break & println.



    String anyIP = "123.456.789.012";
    int port = 0;

    while (true) {
    port = Math.abs(ran.nextInt());
    if (port > 1024 && port < 65536){
  4. Replies
    5
    Views
    2,013

    Re: RMI Interface server

    I'm not sure that I understand you completely. A RMI interface with a random port# > 1024 and its status?



    String anyIP = "123.456.789.012";
    int port = 0;

    while (true) {
    port =...
Results 1 to 4 of 4