Re: HTTPS Post Action

2004-11-27 Thread Aidas Semezys
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

Re: refresh body only from JSP

2004-11-27 Thread Aidas Semezys
Hi Peter, David is right. You need frames if you want to reload just part of your page. And yes tiles framework assembles all components and returns the accumulated result. But you CAN write JSP, that changes just one tile component (for example body) of your page: %@ page language=Java

Re: Why does a Form Bean declared as session-scope appear on both session and request?

2004-11-27 Thread erh
On Fri, Nov 26, 2004 at 11:49:43AM -, Paul McCulloch wrote: The attribute in org.apache.struts.taglib.html.BEAN is set by the html:form tag. This is how the other html: tags know which form bean they are dealing with. I'd be interested to know why the other html tags are made aware of

Re: refresh body only from JSP

2004-11-27 Thread Peter O'Reilly
Aidas, How do I define that body definition in the tiles-def.xml? This is my tiles-def, definition name=site.mainLayout path=/layouts/classicLayout.jsp put name=title value=The Portal / put name=header value=/tiles/common/header.jsp / put name=menu value=site.menu.bar /

How to retrieve parameters passed via GET method?

2004-11-27 Thread ZHENG Zhong
Hi all, here is a newbie's question: For example, i have a page called accountList.jsp, which displays an account list of a certain customer. Each account has an ID as its primary key. Customer may click on the Close hyperlink to close an account. The hyperlink is like this: a

Re: Struts training

2004-11-27 Thread James Mitchell
Was your question ever answered? There was talk about this among the Struts-Atlanta (Struts users group) members and I have considered putting something like this together, but like everything else, it has taken a back seat to other plans. If there is enough real interest in this, I will bump

Re: refresh body only from JSP

2004-11-27 Thread Aidas Semezys
Hi Peter, You can define definition i mentioned another.definition just like any other definition in tiles-defs.xml. Tiles framework will find it for you. Just add to your defs: ... definition name=another.definition path=your.jsp controllerClass=possibly.ControllerClass put