Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

we are facing following issue. The same code is working in another environment.

Root cause of ServletException.
tag 'select', field 'list', id 'searchRunType', name 
obSearchNotificationSCNBean.searchRunType: The requested list key 
'%{jspParams['RUN_SCENARIO_LIST']}' could not be resolved as a collection/array
/map/enumeration/iterator type. Example: people or people.{name} - [unknown location]

Following is our HTML code

<tr>
   <td><s:select name="obSearchNotificationSCNBean.searchRunScenario" list="%
   {jspParams['RUN_SCENARIO_LIST']}" id="searchRunScenario" 
   cssStyle="width:180px;" headerKey="DEFAULT" headerValue="--SELECT RUN SCENARIO--"
    onchange="checkSearchRunType()"/>
 </td>
</tr>

we are putting value in jspParams below

jspParams.put(RUN_TYPE_LIST, obPriceTypeArray);

obPriceTypeArray is a MAP

share|improve this question
most of the reason has already been described in the exception.S2 select tag take collection as in input and in your case the source is not as per the required type.Please be clear about what env differences – Umesh Awasthi Aug 30 '12 at 4:34
i do not think you can put a array into a map like this – Jaiwo99 Aug 30 '12 at 14:20

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.