jboss-tomcat 3.2.2

2003-11-04 Thread tcs 777
hi all, in my struts-forms i've links to style-sheets, images, etc. these links refer to the root, because this is where the corresponding actions are mapped to. in jboss i get the folowing error: ..[Engine] StandardHost[localhost]: MAPPING configuration error for request URI

Re: Struts-config : forward to an action.do = How to retrieve an ActionError from this action.do

2003-10-20 Thread tcs 777
a forward to an action: fwd= new ActionForward(); fwd.setPath(/action.do); store your errors in the session or request: session.setAttribute(org.apache.struts.action.ERROR, errors); or request.setAttribute(org.apache.struts.action.ERROR, errors); From: Florent LOTHON [EMAIL PROTECTED] Reply-To:

Re: outputting html with bean:write

2003-10-15 Thread tcs 777
If writing html with bean:write just make sure you specify the attribute format=false. If this attribute is set to true, the rendered property value will be filtered for characters that are sensitive in HTML, and any such characters will be replaced by their entity equivalents. The default

Fwd: Re: outputting html with bean:write

2003-10-15 Thread tcs 777
I mean the FILTER attribute of course!! bean:write name=hit filter=false property=comment/ From: tcs 777 [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: outputting html with bean:write Date: Wed, 15 Oct 2003 08:23:06 + If writing