Tagged Questions

1
vote
1answer
23 views

Tomcat request.getParameter(“_xmldata”) takes 25second for 30MB data

I have clients that need to post 30MB of xml data. The data is in binary form and is heavily encrypted. The client hit to my servlet running on tomcat, then i get the data via Servlet ...
1
vote
4answers
870 views

Java servlet sendRequest - getParameter encoding Problem

I'm building a web app for my lesson using java servlets. At some point i want to redirect to a jsp page, sending also some info that want to use there (using the GET method). In my servlet i have the ...
1
vote
3answers
355 views

Servlet request getparameter's performance

I noticed that my app is very slow sometimes, so I've done some tests. It's a very simple web app. One servlet gets some parameters than stores them. Everything's fine except one thing. It takes too ...
0
votes
1answer
190 views

getting marathi data from request.getParameter

In my request Queryparameter="आकुर्डी". When I'm trying following String strstring = request.getParameter("Queryparameter"); it gives "à¤à¤à¥à¤°à¥à¤¡à¥" while I want the string "आकुर्डी". How to ...
0
votes
1answer
2k views

getting null on request.getParameter() on submit of form in java code?

IN JAVA CODE IN JSP as below i m getting null value for field"noOfRecords". if (request.getMethod().equalsIgnoreCase("POST")) { try { ...