Re: Where is the documentation for Struts tags ....

2010-05-03 Thread RogerV
Usually the error message you listed means the OGNL expression you provided for some argument did not evaluate correctly, thus some required piece of information is not available. Please post your tag usage again and I'll take a look. It's amazing what a calming effect a weekend and

Parts in the documentation are not displayed correctly

2010-05-03 Thread stlecho
It seems that parts of the Axis2 documentation are not displayed correctly (see underneath screenshot). All I can see is a blue rectangular, but not the content. Could this be solved ? http://old.nabble.com/file/p2840/struts2_doc.png -- View this message in context:

Re: Error in running juit test case for struts2 action class

2010-05-03 Thread rameshbabu
Thanks for ur reply. I have another problem with the StrutsSpringTestCase. This is my code. -- import org.apache.struts2.StrutsSpringTestCase; import ipl.admin.action.RoleMasterNewAction; import ipl.admin.beans.RoleMasterNewBeanRemote;

Re: input fields with dynamic names

2010-05-03 Thread Mitch Claborn
Bump. Any other ideas? mitch Mitch Claborn wrote: That works for setting parameter names, but not so well when the tags in the JSP need to retrieve the value for display in the page, particularly if there is a validation error. If there is a static field named fred and the action has a

Convention plugin - passing parameters

2010-05-03 Thread RogerV
Could somone suggest why this works @Result(name=identify, type=redirectAction, location=connect,params={reference,%{serialNumber}}) and this doesn't @Result(name=identify, type=chain, location=connect,params={reference,%{serialNumber}}) and what I need to do to get the chain to work (I don't

RE: input fields with dynamic names

2010-05-03 Thread Martin Gainty
//The action class contains a (dynamically populated) collection such as persons defined here @Result(name=list, value=listPeople.action, type=ServletRedirectResult.class) public class EditPersonAction extends ActionSupport { ArrayListPerson persons = new ArrayList() snip } //then the jsp

Re: Validate without submit?

2010-05-03 Thread Ozu Natsu
The params interceptor is in the stack, I had included the basicStack -- but also expressly included it as well to see if there was a difference in behavior. In FF I can see the query string of the form elements for the request, so I am sure that they are being passed. The paramter string looks

Re: Validate without submit?

2010-05-03 Thread Ozu Natsu
More info... This is getting more confusing to me by the minute. If I use these interceptors as such in my action: interceptor-ref name=params/ interceptor-ref name=actionMappingParams/ interceptor-ref name=staticParams/ It appears that the parameters are not being parsed correctly. I don't

RE: Validate without submit?

2010-05-03 Thread Martin Gainty
can you supply 1)all jsps 2)struts-default.xml specifically everything between interceptor-stack name=paramsPrepareParamsStack /interceptor-stack and everything between interceptors /interceptors default-interceptor-ref name=?/