Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (416)
games submitted by our members
Games in WIP (307)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  newbie Server question  (Read 279 times)
0 Members and 1 Guest are viewing this topic.
Offline ken1992

Junior Newbie





« Posted 2012-11-12 11:47:28 »

Hi,

This post might not belong in this forum, but I posted it because responses in this forum are very quick. Sad
I am so desperate and I need to fix it ASAP.

Thanks in advance Smiley

I am currently writing a server which will respond to three methods GET, HEAD, POST methods.
what I am trying to do is to read all the request headers generated from a httpClient request
(i,e. POST /HTTP1.0, Content-length:111, Host: localhost:4444, and so on)
and put all of them together into a string named as request and then pass the request string to another method to process the request.

My problem is stated below.
when I print out request is always null...
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
   is = incoming.getInputStream();
         os = incoming.getOutputStream();
         in = new Scanner(is);
         out = new DataOutputStream(os);


         String request = "";
         while (in.hasNextLine()){
         String input = in.nextLine();
         request = request + input;
         }
         System.out.println(request);



The following is my full code...

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
26  
27  
28  
29  
30  
31  
32  
33  
34  
35  
36  
37  
38  
39  
40  
41  
42  
43  
44  
45  
46  
47  
48  
49  
50  
51  
52  
53  
54  
55  
56  
57  
58  
59  
60  
61  
62  
63  
64  
65  
66  
67  
68  
69  
70  
71  
72  
73  
74  
 import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.Scanner;

public class HttpServer {
   static int PORT = 4444;

   @SuppressWarnings("resource")
   public static void main(String[] args) {
      try {
         ServerSocket s = new ServerSocket(PORT);
         System.out.println("Server is running!!");
         System.out.println(InetAddress.getLocalHost());
         while (true) {
            Socket incoming = s.accept();
            System.out
                  .println(incoming.getRemoteSocketAddress().toString());
            Threads t = new Threads(incoming);
            t.start();
         }
      } catch (IOException e) {
         e.printStackTrace();
      }
   }
}

class Threads extends Thread {
   private Socket incoming;
   private InputStream is = null;
   private OutputStream os = null;
   private Scanner in = null;
   private DataOutputStream out = null;

   public Threads(Socket i) {
      incoming = i;
   }

   public void run() {
      try {
         is = incoming.getInputStream();
         os = incoming.getOutputStream();
         in = new Scanner(is);
         out = new DataOutputStream(os);


         String request = "";
         while (in.hasNextLine()){
         String input = in.nextLine();
         request = request + input;
         }
         System.out.println(request);

   
         byte[] requestB = request.getBytes();

         RequestHandler rh = new RequestHandler();
         out.write(rh.processRequest(requestB)) ;

         is.close();
         os.close();
         in.close();
         out.close();

      } catch (Exception e) {
         e.printStackTrace();
      }

   }
}
Offline ken1992

Junior Newbie





« Reply #1 - Posted 2012-11-12 12:54:10 »

Hi,

This post might not belong in this forum, but I posted it because responses in this forum are very quick. Sad
I am so desperate and I need to fix it ASAP.

Thanks in advance Smiley

I am currently writing a server which will respond to three methods GET, HEAD, POST methods.
what I am trying to do is to read all the request headers generated from a httpClient request
(i,e. POST /HTTP1.0, Content-length:111, Host: localhost:4444, and so on)
and put all of them together into a string named as request and then pass the request string to another method to process the request.

My problem is stated below.
when I print out request is always null...
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
   is = incoming.getInputStream();
         os = incoming.getOutputStream();
         in = new Scanner(is);
         out = new DataOutputStream(os);


         String request = "";
         while (in.hasNextLine()){
         String input = in.nextLine();
         request = request + input;
         }
         System.out.println(request);



The following is my full code...

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
26  
27  
28  
29  
30  
31  
32  
33  
34  
35  
36  
37  
38  
39  
40  
41  
42  
43  
44  
45  
46  
47  
48  
49  
50  
51  
52  
53  
54  
55  
56  
57  
58  
59  
60  
61  
62  
63  
64  
65  
66  
67  
68  
69  
70  
71  
72  
73  
74  
 import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.Scanner;

public class HttpServer {
   static int PORT = 4444;

   @SuppressWarnings("resource")
   public static void main(String[] args) {
      try {
         ServerSocket s = new ServerSocket(PORT);
         System.out.println("Server is running!!");
         System.out.println(InetAddress.getLocalHost());
         while (true) {
            Socket incoming = s.accept();
            System.out
                  .println(incoming.getRemoteSocketAddress().toString());
            Threads t = new Threads(incoming);
            t.start();
         }
      } catch (IOException e) {
         e.printStackTrace();
      }
   }
}

class Threads extends Thread {
   private Socket incoming;
   private InputStream is = null;
   private OutputStream os = null;
   private Scanner in = null;
   private DataOutputStream out = null;

   public Threads(Socket i) {
      incoming = i;
   }

   public void run() {
      try {
         is = incoming.getInputStream();
         os = incoming.getOutputStream();
         in = new Scanner(is);
         out = new DataOutputStream(os);


         String request = "";
         while (in.hasNextLine()){
         String input = in.nextLine();
         request = request + input;
         }
         System.out.println(request);

   
         byte[] requestB = request.getBytes();

         RequestHandler rh = new RequestHandler();
         out.write(rh.processRequest(requestB)) ;

         is.close();
         os.close();
         in.close();
         out.close();

      } catch (Exception e) {
         e.printStackTrace();
      }

   }
}


SOLVED IT Smiley
Offline masteryoom

JGO Coder


Medals: 5
Projects: 3


If you look closely, you might see it turning...


« Reply #2 - Posted 2012-11-13 06:47:16 »

Next time put your code in pastebinCheesy

Smiley
GENERATION 9003:The first time you see this, copy it into your sig and add 1 to the generation. social experiment
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars and Titan!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
mrbenebob (21 views)
2013-06-19 14:55:23

BrassApparatus (31 views)
2013-06-19 08:52:37

NegativeZero (35 views)
2013-06-19 03:31:52

NegativeZero (36 views)
2013-06-19 03:24:09

Jesse_Attard (41 views)
2013-06-18 22:03:02

HeroesGraveDev (77 views)
2013-06-15 23:35:23

Vermeer (78 views)
2013-06-14 20:08:06

davedes (79 views)
2013-06-14 16:03:55

alaslipknot (71 views)
2013-06-13 07:56:31

Roquen (93 views)
2013-06-12 04:12:32
Smoothing Algorithm Question
by UprightPath
2013-05-28 02:58:26

Smoothing Algorithm Question
by UprightPath
2013-05-28 02:57:33

Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!