0
votes
3answers
45 views
Where are the request method constants in the Servlet API?
I want to write
if (POST.equals(req.getMethod()))
instead of
if ("POST".equals(req.getMethod()))
but I cannot find the constant definitions in the Servlet API (only looked in HttpServletRequest, …
2
votes
5answers
110 views
get to the HttpServletRequest (request) object from java code
Hey guys, This is probably a very beginner level question. But I need to get hold of the request object in java code. I can't pass this object down to my code for certain reasons. Is there any way I …
1
vote
1answer
45 views
How do I reliably access the HttpServletRequest in a jspx when it’s behind a proxy?
I've got a jspx that needs to know the current HttpServletRequest's getServerName(). The jspx can fetch this with #{mybean.serverName} from its bean, like this:
public String getServerName() {
…
1
vote
2answers
72 views
HttpServletRequest.getRemoteAddr() returning wrong address
We need to log the client's IP address from a Seam action. Currently, we're using the code:
ExternalContext context = FacesContext.getCurrentInstance().getExternalContext();
HttpServletRequest …
0
votes
1answer
167 views
HTTP Referer header in Struts 2
How can I get the Referer header under Struts2? Right now I'm using an ActionSupport class and I can't seem to get a ServletActionContext object or implement the ServletRequestAware interface? (Where …
0
votes
0answers
58 views
Retrieving JSON Object Literal from HttpServletRequest
I am writing code that needs to extract an object literal posted to a servlet. I have studied the API for the HttpServletRequest object, but it is not clear to me how to get the JSON object out of the …
2
votes
3answers
308 views
How can I manually load a Java session using a JSESSIONID?
I have a servlet which handles a multipart form post. The post is actually being made by a Flash file upload component embedded in the page. In some browsers, the Flash-generated POST doesn't include …
1
vote
2answers
125 views
How to retrieve multiple values from the select field using Commons File Upload?
Update: The problem ended up being the Flash component itself. It wasn't properly compiling the multiple values from the element. I notified the developers and they implemented a workaround. Commons …
0
votes
2answers
217 views
Servlet request.getParameters non english character help!
Heya guys,
I'm in desperate need of help.
I have a Java servlet that is accessed by a HTTP Get URL with eight parameters in it.
The problem is that the parameters are not exclusive to English.
Any …
2
votes
3answers
335 views
Get the Raw Request String from HttpServletRequest.
Is it possible to get the raw HTTP Request from the HttpServletRequest object? I want to see the raw request as a String if at all possible.
I need to get the full text of the request, in this case …
2
votes
3answers
1k views
Java HttpServletRequest get URL in browsers URL bar.
So I'm trying to grab the current URL of the page using Java's request object. I've been using request.getRequestURI() to preform this, but I noticed that when a java class reroutes me to a different …
0
votes
1answer
278 views
How can you get the original REQUEST_URI from within a Struts 2 Action reached via an apache ErrorDocument redirection?
How can you access the REQUEST_URI from within a Struts 2 Action? In perl/php/ruby it is readily available via ENV["REQUEST_URI"] and the like. In java it seems that the …
2
votes
5answers
742 views
Retrieve POST parameters only (Java)
Does anyone know of a way to get only POST parameters from an HttpServletRequest object?
IE, PHP has the $_POST superglobal and Perl's CGI.pm will only retrieve POST parameters if the HTTP method is …
0
votes
1answer
115 views
create pageContext from HttpServletRequest
I know this might sound crazy...but i am integrating with some third party api's and unfortunately they have a utility class which only takes a pageContext object..I did some peeking around and found …
0
votes
1answer
309 views
JSP Page HttpServletRequest getAttribute Typecasting
Hi There,
Any ideas on the correct method of typecasting an Object out of a getAttribute request from a JSP page HttpServletRequest?
I have googled but it seems that the common solution is just …
