RE: Importing context with Struts

2004-08-11 Thread Jim Barrows
> -Original Message- > From: Leandro Melo [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 11, 2004 2:13 PM > To: struts jakarta > Subject: Re: Importing context with Struts > > > Jim, > as i said i have a page with only one line of code, > wich is the

Re: Importing context with Struts

2004-08-11 Thread Leandro Melo
the > > errorHTMLcomponent.jsp page (as i showed). > > When i submit a request the hits the validate > method, > > it comes back, but i cannot see the error because > the > > html:errors tag is in another page. > > That's why i wanted to import the Struts > con

RE: Importing context with Struts

2004-08-11 Thread Jim Barrows
> -Original Message- > From: Leandro Melo [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 10, 2004 8:29 PM > To: struts jakarta > Subject: Re: Importing context with Struts > > > Well guys, > i'm just a beginner here, so i couldn't some poi

Re: Importing context with Struts

2004-08-10 Thread Leandro Melo
compiled into one big huge class. they are > individual servlets in keeping with the spec. > > > > > > At 03:23 PM 8/10/2004, you wrote: > > > > > > > > -Original Message- > > > > From: Michael McGrady > [mailto:[E

Re: Importing context with Struts

2004-08-10 Thread Vic Cekvenich
You can get very dynamic w/ tiles, and use tilesaction for each tilee and put in scope what the tiles defnitions need to render, so each request is dynamycaly assembled. Rember that you can use tiles-el or el anywhere in servlet 2.4 (If you want to use extrnal or non "jsp" source, check out site

RE: Importing context with Struts

2004-08-10 Thread Jim Barrows
> -Original Message- > From: Michael McGrady [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 10, 2004 3:51 PM > To: Struts Users Mailing List > Subject: RE: Importing context with Struts > > > I thought that digester actually created classes out of this >

RE: Importing context with Struts

2004-08-10 Thread Michael McGrady
I thought that digester actually created classes out of this stuff, Jim. No? At 03:23 PM 8/10/2004, you wrote: > -Original Message- > From: Michael McGrady [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 10, 2004 3:14 PM > To: Struts Users Mailing List > Subject: RE: Im

RE: Importing context with Struts

2004-08-10 Thread Jim Barrows
> -Original Message- > From: Michael McGrady [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 10, 2004 3:14 PM > To: Struts Users Mailing List > Subject: RE: Importing context with Struts > > > At 03:00 PM 8/10/2004, you wrote: > >Not class no, scope ye

RE: Importing context with Struts

2004-08-10 Thread Michael McGrady
At 03:00 PM 8/10/2004, you wrote: Not class no, scope yes. The "extension" is not real? Michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Importing context with Struts

2004-08-10 Thread Jim Barrows
> -Original Message- > From: Michael McGrady [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 10, 2004 2:58 PM > To: Struts Users Mailing List > Subject: RE: Importing context with Struts > > > At 02:53 PM 8/10/2004, you wrote: > > > > Is there

RE: Importing context with Struts

2004-08-10 Thread Michael McGrady
At 02:53 PM 8/10/2004, you wrote: > Is there a way to do that? Are all these pages being displayed at the same time? In that case all vars are probalby in request scope, if not session. Other then that... I don't think so. I do much the same thing, using tiles to tie it all together for display

RE: Importing context with Struts

2004-08-10 Thread Jim Barrows
> -Original Message- > From: Leandro Melo [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 10, 2004 2:50 PM > To: struts jakarta > Subject: Importing context with Struts > > > Suppose i got scattered pieces of code, wich includes > a lot of Struts tags.

Importing context with Struts

2004-08-10 Thread Leandro Melo
Suppose i got scattered pieces of code, wich includes a lot of Struts tags. These pieces are separate files, and i need to accesss some struts attributes (or beans) from these other files for each request. A nice example would be the html: error tag. In my case, it's located outside of the file th