Solved
Forum Discussion
PaoloT
12 years agoLithium Alumni (Retired)
Hi Henrik,
I think the problem in your example is that you are mixing types (there is a string in the first parameter, and and integer in the second one). Both parameters should be a string. If you need to convert the string to a number, you can do it using freemarker
${http.request.parameters.name.get("foo", "2")?number}
Hope this helps,
- Henrik12 years agoAdvisor
Hi Paolo,
Thank you for the help. It worked!
Henrik