Tagged Questions
The getparameter tag has no wiki summary.
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
1answer
58 views
Passing Params to a page in key-value pair in CodeIgniter
I am using CodeIgniter, and I am new to it.
I came to know that I can pass parameters to another page like http://example.com/users/list/param1/param2/param3/.... and so on.
Now on the destination ...
1
vote
4answers
879 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
356 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
111 views
Passing value from zend form to another action
i am using zend framework and i'm still confuse about passing value from zend_form to another action.
let's say we have a guestbook, you fill your $name and $message in it, then after we click submit, ...
0
votes
1answer
280 views
MVC 3: Append get parameters on a ActionLink
I'm using the MVCContrib grid to output some data. When I sort a column, I get a url which may look like this:
/?Column=ColumnName&Direction=Ascending
Lets say I want to add links to control ...
0
votes
2answers
444 views
extjs4 store addes get params in the url
i'm using extjs4 store
In xhtpp calls it shows the http://localhost/home_dir/index.php/questions/content_pie?_dc=1312366604831&hi=&page=1&start=0&limit=25
This is the store code
...
0
votes
4answers
181 views
PHP Multilanguage GET parameters
Im building multilanguage support for PHP page.
Let's say I have a page url:
http://mypage.php?user=eric&city=newyork
wich is the common solution to switch between get parameters lang=en and ...
0
votes
2answers
4k views
symfony 1.4 how to get POST parameters?
I can get a parameter('id' for example) by $request->getParameter('id');
but if I use a form to POST the id, how could I get its value? $request->getParameter('id'); doesn't work.
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
{
...