Questions tagged [uriencoding]
32 questions
0
votes
1 answer
Special Characters in Request Parameter
I am developing services in spring and the services were deployed in JBOSS 7.1.0.
Sample code for request mapping:
@RequestMapping(value=/state, method=RequestMethod.GET)
public ResponseEntity…

Soutrick
- 77
- 1
- 9
0
votes
2 answers
Possible to retrieve actual raw URL for Rails request?
I want to retrieve the actual, encoded URL value for a page I visit in my Rails application.
So, if I visit http://domain.com/dir/test%2Bpath, I should get the value "http://domain.com/dir/test%2Bpath" and NOT "http://domain.com/dir/test+path".
Is…

Chad Johnson
- 21,215
- 34
- 109
- 207