SmartGWT 6.1 Version
Hi,
I have a scenario where there are calls originating from Client in multiple places and have written abstract class which catch all the responses coming from server in a single place where the method transformResponse is overriden.
Now i want to extract the defaultParams in transformResponse Method which is set before firing request.
Note: i tried this way
DataSource dataSource = TypeDataSourceBase.get(request.getDataSource());
Map<String, String> hMap=dataSource.getDefaultParams();
In case of multiple request fires from client with same request datasource with different input params, it is giving me only the last call defaultparams for the request(request.getDataSource().
Hi,
I have a scenario where there are calls originating from Client in multiple places and have written abstract class which catch all the responses coming from server in a single place where the method transformResponse is overriden.
Now i want to extract the defaultParams in transformResponse Method which is set before firing request.
Note: i tried this way
DataSource dataSource = TypeDataSourceBase.get(request.getDataSource());
Map<String, String> hMap=dataSource.getDefaultParams();
In case of multiple request fires from client with same request datasource with different input params, it is giving me only the last call defaultparams for the request(request.getDataSource().
Comment