Maybe not. I've logged a bug (#12600) against Struts 1.1 that deals with the inflexibility of the <html:form> tag, and it may be the same basic problem.
FormTag.java uses a method "getMappingURL" or something like that that always prepends your action with the context path (incl. module path for sub-apps). Therefore, you can't use references relative to your current location. I ran into the problem with a multi-tier architecture that uses virtual hosts to hide the context from the browser, but I can imagine you might have similar issues with frames if for some reason you need to use relative references... -JT -----Original Message----- From: Eddie Bush [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 24, 2002 11:18 AM To: Struts Users Mailing List Subject: Re: frames and struts Be aware that you need to be going through actions if you want your configuration provided for things like <html:form>. Only by going through the controller are you able to have vital configuration information placed in the request - hitting JSP pages alone will not do it. ... sounds to me like that might be your problem. Bryan Hilterbrand wrote: >We are using Struts and frames, but it's not the easiest thing to do. >The biggest problem we had was trying to get the Struts html:form >tags to work -- we finally ditched them and just use HTML form >tags. > >I would send more, but I'm under a deadline today... > >Bryan > -- Eddie Bush -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

