We are having an issue when we pass a parameter having "+" character in it, to a webservice (written in groovy), the character is being decoded to a space. Even if we pass "%2B", it is being decoded twice(?) and resulting in to a space. We are using grails 1.3.6

Can some one help me out?

URLMappings file has

"/actionName/${param1}"(controller:'myController', action:'myAction')

When we call

/actionName/my+param 

or

/actionName/my%2Bparam

both result in to

/actionName/my param 

Thanks, Madhu.

link|improve this question
1  
That URLMapping looks off. Are you sure it shouldn't be "/actionName/$param1"(controller:"myController", action:"myAction"). Note the $ to denote that param1 is a variable. Not saying that fixes your issue, but better to be as accurate as possible with your question. – Gregg Sep 21 '11 at 16:29
I am sorry, it is $param1 – Madhu84 Sep 22 '11 at 8:39
How are you doing the actual call? – Jeff Beck Sep 22 '11 at 13:19
did you try /actionName/my%252Bparam (% also escaped) – fixitagain Sep 24 '11 at 6:55
Yes, That resulted in to "my%2Bparam" – Madhu84 Sep 27 '11 at 11:53
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.