Reputation: 1279
So I asked this question: 404 Not Found Error on GET/POST Request from Client to Java Servlet
And I figured it out, however, the output I am getting on the client side is a bunch of gibberish. But when I look closer, the gibberish resembles my java servlet file, so I'm getting something right; it's just formatted weird.
Anyone have any clue as to why this is happening? Am I missing something in my code or could it be something to do with the server I am utilizing?
The output should only have the following text:
some text boiii
Yet this is what I see:
����1J ( )*+, -./0*12*34 56 5789:()VCodeLineNumberTableLocalVariableTablethisLMyTestServlet;doPostR(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)Vrequest'Ljavax/servlet/http/HttpServletRequest;response(Ljavax/servlet/http/HttpServletResponse;Exceptions;<doGettextLjava/lang/String;pwLjava/io/PrintWriter; SourceFileMyTestServlet.java!=>?$MyTestServlet doGet function Invoked@ABsome text boiii text/htmlCBUTF-8DBEFGHBIjava/lang/Exception MyTestServletjavax/servlet/http/HttpServletjavax/servlet/ServletExceptionjava/io/IOException&javax/servlet/http/HttpServletResponsegetOutputStream%()Ljavax/servlet/ServletOutputStream;!javax/servlet/ServletOutputStreamprintln(Ljava/lang/String;)VsetContentTypesetCharacterEncodinggetWriter()Ljava/io/PrintWriter;java/io/PrintWriterwriteclose!/��I+,��#$ !�6,��N,�, � ,�:-�� �N�14 *+,-.&/,01442564#"#&$%666&'
PS: All the source code/details is in the other question. Thanks!
Upvotes: 0
Views: 209
Reputation: 114
change
ServletTest /ServletTest
build your project again.
find the webapps folder under c:\tomcat\
copy ServletTest4 folder from ..\target\ and paste it into the webapps\
go bin\ under c:\tomcat
start tomcat by click startup.bat
Upvotes: 1