On Sun, 3 Mar 2002, Bryan P. Glennon wrote: > mapping entries in the struts-config.xml file. I want to do something > like this: > > <forward name="errNoCurrentObject" > path="/error.jsp?type=internal&reason=errNoCurrentObject"/> > > When my app loads, however, I get a load exception: > > org.xml.sax.SAXParseException: Next character must be ";" terminating > reference to entity "reason".
try to use the entity instead of ampersand: <forward name="errNoCurrentObject" path="/error.jsp?type=internal&reason=errNoCurrentObject"/> pavel -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

