Hi,
When I post a data using urlencoded-post method in the submssion tag, the data reaches my webserver correctly. However, the URL of the page shows a query string like this:
http://mydemoapp.bpapps.com/mobile/login?....amp;.lang=en-inI am using struts2 to read the data at the backend and therefore its generating :
WARNING: Error setting expression '.intl' with value '[Ljava.lang.String;@1f2f70a'
ognl.ExpressionSyntaxException: Malformed OGNL expression: .intl [ognl.ParseException: Encountered " "." ". "" at line 1, column 1.
Was expecting one of:
":" ...
"not" ...
"+" ...
"-" ...
"~" ...
"!" ...
"(" ...
"true" ...
"false" ...
"null" ...
"#this" ...
"#root" ...
"#" ...
"[" ...
"{" ...
"@" ...
"new" ...
<IDENT> ...
<DYNAMIC_SUBSCRIPT> ...
"\'" ...
"`" ...
"\"" ...
<INT_LITERAL> ...
<FLT_LITERAL> ...
]
at ognl.Ognl.parseExpression(Ognl.java:112)
at com.opensymphony.xwork2.ognl.OgnlUtil.compile(OgnlUtil.java:214)
at com.opensymphony.xwork2.ognl.OgnlUtil.setValue(OgnlUtil.java:198)
at com.opensymphony.xwork2.ognl.OgnlValueStack.setValue(OgnlValueStack.java:161)
...
...
...
Can you tell me why the URL shows the query string?
Thanks