Re: Struts2 Json Plugin - overwrites parameter values in url string?

2014-11-29 Thread JOSE L MARTINEZ-AVIAL
I think you need to add a getSearchCriteria in ContactSearchJsonAction. 2014-11-29 17:51 GMT-05:00 Burton Rhodes : > Also, here is a partial version of the SearchCriteria.java object... > > package com.afs.service.search; > public class SearchCriteria implements Serializable { > >private int

Re: Struts2 Json Plugin - overwrites parameter values in url string?

2014-11-29 Thread Burton Rhodes
Also, here is a partial version of the SearchCriteria.java object... package com.afs.service.search; public class SearchCriteria implements Serializable { private int userId = -1; private int teamId = -1; private String searchStringContact; private String categories = null; public

Re: Struts2 Json Plugin - overwrites parameter values in url string?

2014-11-29 Thread Burton Rhodes
Apologies for the delay - Thanksgiving got in the way My action is below. Struts and Json plugin version is 2.3.16.3. The SearchCriteria.java object is a standard bean object with getters and setters (no real functionality). My action class is below which is processing the url query: "Conta