RE: javax.servlet.ServletException: Missing message for key index.title

2002-11-25 Thread Taariq Levack
pls could you tell me what files has to be in which folder.. thanx ravi its not so important where you keep the ApplicationResources.properties file, and afaik its not even important what you name it, as long as its properly defined in your web-inf/struts-config.xml file message-resources

RE: javax.servlet.ServletException: Missing message for key index.title

2002-11-25 Thread Taariq Levack
pls help me in fixing this problem.. i am stuck badly rs logic:notPresent name=org.apache.struts.action.MESSAGE scope=application font color=red ERROR: Application resources not loaded -- check servlet container logs for error messages. /font /logic:notPresent do you have that

RE: Add some value to bean

2002-11-22 Thread Taariq Levack
You might want to set that in your Action via form.setYield(newCalculatedYield) or if your using dyna forms then form.set(yield, newCalculatedYield) Can I use bean:write tag to display this attribute * 100 ? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail:

RE: Hidden and taglib

2002-11-19 Thread Taariq Levack
The parameter command MUST BE in the ActionForm, not in the request. Regards, Miguel urm, is that a best practice tip or hard and fast rule? cos if he chooses to have the Action set the requestAttribute(command) then it doesn't need to be set in the ActionForm, either way the action sets it. But

RE: Creating ActionForm in ActionClass

2002-11-06 Thread Taariq Levack
If am creating an instance of my ActionForm in my ActionClass, what happens if there already exists an instance of the ActionForm I am creating ? marcus isn't your ActionClass passed an instance of the ActionForm in the execute method? -- To unsubscribe, e-mail:

problem using 2 jsp's with same property name + DynaActionForm ?

2002-10-30 Thread Taariq Levack
If 2 of my jsp's have the same property, eg idNumber, and firstJSP forwards to firstAction.do, secondJSP displays this idNumber, but it should NOT come from the request, its meant to get its values from a VO which secondJSP's pre-action has set in its scope. I'm not using jsp:setProperty

displaying result in jsp without set/getAttribute

2002-09-30 Thread Taariq Levack
Hi I've been swimming through the docs but may have overlooked this, please help if you can I want a jsp to display a result after the Action is done , but I don't want to use set/getAttribute(). Is there another solution or is setAttribute the only way to pass the data to the jsp? Thanks in