JSP Include Vs. Struts Template Include

2004-02-10 Thread ssrinivasrao
Hi guys, Can anyone help me understand the diff. between the JSP include (say including 2 to 3 .jsp pages in the main jsp) and Struts Template include tags. My main doubt is Why Struts template include tag is preferred over its counterpart? Confused with the pros. and cons. of both

RE: JSP Include Vs. Struts Template Include

2004-02-10 Thread Andrew Hill
Template Include Hi guys, Can anyone help me understand the diff. between the JSP include (say including 2 to 3 .jsp pages in the main jsp) and Struts Template include tags. My main doubt is Why Struts template include tag is preferred over its counterpart? Confused with the pros. and cons

[Q] struts-template - I centralized the layout file, but am I missing something?

2003-03-15 Thread Jeff Smith
I have 3 different pages in my test app: Greet Unauthenticated User, Login and Greet Authenticated User There is a PageUnauthGreet.jsp, PageAuthGreet.jsp and PageLoginUser.jsp. Each has an identical structure: %@ taglib uri='/tags/struts-template' prefix='template' % template:insert template

Re: [Q] struts-template - I centralized the layout file, but am I missing something?

2003-03-15 Thread Dan Allen
Jeff Smith ([EMAIL PROTECTED]) wrote: I have 3 different pages in my test app: Greet Unauthenticated User, Login and Greet Authenticated User There is a PageUnauthGreet.jsp, PageAuthGreet.jsp and PageLoginUser.jsp. Each has an identical structure: %@ taglib uri='/tags/struts-template

Re: [Q] struts-template - I centralized the layout file, but am Imissing something?

2003-03-15 Thread James CE Johnson
: I have 3 different pages in my test app: Greet Unauthenticated User, Login and Greet Authenticated User There is a PageUnauthGreet.jsp, PageAuthGreet.jsp and PageLoginUser.jsp. Each has an identical structure: %@ taglib uri='/tags/struts-template' prefix='template' % template:insert template

Problem with Struts Template and proxy caching

2002-12-17 Thread dumps
Hi everyone, we are facing a problem with Struts templates (Struts 1.02) and proxy caching : The response headers we are setting in jsp files are not being sent back to the browser whenever a template:insert tag is used : ... template:insert template='Template.jsp' template:put

Re: Problem with Struts Template and proxy caching

2002-12-17 Thread Cedric Dumoulin
Hi, I think that once the response is committed, you can't change the response's header (check the spec). So, if you set the header after the template is inserted, the change has no effect because the insert commit the response. Cedric dumps wrote: Hi everyone, we are facing a

Struts template tag

2002-11-18 Thread Jean-Baptiste Onofré
Hello all, i would like to use template tags. For exemple, i will define a JSP template like this : %@ taglib uri=/WEB-INF/struts-template.tld prefix=template % html head titletemplate:get name=title//title link rel=stylesheet type=text/css href=toto.css/ /head body template:get

Re: Struts template tag

2002-11-18 Thread David Graham
The template tags are deprecated in 1.1 in favor of Tiles. David From: Jean-Baptiste Onofré [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Struts template tag Date: Mon, 18 Nov 2002 17:08:06 +0100 Hello all, i would like to use

Re: Struts template tag

2002-11-18 Thread Jean-Baptiste Onofré
Thanks for info, but i'm in 1.0.2 in my dev. I will try that i have write :) Best regards -- Jean-Baptiste Onofré (Nanthrax) Membre fondateur de phpFR.org http://www.phpfr.org [EMAIL PROTECTED] Membre fondateur du LUG Béziers http://www.lug-beziers.org [EMAIL PROTECTED] -- To unsubscribe,

Re: Pros and Cons of Hard coding a JSP page in a Struts template vs using aparameter?

2002-10-18 Thread David Graham
] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Subject: Pros and Cons of Hard coding a JSP page in a Struts template vs using a parameter? Date: Thu, 17 Oct 2002 08:26:42 -0400 I would like to know the pros and cons of hard coding a JSP page in a struts template. Which struts template is better on speed

Pros and Cons of Hard coding a JSP page in a Struts template vs using a parameter?

2002-10-18 Thread Smith, Johnathan M.
I would like to know the pros and cons of hard coding a JSP page in a struts template. Which struts template is better on speed and memory? EXAMPLE1 % page language=java % % page import=javax.servlet.http.* % % page import=javax.servlet.jsp.* % % taglib uri=/WEB-INF/struts-template.tld prefix

Re: anyone using struts template ??

2002-10-16 Thread David Graham
] Subject: anyone using struts template ?? Date: Wed, 16 Oct 2002 15:29:55 -0400 Please email me I have a number of questions and I am looking for a good sample -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED

RE: anyone using struts template ??

2002-10-16 Thread Smith, Johnathan M.
Is template going to be removed? -Original Message- From: David Graham [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 16, 2002 3:37 PM To: [EMAIL PROTECTED] Subject: Re: anyone using struts template ?? You'd probably be better off using tiles as it's the more popular/developed

RE: anyone using struts template ??

2002-10-16 Thread David Graham
Not that I know of. David From: Smith, Johnathan M. [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'David Graham' [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: RE: anyone using struts template ?? Date: Wed, 16 Oct 2002 17:32:15 -0400 Is template going

Re: global forward and Struts template--(error)can't forward responseafter it's commited

2002-09-09 Thread Cedric Dumoulin
Hello Keven, The error message you got says exactly what is wrong: you can't do a forward once the response is committed. Checking your code, it appears that you do a forward in a page inserted by the template. This is not possible due to jsp specification. Templates use include to do the

Re: global forward and Struts template--(error)can't forward responseafter it's commited

2002-09-09 Thread Cedric Dumoulin
Hello Keven, The error message you got says exactly what is wrong: you can't do a forward once the response is committed. Checking your code, it appears that you do a forward in a page inserted by the template. This is not possible due to jsp specification. Templates use include to do the

Re: global forward and Struts template--(error)can't forward response after it's commited

2002-09-07 Thread Keven
Please help me on the following issue. Thank you very much. Keven - Original Message - From: Keven [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, September 06, 2002 10:55 PM Subject: global forward and Struts template--(error)can't forward response after

global forward and Struts template--(error)can't forward response after it's commited

2002-09-06 Thread Keven
Hi, all: I appreciate any/all helps from you. The senario: There is a JoinUs link on the top menu of a page. When I click on the link, I want the registration form displayed in the body area. The Problem: When I click on JoinUs link, I got nothing on the body area. on the log, I got the

struts template

2002-09-02 Thread Keven
be achieved by struts template. And for every page, there are two jsps, one is template jsp, and one is the jsp that uses the template jsp. I haven't actually implement it yet. Does anyone know the best way to achieve it? Thank you for your time and help. Keven

struts template

2002-09-02 Thread Keven
be achieved by struts template. And for every page, there are two jsps, one is template jsp, and one is the jsp that uses the template jsp. I haven't actually implement it yet. Does anyone know the best way to achieve it? Thank you for your time and help. Keven

Problem using nested struts template tag

2002-08-15 Thread Ying Gao
I use nested template tag as the following: template:insert template=template.jsp template:put name=header content=header.jsp/ template:put name=content direct=true template:insert template=contentTemplate.jsp template:put name=contentTitleImage content=images/content_01.gif

struts template opinion

2002-07-25 Thread Michelle Popovits
Hi, I am considering using Struts templating tag library. Can anyone tell me what you think of it and what it's benefit is over not using it (is it worth the extra effort??). Thanks, Michelle _ Join the world’s largest e-mail

Re: struts template opinion

2002-07-25 Thread @Basebeans.com
Subject: Re: struts template opinion From: Vic C. [EMAIL PROTECTED] === Use tiles instead. V. Michelle Popovits wrote: Hi, I am considering using Struts templating tag library. Can anyone tell me what you think of it and what it's benefit is over not using it (is it worth the extra

RE: struts template opinion

2002-07-25 Thread Bartley, Chris P
into reusable components, it also makes presenting different views for different roles and/or user-agents (e.g. phone, PC browser, etc) a snap. -Original Message- From: Michelle Popovits [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 4:51 PM To: [EMAIL PROTECTED] Subject: struts

Re: struts template opinion

2002-07-25 Thread Eddie Bush
Extra effort? How is it extra effort to use a template scheme? You reduce the number of places you have to maintain information down to (ideally) just one. Tiles is even better, by the way. It takes things one step further and lets you seperate your layout definition from it's actual

RE: struts template opinion

2002-07-25 Thread Michelle Popovits
[EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: struts template opinion Date: Thu, 25 Jul 2002 16:58:27 -0500 Take a look at Tiles: http://www.lifl.fr/~dumoulin/tiles/ Mmmm mmm good. Definitely worth

Re: struts template opinion

2002-07-25 Thread Eddie Bush
I looked at the Struts templating mechanism ages ago but I don't remember anything about it now. I do believe that you can use Tiles with 1.0.2. Search the list. Cedric just posted a reply to someone either today or yesterday on this very topic. Good Luck! Eddie Michelle Popovits wrote:

RE: struts template opinion

2002-07-25 Thread Bartley, Chris P
No, Tiles works great with 1.0.2. -Original Message- From: Michelle Popovits [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 5:04 PM To: [EMAIL PROTECTED] Subject: RE: struts template opinion [snip] I am currently limited to using the Struts 1.0.2 so I think

RE: struts template opinion

2002-07-25 Thread Michelle Popovits
[EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: struts template opinion Date: Thu, 25 Jul 2002 17:08:42 -0500 No, Tiles works great with 1.0.2. -Original Message- From: Michelle Popovits [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 25, 2002 5:04 PM

Re: struts template opinion

2002-07-25 Thread Eddie Bush
You will certainly want to visit that :-) Chuck does a pretty good job of laying it all out. One tip: remember when ti comes to tiles - if you want to forward to them the action you use must come from org.apache.struts.tiles.actions.* - not org.apache.struts.actions.*! Hopefully that

Re: struts template opinion

2002-07-25 Thread Eddie Bush
You only need to use the tiles actions if you forward DIRECTLY to a tile though - ie. there is no physical page and you want to forward to it. Look at Chuck's chapter and try it out - and then post here if you have questions ;-) Playing with it is the _best_ way to learn it. Good Luck!

Re: struts template opinion

2002-07-25 Thread Michelle Popovits
ok, I guess once I read more, it'll make more sense. Thanks for your help! Michelle From: Eddie Bush [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: struts template opinion Date: Thu, 25 Jul 2002 17:49:29

Re: struts template opinion

2002-07-25 Thread Eddie Bush
Yes - that's the key: doing. You may have to gain some insight on how to plug-in tiles to your application. It just occurred to me that 1.0.2 doesn't (I don't think) have the plug-in architecture. Therefore ... I'm not quite sure what you need to do - probably use the servlet included in

Re: [Struts / Template] Problems including a *.do.

2002-03-21 Thread Cedric Dumoulin
of templates. Cedric Sam Chia wrote: Hi, I am driven crazy using Struts Template and trying to include a path to a *.do instead of *.jsp. Please help me as I am stuck in this issue for so long. Really drives me cuckoo!! A template file template.jsp

[Struts / Template] Problems including a *.do.

2002-03-17 Thread Sam Chia
Hi, I am driven crazy using Struts Template and trying to include a path to a *.do instead of *.jsp. Please help me as I am stuck in this issue for so long. Really drives me cuckoo!! A template file template.jsp -- %@ page contentType=text/html% %@ page

Re: struts template

2002-02-28 Thread @Basebeans.com
Subject: Re: struts template From: zb cong [EMAIL PROTECTED] === another example is built in your struts download-bundle,under strutshome/webapps/ directory,file name is struts-template.war. Luis M. Rosso [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]; Hi, Henry ! I think

struts template

2002-02-18 Thread Henry Lu
Is there any examples with struts template tag? I have had difficulties to use it. Thanks, --- Henry Lu MCITphone: (734) 936-2063 University of Michigan Medical Center

RE: struts template

2002-02-18 Thread Arik Levin ( Tikal )
What is the problem shoot. -Original Message- From: Henry Lu [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 2:39 PM To: Struts Users Mailing List Subject: struts template Is there any examples with struts template tag? I have had difficulties to use it. Thanks

RE: struts template

2002-02-18 Thread Henry Lu
fax: (734) 763-4372 On Mon, 18 Feb 2002, Arik Levin ( Tikal ) wrote: What is the problem shoot. -Original Message- From: Henry Lu [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 2:39 PM To: Struts Users Mailing List Subject: struts template Is there any examples

RE: struts template

2002-02-18 Thread Arik Levin ( Tikal )
. -Original Message- From: Henry Lu [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 3:14 PM To: Struts Users Mailing List Subject: RE: struts template I got the following error: javax.servlet.ServletException: Exception forwarding for name welcome: org.apache.jasper.JasperException: XML

Re: struts template

2002-02-18 Thread Luis M. Rosso
=header content=header.jsp/ /template:insert Hope this helps Cheers Luis - Original Message - From: Henry Lu [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, February 18, 2002 10:13 AM Subject: RE: struts template I got the following error

logic:iterate with Struts template

2002-01-28 Thread Brian M. Zhang
/tr /logic:iterate productArrayList is a session variable holding an ArrayList object for com.myCompany.myPackage.Product classs. This page works just fine when it is by itself. However, when I use it as part of another page using Struts template, the logic:iterate / doesn't work any more

RE: logic:iterate with Struts template

2002-01-28 Thread Simon Thompson
Users Mailing List' Subject: logic:iterate with Struts template Hi, I have a jsp page which contains the following logic:iterate: logic:iterate id=product type=com.myCompany.myPackage.Product name=productArrayList tr tdbean:write name=product property=name filter=true//td

Re: logic:iterate with Struts template

2002-01-28 Thread Bryan Field-Elliot
/logic:iterate productArrayList is a session variable holding an ArrayList object for com.myCompany.myPackage.Product classs. This page works just fine when it is by itself. However, when I use it as part of another page using Struts template, the logic:iterate / doesn't

Re: Using struts-template as taglib

2002-01-23 Thread Robin Meade
David Geary discusses his Template taglib successor, Regions, in this JavaWorld article: http://www.javaworld.com/javaworld/jw-12-2001/jw-1228-jsptemplate_p.html An alternative approach to layout is to use the Servlet 2.3 filter mechanism. The SiteMesh taglib

Re: Using struts-template as taglib

2002-01-20 Thread Ted Husted
want to ask you about the posibility to using the struts-template taglib in a project that is not using struts at all. Initally i searched for a template taglib at http://jakarta.apache.org/taglibs/ but i couldn't find any. I then thought about using the struts-template taglib. So i took

Re: Using struts-template as taglib

2002-01-16 Thread Ryan
[EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Tuesday, January 15, 2002 12:53 PM Subject: RE: Using struts-template as taglib Andras, I believe you can download a jar file containing a templates taglib from http://www.phptr.com/advjsp/. The author of this taglib

Using struts-template as taglib

2002-01-15 Thread Andras Balogh
Hi all, I want to ask you about the posibility to using the struts-template taglib in a project that is not using struts at all. Initally i searched for a template taglib at http://jakarta.apache.org/taglibs/ but i couldn't find any. I then thought about using the struts-template taglib. So i

RE: Using struts-template as taglib

2002-01-15 Thread Vaughan Jackson
of the tag attribute names have been changed). HTH, Vaughan. -Original Message- From: Andras Balogh [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 15, 2002 8:26 AM To: [EMAIL PROTECTED] Subject: Using struts-template as taglib Hi all, I want to ask you about the posibility

Re: Using struts-template as taglib

2002-01-15 Thread Cedric Dumoulin
to using the struts-template taglib in a project that is not using struts at all. Initally i searched for a template taglib at http://jakarta.apache.org/taglibs/ but i couldn't find any. I then thought about using the struts-template taglib. So i took struts.jar and removed anything

Re: Struts' Template

2001-11-13 Thread Harden ZHU
: Marcel Andres [EMAIL PROTECTED] To: struts-user [EMAIL PROTECTED] Sent: Tuesday, November 13, 2001 4:41 AM Subject: RE: Struts' Template Isn't it possible for you, to create the error page in the same way? You could include title.jsp, header.jsp etc. on the error page, too, and so it would

Struts' Template

2001-11-13 Thread Harden ZHU
Hi, I am using the template as follow. And viewcart.jsp is the content. In viewcart.jsp, I have error checking. If found errors, will be forward to another page. But I can't do forward, beacuse title.jsp, header.jsp etc are included first. JSP will flush the code when do include. I don't want to

HowTo: Struts Template containing JSP with Action and ActionForms associated

2001-10-26 Thread storck
Hi, I have a template build with struts and I have a JSP wich uses that template and looks like the following: %@ taglib uri='/WEB-INF/struts-template.tld' prefix='template' % template:insert template='/common/template.jsp' template:put name='sidebar' content='/showSelectionBoxes.do' /

Re: Bug in Struts Template

2001-10-03 Thread Cedric Dumoulin
if there is a known bug with the struts template libs.. on how it produces html code... notice in the html output below has the html structure defined in the template at the end with all of the dynamic data printed ahead of it... there is definitely something wrong.. the data should be within

RE: Bug in Struts Template

2001-10-03 Thread Minh Tran
I am using Websphere Application Server 4.0 Let met try the flush.. hopefully it will work.. thanks, Minh -Original Message- From: Cedric Dumoulin [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, October 03, 2001 1:17 AM To: [EMAIL PROTECTED] Subject: Re: Bug in Struts Template

RE: Bug in Struts Template

2001-10-03 Thread Assenza, Chris
PROTECTED]] Sent: Wednesday, October 03, 2001 1:35 PM To: '[EMAIL PROTECTED]' Subject: RE: Bug in Struts Template I am using Websphere Application Server 4.0 Let met try the flush.. hopefully it will work.. thanks, Minh -Original Message- From: Cedric Dumoulin [SMTP:[EMAIL PROTECTED]] Sent

Bug in Struts Template

2001-10-02 Thread Minh Tran
Hi, can someone please let me know if there is a known bug with the struts template libs.. on how it produces html code... notice in the html output below has the html structure defined in the template at the end with all of the dynamic data printed ahead of it... there is definitely something

Re: problem with invoking struts-template!!

2001-06-08 Thread Chuck Amadi
Hi, the container is now throwing up - http://localhost:8080/struts-template/css/bbnpa.css even when i type struts-bbnpa as opposed struts-template.!! Thus my bbnpa.css file appears in the browser as below.You mentioned moving CSS up to tomcat where i.e to struts-bbnpa (my web application

Re: problem with invoking struts-template!!

2001-06-08 Thread Chuck Amadi
Hi, am i correct that the struts- template is a webapp and can i physically move it's content to my struts-bbnpa thus move it up to where tomcat is looking.Thus if this correct must i then constantly only refer to content in my web app named struts-bbnpa. Cheers chuck Ted Husted wrote: I

error regarding invoking css from struts-template

2001-06-08 Thread Chuck Amadi
Hi, am i correct that the struts- template is a webapp and can i physically move it's content to my struts-bbnpa thus move it up to where tomcat is looking.Thus if this correct must i then constantly only refer to content in my web app named struts-bbnpa. Cheers chuck -- The views expressed

Re: error regarding invoking css from struts-template

2001-06-08 Thread Ted Husted
There is a sample Web app that demonstrates how to use the struts-template tags, but you don't need to deploy that with your applicaton. Struts-template is one of the custom tag libraries, like bean, html, and logic. All you just need is the stuts-template.tld, same as any of the others

Re: problem with invoking struts-template!!

2001-06-07 Thread Peter Alfors
to: /WEB-INF/struts-template/css/bbnpa.css However, Im not sure if the template stuff changes this. HTH, Pete Chuck Amadi wrote: I have created a index.jsp that has the content of our company web-site, thus the index.jsp is located C:\jakarta-tomcat-3.2.1\webapps\struts-bbnpa

Re: problem with invoking struts-template!!

2001-06-07 Thread Ted Husted
-site, thus the index.jsp is located C:\jakarta-tomcat-3.2.1\webapps\struts-bbnpa\index.jsp Thus i have set up the tag libraries in the web.xml file and referenced the taglib at the top of my index.jsp page as below.Nevertheless i recieve a Not Found Error.My struts-template is located C

Re: struts-template and MVC

2001-05-31 Thread Martin Cooper
BY LOOKING AT THIS PAGE http://jakarta.apache.org/site/mail2.html - Original Message - From: Perez, Bill [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 16, 2001 10:40 AM Subject: RE: struts-template and MVC HOW THE HELL DO I UNSUBSCRIBE FROM THIS LIST

Re: struts-template and MVC

2001-05-16 Thread Cedric Dumoulin
pretty well. Now the GUI developers are looking to integrate all of my very ugly HTML pages into a common look and feel. I thought that the struts-template mechanism would be perfect. I can define my header, sidebar, footer and dynamic content using this library. However, I noticed

RE: struts-template and MVC

2001-05-16 Thread Danail Grigorov
: Tuesday, May 15, 2001 8:35 PM To: [EMAIL PROTECTED] Subject: struts-template and MVC I originally wrote a Struts app that acted much like the struts-example. I feel it's a good separation of business logic from presentation, and that it follows the principles of MVC pretty well. Now the GUI developers

RE: struts-template and MVC

2001-05-16 Thread Perez, Bill
HOW THE HELL DO I UNSUBSCRIBE FROM THIS LIST -Original Message- From: Mark Simms [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, May 15, 2001 6:50 PM To: [EMAIL PROTECTED] Subject: Re: struts-template and MVC Sounds greatgo for it Dan, but try to get more info

struts-template and MVC

2001-05-15 Thread Dan Miser
and feel. I thought that the struts-template mechanism would be perfect. I can define my header, sidebar, footer and dynamic content using this library. However, I noticed that the struts-template mechanism seems to be based on JSP pages, as opposed to actions. For example, the InsertTag class

Re: struts-template and MVC

2001-05-15 Thread Mark Simms
Sounds greatgo for it Dan, but try to get more info on the component specification.little seems to be known about it. - Original Message - From: Dan Miser [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 15, 2001 8:34 PM Subject: struts-template and MVC I originally

Re: struts-template and MVC

2001-05-15 Thread John Chang
should be: template:put name='action' content='/displayRoles.do?type=external' direct='true' / - Original Message - From: Dan Miser [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 15, 2001 8:34 PM Subject: struts-template and MVC I originally wrote a Struts app

Re: struts-template and MVC

2001-05-15 Thread Dan Miser
. -- Dan Miser http://www.distribucon.com - Original Message - From: John Chang [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 16, 2001 1:28 AM Subject: Re: struts-template and MVC should be: template:put name='action' content='/displayRoles.do?type=external' direct='true' /

Re: My struts-template is broken - repeat (newbie)

2001-04-11 Thread Vijaya Narasimha
unrelated? Please let me know. Thanks for youe help Vijay From: bram Subject: Re: My struts-template is broken Date: Mon, 05 Mar 2001 17:16:26 -0800

RE: My struts-template is broken - iPlanet Application Server 6.0 sp2 and Struts (newbie)

2001-04-11 Thread Vijaya Narasimha
suggested still hold good? Or is my problem unrelated? Please let me know. Thanks for youe help Vijay -- -- From: bram Subject: Re: My struts-template is broken Date: Mon, 05 Mar 2001 17:16:26 -0800

Re: problem running struts-template example

2001-04-03 Thread Cedric Dumoulin
Hi Eric, It seems that your server doesn't flush out content while including the template parts. Cedric ric Chamberland wrote: Hi, i find a way to run struts-blank, struts-documentation and little part of struts-example. But, when i tried struts-template, i've got only the blue

Re: Help PLEASE!!!! How do you create struts template file usingframe instead of table

2001-04-03 Thread Cedric Dumoulin
e name="mainFrame" src="" marginwidth="5" marginheight="5" scrolling="auto" border="0" frameborder="no" noresize frame name="footerFrame" src="template:get name='menu'/" marginwidth="5" m

problem running struts-template example

2001-04-02 Thread Éric Chamberland
Hi, i find a way to run struts-blank, struts-documentation and little part of struts-example. But, when i tried struts-template, i've got only the blue-white background?? The result html give me an empty table, why? It look like the result of template:get didn't find the values assign

Help PLEASE!!!! How do you create struts template file using frame instead of table

2001-03-29 Thread Hoang, Anh
Hello all, In the template tag example, the template file used the table and table row to indicate where in the layout to insert the content. Is there a way to build the template file using frame instead of table? How do you specify the src so that it will take template:get name="anything"/ to

Re: Help PLEASE!!!! How do you create struts template file using frame instead of table

2001-03-29 Thread Cedric Dumoulin
Hello Anh, In the template page, you have to write something like : --- frameset rows="73, *, 73" frame src="%=request.getContextPath()%template:get name="header" /" name="header" frame src="%=request.getContextPath()%template:get name="body" /" name="body" frame

Re: Template -struts-template and generated HTML / templating using PUSH model

2001-03-28 Thread Cedric Dumoulin
beginning to look at Templating mechanism and so use the example struts-template using version pre-beta-2 (23/03/01). The result is a strange for me. Can somebody explain me this. On the first page, when I look at the generated code (look at the end of message), I got something where the si

Re: Template -struts-template and generated HTML / templating using PUSH model

2001-03-28 Thread Christophe Vigny
introduce in Struts version 1.1 For your first question, see intermixed. Cedric Vincent Harcq wrote: Hi, 1. I am beginning to look at Templating mechanism and so use the example struts-template using version pre-beta-2 (23/03/01). The result is a strange for me. Can somebody

RE: Template -struts-template and generated HTML / templating using PUSH model

2001-03-28 Thread Vincent Harcq
PROTECTED]] Envoye : mercredi 28 mars 2001 11:06 A : [EMAIL PROTECTED] Objet : Re: Template -struts-template and generated HTML / templating using PUSH model Hi Vincent, Have a look to Components proposal. Components proposal can be seen as "extended templates". With Components you

Re: Template -struts-template and generated HTML / templating using PUSH model

2001-03-28 Thread Maya Muchnik
ts version 1.1 For your first question, see intermixed. Cedric Vincent Harcq wrote: Hi, 1. I am beginning to look at Templating mechanism and so use the example struts-template using version pre-beta-2 (23/03/01). The result is a strange for me. Can somebody

RE: Template -struts-template and generated HTML / templating using PUSH model

2001-03-28 Thread Assenza, Chris
, 2001 2:59 AM To: User Struts Subject: Template -struts-template and generated HTML / templating using PUSH model Hi, 1. I am beginning to look at Templating mechanism and so use the example struts-template using version pre-beta-2 (23/03/01). The result is a strange for me. Can somebody explain

Template -struts-template and generated HTML / templating using PUSH model

2001-03-27 Thread Vincent Harcq
Hi, 1. I am beginning to look at Templating mechanism and so use the example struts-template using version pre-beta-2 (23/03/01). The result is a strange for me. Can somebody explain me this. On the first page, when I look at the generated code (look at the end of message), I got something

Re: struts-template tag library vs. jsp:include/

2001-03-19 Thread Jim Newsham
Thank you for your reply, but this didn't really answer my question. Let me rephrase. I am talking about jsp:include/, which is a dynamic templating mechanism, as opposed to %@ include %, which is static. As I understand it: jsp:include/ and struts-template:*/ are both dynamic templating

RE: struts-template tag library vs. jsp:include/

2001-03-19 Thread Troy Hart
tables where you set the header, footer, sidebar, and etc...) on every single jsp page. Troy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jim Newsham Sent: Friday, March 16, 2001 7:20 PM To: [EMAIL PROTECTED] Subject: struts-template tag library vs

RE: struts-template tag library vs. jsp:include/

2001-03-19 Thread Troy Hart
The template custom actions (including "insert", "put", and "get") are absolutely distinct from the JSP "include" action. I would recommend that you review the code for the struts-template web application that comes with struts1.0 beta 1. In a nutshell, th

struts-template tag library vs. jsp:include/

2001-03-16 Thread Jim Newsham
Hi, What are the differences between using the struts template tag library and jsp's include action? What are the advantages and trade-offs of each? Thanks, Jim Newsham

Re: My struts-template is broken

2001-03-08 Thread Maya Muchnik
w! Somehow or other my 1.0b1 struts-template webapp is refusing to place the header, sidebar, content and footer in their respective places as per the template. Instead these components are placed one after another vertically down my browser page. I've redeployed the 1.0b1 struts-te

Re: My struts-template is broken

2001-03-08 Thread Cedric Dumoulin
was using Tomcat 3.1, templates seem to work properly with Tomcat 3.2.1. Tom Miller wrote: Whew! Somehow or other my 1.0b1 struts-template webapp is refusing to place the header, sidebar, content and footer in their respective places as per the template. Instead these components are

My struts-template is broken

2001-03-05 Thread Tom Miller
Whew! Somehow or other my 1.0b1 struts-template webapp is refusing to place the header, sidebar, content and footer in their respective places as per the template. Instead these components are placed one after another vertically down my browser page. I've redeployed the 1.0b1 struts-template.war

Re: My struts-template is broken

2001-03-05 Thread Tom Miller
Turned out the problem was using Tomcat 3.1, templates seem to work properly with Tomcat 3.2.1. Tom Miller wrote: Whew! Somehow or other my 1.0b1 struts-template webapp is refusing to place the header, sidebar, content and footer in their respective places as per the template. Instead

struts-template problem

2001-01-12 Thread Laufer, Michael
Title: struts-template problem Hi, I've just downloaded Struts version 1.0 and face the following problem while trying to run the template-example. I've programmed already almost half a year with Struts 0.5, but I'm not familiar with the following error. Am I making something terribly

Re: struts-template problem

2001-01-12 Thread Craig R. McClanahan
"Laufer, Michael" wrote: Hi, I've just downloaded Struts version 1.0 and face the following problem while trying to run the template-example. I've programmed already almost half a year with Struts 0.5, but I'm not familiar with the following error. Am I making something terribly wrong, or is it