Re: Serialization Issue while using tokenInterceptor

2015-05-22 Thread Lukasz Lenart
It's the same issue as WW-4028 which means you did something wrong when you were upgrading to latest Struts version. Can you list all jars? 2015-05-23 7:32 GMT+02:00 Sreekanth S. Nair : > Below is the stacktrace, made log bold where its failing > > 10:59:30,195 INFO [org.apache.struts2.rest.RestA

Re: Serialization Issue while using tokenInterceptor

2015-05-22 Thread Sreekanth S. Nair
Below is the stacktrace, made log bold where its failing 10:59:30,195 INFO [org.apache.struts2.rest.RestActionInvocation] (default task-29) Executed action [//assetcategory/assetCategory-save!save!jsp!200] took 278317 ms (execution: 277604 ms, result: 713 ms) 10:59:30,281 ERROR [io.undertow.reque

Re: Serialization Issue while using tokenInterceptor

2015-05-22 Thread Lukasz Lenart
2015-05-23 7:02 GMT+02:00 Sreekanth S. Nair : > I'm getting Serialization Exception when we use tokenInterceptor, which is > same as https://issues.apache.org/jira/browse/WW-4028 issue. I'm trying > with struts2 2.3.20 and even tried with 2.3.24. It must be something else, though. Can you post st

Serialization Issue while using tokenInterceptor

2015-05-22 Thread Sreekanth S. Nair
I'm getting Serialization Exception when we use tokenInterceptor, which is same as https://issues.apache.org/jira/browse/WW-4028 issue. I'm trying with struts2 2.3.20 and even tried with 2.3.24.

[email protected]

2015-05-22 Thread Christoph Nenning
> > Using S2 2.3.16.3 > > My action wants to take an array of parameters, if they are passed like > arr=1&arr=2&arr=3 then everything works fine. > > But by default JQuery encodes arrays as URL parameters like > arr[]=1&arr[]=2&arr[]=3, > the parameters get named "arr[]" instead of "arr". > > M