Thanks a lot for all this work Adam ! I'm not sure it's related but today I'm not able to quickly open OFBiz using https://localhost:8443/catalog/control/login?USERNAME=admin&PASSWORD=ofbiz as I was doing before. The same applies on HWM demo server using this link https://demo.hotwaxmedia.com/catalog/control/login/main?USERNAME=admin&PASSWORD=ofbiz which was working before. It stays now on the login screen without any error message.
But if I click on the Catalog tab I open the application getting this URLas result (without having to login more) https://localhost:18443/catalog/control/main?externalLoginKey=EL381737174319 I did not find any recent relevant changes in the Product controller so far, weird... Jacques
Author: doogie Date: Sat Aug 2 22:19:45 2008 New Revision: 682104 URL: http://svn.apache.org/viewvc?rev=682104&view=rev Log: One last update. Modified: ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreenAction.java Modified: ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreenAction.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreenAction.java?rev=682104&r1=682103&r2=682104&view=diff ============================================================================== --- ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreenAction.java (original) +++ ofbiz/trunk/framework/widget/src/org/ofbiz/widget/screen/ModelScreenAction.java Sat Aug 2 22:19:45 2008 @@ -456,7 +456,7 @@ combinedMap.putAll(context); serviceContext = dc.makeValidContext(serviceNameExpanded, ModelService.IN_PARAM, combinedMap); } else if (UtilValidate.isNotEmpty(autoFieldMapString) && !"false".equals(autoFieldMapString)) { - FlexibleMapAccessor fieldFma = new FlexibleMapAccessor(autoFieldMapString); + FlexibleMapAccessor<Object> fieldFma = new FlexibleMapAccessor<Object>(autoFieldMapString); Map<String, Object> autoFieldMap = UtilGenerics.toMap(fieldFma.get(context)); if (autoFieldMap != null) { serviceContext = this.modelScreen.getDispatcher(context).getDispatchContext().makeValidContext(serviceNameExpanded, ModelService.IN_PARAM, autoFieldMap);