Questions tagged [http-request-parameters]

The parameters that are mapped to the servlet request when they are parsed from the http request.

The parameters that are mapped to the servlet request when they are parsed from the http request. These parameters represent a query string when a method GET is used and a body of the request if a method POST is used.

276 questions
0
votes
0 answers

What is wrong with how I get request parameter with EL

I've created a tiny little test to how I would handle the http request parameters coming from a simple dynamic form in JSP using JSTL and EL, but I'm running into some issues for some reason. It seems to be fairly straight forward, but the end…
Niklas
  • 125
  • 9
0
votes
0 answers

Request Parameters map getting empty in Mozilla

Our web application is using Java spring mvc framework and apache tomcat 6.0.32 and there is a POST request for which request parameter map is getting empty in Mozilla Firefox 23.0.1 while everything working fine in Chrome 28.0. Following is the…
Vardan Gupta
  • 3,505
  • 5
  • 31
  • 40
0
votes
1 answer

Modifying Google Drive File List Request parameters in C++

I find myself writing code in C++ to integrate Google Drive with a desktop app, and I need to modify the q parameter of a File List Request. Is there a way to do this with the Drive API and functions like List(), Fetch(), etc? Or will I have to bite…
CodeRedd
  • 283
  • 1
  • 4
  • 14
0
votes
1 answer

access child action parameter in its view

public class AController : Controller { public ActionResult Index() { return View(); } } and Index view goes like ... @Html.Action("Index", "BController", new { HasEditPermission = true }) ... BControler goes like public class…
techBeginner
  • 3,792
  • 11
  • 43
  • 59
0
votes
2 answers

how to include only part of request params into url?

I'm passing 2 parameters through a h:link like this: In this case both params are shown in the url. How can I…
codyLine
  • 509
  • 2
  • 8
  • 26
0
votes
1 answer

Spring @PathVariable create custom object

I have an entity in my application that have a composed ID. In my controller I get this entity using the @PathVariable in this way: @RequestMapping("/{year}/{code}") public MyCustomObj get(@PathVariable Integer year, @PathVariable Integer code){ …
rascio
  • 8,968
  • 19
  • 68
  • 108
0
votes
1 answer

How use JSF tags (probably inputHidden) to set http request parameter with a fixed name?

I have am using JSF. When I am submitting a form - the data from JSF tags (like h:inputText) are somehow passed in request to the server. I do not know how JSF rewrites it on request parameters or attributes (I not even that familiar with http…
M314
  • 925
  • 3
  • 13
  • 37
0
votes
1 answer

Output webservice request parameters (GET/POST) with Lift

I just want to examine the parameters sent in a REST request. I have seen methods like S.param("paramName"), or S.params("??"), but I just want to see all the parameters. How can I do it? Have checked here:…
User
  • 31,811
  • 40
  • 131
  • 232
0
votes
0 answers

Tomcat7 breaking request parameter behaviour from Tomcat5.5 and Struts1.1?

I have a link which points to my servlet (Struts 1.1 App). http://myserver.com/app/preview.do;jsessionid=1234567;p1=test;filename=/page2.htm All was working fine in Tomcat5.5 and jdk1.6, but now with tomcat7 and jdk7, it does not work anymore.…
0
votes
2 answers

Spring's @RequestMapping internals

I'm building an app with multiple maven artifact. Because of design restrictions, one of the artifacts are meant to be backend in nature with no access to request (hence not allowed to use @RequestMapping). The reality tho is that there are requests…
Michael
  • 2,624
  • 2
  • 19
  • 16
0
votes
0 answers

JSF - Function creating request param String?

Is there a function that creates a request param String using the current request params #{params} or internal FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap()? Example: Website is opened with following url:…
djmj
  • 5,579
  • 5
  • 54
  • 92
-1
votes
1 answer

How to send a Thymeleaf input value as a request parameter to controller in Java Spring?

I am using Thymeleaf forms and traditional Spring rest controllers to make API requests to an external platform. The Thymeleaf form is a simple login form with 2 fields and a submit button. After the user presses submit, the data from the 2 fields…
-1
votes
1 answer

How to avoid parameter tampering and interception in a web application?

We have a HTML page with a form, and assuming that just before submitting the form, the request is intercepted and the values entered by authorized user is tampered by some hacking tool. How can we remediate or prevent such in a web…
-1
votes
1 answer

Make Get requests with params

I want to write in Angular Typescript this request: http://localhost:8080/engine/oauth/authorize?client_id=admin&redirect_uri=http://localhost:9000/callback&response_type=code&scope=read_profile When I open this link into the web browser I get…
Peter Penzov
  • 1,126
  • 134
  • 430
  • 808
1 2 3
18
19