Search:

Type: Posts; User: valdez25

Search: Search took 0.07 seconds.

  1. Replies
    7
    Views
    1,836

    Re: Socket connection problem

    //open the connection
    InetAddress hostAddr = InetAddress.getByName(IPADDRESS);
    int hostPort = PORT;
    Socket soc = new Socket(hostAddr,hostPort);
    //Send value to server
    PrintWriter theWriter = new...
  2. Replies
    1
    Views
    1,806

    Re: Implementation using java servlet

    Jersey does not require servlet - runs fine even with the lightweight http server included in JDK or even runs with Grizzly NIO framework (which is similar to Netty - see grizzly.java.net). To see...
  3. Replies
    4
    Views
    1,030

    [SOLVED] Re: Simple question about methods.

    try to put "main()"method..
Results 1 to 3 of 3