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.
/actionName/my%252Bparam(% also escaped) – fixitagain Sep 24 '11 at 6:55