Hi Dave, I have quite a bit of experience with HTTPS+Apache+Tomcat+Struts. :] But sincerely i don't understand the problem of yours... If you are already in HTTPS schema, so what's the problem with form post? Struts tag <html:form/> accepts no relative or absolute URLs. You must specify name of action declared in your struts-config.xml for the attribute action of <html:form/> tag.
Your form in JSP: ... <html:form method="POST" action="/youraction"> <html:text property="name" size="30" maxlength="50"/> ... <html:submit property="submit" altKey="buttons.submit"> <bean:message key="buttons.submit"/> </html:submit> </html:form> ... Excerpt from your struts-config.xml: ... <action-mappings> ... <action path="/youraction" name="formname" type="your.action.ClassName" validate="true".../> ... </action-mappings> ... Struts forms and HTTPS has nothing in common. If you are already in HTTPS schema, you will stay there until you change to HTTP again (through clicking on link eith href value as absolute URL, or through waiting some URL in your filter that is capable to recognize that URL is the one that should not be secured anymore and to change the schema to HTTP...) Hope this helps. Peace, Aidas Hardy, David T. <[EMAIL PROTECTED]> wrote: > Hello, > > Is there any way to post to an HTTPS URL in the html:form? It appears I > cannot use a relative URL or a fully qualified URL. I see the SSLEXT but I > would like a quicker and easier solution if possible. I am already at an > HTTPS URL for the current page. > > Thank You, > > Dave > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]