Re: [s2] Theme Tutorial

2006-12-01 Thread Don Brown
This is very impressive. Would you be interested in donating it to the official Struts 2 documentation, or at least, allowing us to link to it? Don On 12/1/06, Mark Menard <[EMAIL PROTECTED]> wrote: After extending the xhtml theme to handle multi-column layouts I wrote up a tutorial covering h

RE: Parameters not being set on Action in Struts 2

2006-12-01 Thread Tarek Nabil
Looks like it is that issue indeed :( From: Ted Husted [mailto:[EMAIL PROTECTED] Sent: Fri 12/1/2006 4:34 PM To: Struts Users Mailing List Subject: Re: Parameters not being set on Action in Struts 2 On 12/1/06, Tarek Nabil <[EMAIL PROTECTED]> wrote: > I'm ope

[s2] Theme Tutorial

2006-12-01 Thread Mark Menard
After extending the xhtml theme to handle multi-column layouts I wrote up a tutorial covering how I did it, and a sample project illustrating it. Anyone interested in extending the S2 GUI tags might find this helpful. There were several things that I stumbled on in the process, so you can learn fro

Re: [struts2]Provider org.apache.xalan.processor.TransformerFactoryImpl not found

2006-12-01 Thread zhaoren liu
JDK 1.5.0_06 Tomcat 5.5.7 Thanks Zhaoren On 12/2/06, Don Brown <[EMAIL PROTECTED]> wrote: What Java version and application server are you using? Don On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote: > Hi guys, > > I am study Struts2. When I run struts-blank.war, I get some error trace. I >

Re: How to set <%@ page session="false" %>, globally?

2006-12-01 Thread Paul Benedict
Are you using localization features? If Struts 1.x is selecting the locale for you, it will create a session to store it. Bryce Nesbitt wrote: Thanks for the tip. I do that but I still get jsessionid's in the URL: WEB-INF/tiles-defs.xml ... jsp/common/layouts/mainLayout.jsp: <%@ page sess

FW: tag populating a table not in a form does not rerender on page refresh. (Struts 1.1)

2006-12-01 Thread Ben Flynn
Hey guys; I have a really annoying problem that I've killed far too much time on- I was hoping someone might have some additional insight. I created a page that uses a to populate a table with an ArrayList of Beans. This works beautifully on first view, but subsequent page views and refreshes do n

Re: Port to sar?

2006-12-01 Thread Martin Gainty
Powerful stuff! OGNL expression parsing for expression validation Ability to turn off singleton for each Action,Interceptor or Result Bean..nice IoC for components and validator rules searched on inheritance tree not to mention ValueStack allowing next Acion to access previous Action pertaining t

Re: How to get a dynaform in the Action class ?

2006-12-01 Thread Ed Griebel
I prefer dynaforms as I don't need *any* explicit formbean classes. With a good-sized application there's 30 classes I don't need to maintain. For a further reduction, use Lazy-flavor Dyna beans, then no changes to XML are required, just change the action class and JSP. -ed On 12/1/06, Thomas Th

Re: How to get a dynaform in the Action class ?

2006-12-01 Thread Thomas Thomas
If u add a property in a bean, or remove ... I think u will have to change the code anyway and recompile ... 2006/12/1, Dave Newton <[EMAIL PROTECTED]>: From: Thomas Thomas [mailto:[EMAIL PROTECTED] > There is not much code for a FormBean in Java ... > I don't see the point to have it in XML

Re: HTML Input field event with ' (quote) in name of var being set breaking javascript var assignment

2006-12-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 John, Mississippi John Hurt wrote: > I notice if the quote is escaped as... \' > then it works fine, the problem is it will display wrong looking exactly > like above, so I have to escape it 2 different ways... Yeah, that's pretty much the deal. You

RE: How to get a dynaform in the Action class ?

2006-12-01 Thread Dave Newton
From: Thomas Thomas [mailto:[EMAIL PROTECTED] > There is not much code for a FormBean in Java ... > I don't see the point to have it in XML Okay. Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

RE: Struts, AJAX, JSP, and JavaScript question

2006-12-01 Thread Levan Dvalishvili
> eval() evaluates JavaScript, not XML or HTML. Not quite true, in case of eval("") it will write to the html source, and then it's up to browser how it will be interpreted, if its valid markup it will not say anything, otherwise it will complain, that explains why you get those two errors bel

Re: HTML Input field event with ' (quote) in name of var being set breaking javascript var assignment

2006-12-01 Thread Mississippi John Hurt
I notice if the quote is escaped as... \' then it works fine, the problem is it will display wrong looking exactly like above, so I have to escape it 2 different ways... Using ' the default in most cases, but using the \' just for this javascript workaround. Is this correct, there's got to be a b

Re: How to get a dynaform in the Action class ?

2006-12-01 Thread Christopher Goldman
On Fri, 2006-12-01 at 20:10 +0100, Thomas Thomas wrote: > There is not much code for a FormBean in Java ... > I don't see the point to have it in XML Thomas, The benefit is that you can edit the XML and redeploy without recompiling your app. Chris -- Christopher D. Goldman [EMAIL PROTECTED]

Re: HTML Input field event with ' (quote) in name of var being set breaking javascript var assignment

2006-12-01 Thread Mississippi John Hurt
Actually its escaping it fine but it just doesnt work... The rendered html looks like... Can anyone spot what's wrong? Don't see why this wouldn't set the myNameProp. On 12/1/06, Christopher Schultz <[EMAIL PROTECTED]> wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 John, Mississippi

Re: how do I start with struts?

2006-12-01 Thread walid . hajeri
My advice is that you start by installing tomcat, and then test it with a struts-blank application... |-- |SOF - Dragone |Jose Luis

how do I start with struts?

2006-12-01 Thread SOF - Dragone Jose Luis
Hi Can you please send me examples or link on how to start with struts I'm working with easy eclipse 3.1 but unfortunately I don't have much idea on how to setup struts on eclipse or how to run applications on it Thanks Jose *** ADVERTENCIA *** - El contenido del presente mensaje y

Re: How to get a dynaform in the Action class ?

2006-12-01 Thread Thomas Thomas
There is not much code for a FormBean in Java ... I don't see the point to have it in XML

RE: How to get a dynaform in the Action class ?

2006-12-01 Thread Dave Newton
From: Thomas Thomas [mailto:[EMAIL PROTECTED] > Well there is still code in the XML, > what's the point for having this code in XML then in Java in this > case. Less "code." Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: HTML Input field event with ' (quote) in name of var being set breaking javascript var assignment

2006-12-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 John, Mississippi John Hurt wrote: > '; > return > true" property="takeaction" src="button.gif" > Sorry, I didn't see that you were using . Is there a Struts tag that can help you with this? If not, you might have to do it yourself by writing a shor

Re: HTML Input field event with ' (quote) in name of var being set breaking javascript var assignment

2006-12-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 John, Mississippi John Hurt wrote: > I have onclick handler which sets a form property via javascript. > Problem is when the myWeirdName has a quote in the name, this breaks > my javascript handling below. I had this same problem using Velocity Tool

Re: How to get a dynaform in the Action class ?

2006-12-01 Thread Thomas Thomas
Well there is still code in the XML, what's the point for having this code in XML then in Java in this case. 2006/12/1, Dave Newton <[EMAIL PROTECTED]>: From: Thomas Thomas [mailto:[EMAIL PROTECTED] > I don't know if I need to choose an ActionForm or DynaActionForm for > the login page. When do

Re: [s2] Simple Tag Question and

2006-12-01 Thread Don Brown
On 12/1/06, Mark Menard <[EMAIL PROTECTED]> wrote: On 12/1/06 12:01 PM, "Don Brown" <[EMAIL PROTECTED]> wrote: > Well, I had some free time (holding my new son to let mom get some > sleep) and figured everyone deserved at least a reply. Yay for > GMail's search. > > Anyways, cool, thanks for th

Re: HTML Input field event with ' (quote) in name of var being set breaking javascript var assignment

2006-12-01 Thread Gary Feidt
I don't work with tags, but why don't you create a String variable and then use that in your onclick: String strOnClick = whatever + "something else" + whatever2 + "return true"; Gary >>> [EMAIL PROTECTED] 12/1/2006 12:35:48 PM >>> Hi, I have onclick handler which sets a form property via jav

HTML Input field event with ' (quote) in name of var being set breaking javascript var assignment

2006-12-01 Thread Mississippi John Hurt
Hi, I have onclick handler which sets a form property via javascript. Problem is when the myWeirdName has a quote in the name, this breaks my javascript handling below. Can anyone help me get around this easily? Thanks. '; return true" property="takeaction" src="button.gif" >

Re: [FRIDAY/OT] Access Log file reporting tools

2006-12-01 Thread Christopher Goldman
On Fri, 2006-12-01 at 12:16 -0500, Monkeyden wrote: > Does anyone know of an OSS log file reporting tool? We're using a very old > version of WebTrends, which usually works fine (but sometimes not). MGMT > doesn't want to "pony up" so, well, you know. Was hoping that Apache had > something. Mon

Re: [FRIDAY/OT] Access Log file reporting tools

2006-12-01 Thread Wendy Smoak
On 12/1/06, Monkeyden <[EMAIL PROTECTED]> wrote: I was referring to web server access log files, by which to generate traffic reports. I looked at Chainsaw but it's basically just a log file viewer. I need something that will process, and report on, a 10 million line access.log file. So... Ap

Re: [FRIDAY/OT] Access Log file reporting tools

2006-12-01 Thread Monkeyden
I was referring to web server access log files, by which to generate traffic reports. I looked at Chainsaw but it's basically just a log file viewer. I need something that will process, and report on, a 10 million line access.log file. On 12/1/06, Wendy Smoak <[EMAIL PROTECTED]> wrote: On 12/

Re: [s2] Simple Tag Question and

2006-12-01 Thread Mark Menard
On 12/1/06 12:01 PM, "Don Brown" <[EMAIL PROTECTED]> wrote: > Well, I had some free time (holding my new son to let mom get some > sleep) and figured everyone deserved at least a reply. Yay for > GMail's search. > > Anyways, cool, thanks for the update. I don't know of a better tag, > but we ar

Re: [FRIDAY/OT] Access Log file reporting tools

2006-12-01 Thread Wendy Smoak
On 12/1/06, Monkeyden <[EMAIL PROTECTED]> wrote: Does anyone know of an OSS log file reporting tool? We're using a very old version of WebTrends, which usually works fine (but sometimes not). MGMT doesn't want to "pony up" so, well, you know. Was hoping that Apache had something. What sort o

[FRIDAY/OT] Access Log file reporting tools

2006-12-01 Thread Monkeyden
Does anyone know of an OSS log file reporting tool? We're using a very old version of WebTrends, which usually works fine (but sometimes not). MGMT doesn't want to "pony up" so, well, you know. Was hoping that Apache had something.

Re: [s2] XWorkList--multidimensional arrays?

2006-12-01 Thread Don Brown
I don't see why not...let us know what you find out. Don On 12/1/06, Dave Newton <[EMAIL PROTECTED]> wrote: Hi, Will XWorkList automagically do the right thing for a 2D array? Uh... just noticed the docs say it's deprecated; would the S2 cookbook recipe now just use an ArrayList anyway? I ha

Re: [struts2]Provider org.apache.xalan.processor.TransformerFactoryImpl not found

2006-12-01 Thread Don Brown
What Java version and application server are you using? Don On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote: Hi guys, I am study Struts2. When I run struts-blank.war, I get some error trace. I google internet but get nothing to solve this. Who can help me ? Thanks. javax.xml.transform.Tran

Re: Port to sar?

2006-12-01 Thread Don Brown
If you don't get any replies for Struts 2, google for webwork 2 as the code is very similar. Don On 12/1/06, Martin Gainty <[EMAIL PROTECTED]> wrote: Good Morning Everyone If someone is interested in deploying Struts2 but is absolutely dedicated to JRun 4 Appserver Is/Are there any deploys av

Re: [s2] Simple Tag Question and

2006-12-01 Thread Don Brown
Well, I had some free time (holding my new son to let mom get some sleep) and figured everyone deserved at least a reply. Yay for GMail's search. Anyways, cool, thanks for the update. I don't know of a better tag, but we are always open for a patch... :) Don On 12/1/06, Mark Menard <[EMAIL PR

[struts2]Provider org.apache.xalan.processor.TransformerFactoryImpl not found

2006-12-01 Thread zhaoren liu
Hi guys, I am study Struts2. When I run struts-blank.war, I get some error trace. I google internet but get nothing to solve this. Who can help me ? Thanks. javax.xml.transform.TransformerFactoryConfigurationError: Provider org.apache.xalan.processor.TransformerFactoryImpl not found jav

Re: Can't check out source code from struts repository

2006-12-01 Thread zhaoren liu
1.3.1 . I can visit Springframework. On 12/2/06, zhaoren liu <[EMAIL PROTECTED]> wrote: How to look version of my subversion? Thanks On 12/1/06, P Y <[EMAIL PROTECTED]> wrote: > > what version of snv are you using? > > > On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote: > > Hi Wdndy, > > > >

Re: Can't check out source code from struts repository

2006-12-01 Thread zhaoren liu
How to look version of my subversion? Thanks On 12/1/06, P Y <[EMAIL PROTECTED]> wrote: what version of snv are you using? On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote: > Hi Wdndy, > > I can browser the http://svn.apache.org/repos/asf/struts/current . And I > have tried 'https', but it d

Re: Can't check out source code from struts repository

2006-12-01 Thread P Y
what version of snv are you using? On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote: Hi Wdndy, I can browser the http://svn.apache.org/repos/asf/struts/current . And I have tried 'https', but it doesn't work. It's puzzled. I will try again. Thanks On 12/1/06, Wendy Smoak <[EMAIL PROTECTED]>

Re: Can't check out source code from struts repository

2006-12-01 Thread zhaoren liu
Hi Wdndy, I can browser the http://svn.apache.org/repos/asf/struts/current . And I have tried 'https', but it doesn't work. It's puzzled. I will try again. Thanks On 12/1/06, Wendy Smoak <[EMAIL PROTECTED]> wrote: On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote: > I can't get source code fr

Re: CRUD

2006-12-01 Thread Mark Menard
On 12/1/06 10:51 AM, "Juan Espinosa" <[EMAIL PROTECTED]> wrote: > All that is working ok but i cant get the validation working because every > customer has its validation logic, i want to know if there is a way to > validate this object programaticaly-..i dont want to create an action > for

Re: Can't check out source code from struts repository

2006-12-01 Thread Wendy Smoak
On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote: I can't get source code from Struts source code repository in the past months. Now I also can't get any according to the instruction on the struts homepage . I guessed that a network error in the past. But this error is exists all the time. Plea

Re: Can't check out source code from struts repository

2006-12-01 Thread zhaoren liu
Help me , please. Thanks very much. ZHaoren On 12/1/06, zhaoren liu <[EMAIL PROTECTED]> wrote: Hi, guys I can't get source code from Struts source code repository in the past months. Now I also can't get any according to the instruction on the struts homepage . I guessed that a network error

[s2] XWorkList--multidimensional arrays?

2006-12-01 Thread Dave Newton
Hi, Will XWorkList automagically do the right thing for a 2D array? Uh... just noticed the docs say it's deprecated; would the S2 cookbook recipe now just use an ArrayList anyway? I have a list of data a[0][0], a[1][0], a[2][0] and I'd like to be able to [optionally] add an a[0][1] say, and an a

Re: [Struts2] problem with links and Firefox

2006-12-01 Thread Sébastien LABEY
Sorry, I forgot to post that I found the mistake, a few days after my first post and my holidays... I made an error in the action, just one letter wrong ("accueil" and "acceuil") and this was redirected to the "default" action... whatever, thanks for your answer Sebastien On 12/1/06, Don Brown

CRUD

2006-12-01 Thread Juan Espinosa
Hi to all im making an application in struts2 where you can create diferrent types of customer I have two action the first one where you select the customer type you want to create, when you select the customer type i redirect to the correct view, to create the customer (i store in a session variab

Can't check out source code from struts repository

2006-12-01 Thread zhaoren liu
Hi, guys I can't get source code from Struts source code repository in the past months. Now I also can't get any according to the instruction on the struts homepage . I guessed that a network error in the past. But this error is exists all the time. Please tell me whether you can check out normal

[Non Struts] - Query Building Tool

2006-12-01 Thread Arevalo, Cesar \(GE Comm Fin, non-ge\)
Hi All, This is not a question about Struts or Java at all. But it might :-) Here at work I have been assigned the creation of a tool with a nice Web GUI so that a non technical user can create filters for reports we are making. This of course means that the nice GUI is a Query Building Tool that

Port to sar?

2006-12-01 Thread Martin Gainty
Good Morning Everyone If someone is interested in deploying Struts2 but is absolutely dedicated to JRun 4 Appserver Is/Are there any deploys available for Struts 2 to build JRun sars? (does'nt appear to be too difficult a task but I was wondering if anyone has been down that road)? Thanks, M-

Re: [s2] Simple Tag Question and

2006-12-01 Thread Mark Menard
On 12/1/06 3:21 AM, "Don Brown" <[EMAIL PROTECTED]> wrote: > > On 8/30/06, Mark Menard <[EMAIL PROTECTED]> wrote: >> Is this following possible? >> >> >> >> >> >> >> >> >> >> If it isn't how do you change the value of something on the value stack once >> you are either into a JSP o

Re: Struts 2 and passing data using interceptors

2006-12-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mark, Mark Menard wrote: > On 11/30/06 7:45 PM, "Christopher Schultz" <[EMAIL PROTECTED]> > wrote: >> Sorry for poking my nose in, but wouldn't this be horrendously >> non-threadsafe? > > No problem. If your thinking of Actions from the perspective o

[OT] RE: [Struts2] Tiles: TLD location.

2006-12-01 Thread Dave Newton
From: David H. DeWolf [mailto:[EMAIL PROTECTED] On Behalf Of David H. > No worries, I just created it a week or so ago. I think that you > submitted this before that ;) *lol* Usually I'm just oblivious; nice to know I wasn't for once! ;) Dave --

Re: [Struts2] Tiles: TLD location.

2006-12-01 Thread David H. DeWolf
No worries, I just created it a week or so ago. I think that you submitted this before that ;) Dave Newton wrote: From: Don Brown [mailto:[EMAIL PROTECTED] On 10/12/06, Dave Newton <[EMAIL PROTECTED]> wrote: (For future reference, what component should I have ticketed this under? I wasn't su

RE: [s2] 1130 nightly java 1.4 FilterDispatcher startup error

2006-12-01 Thread Dave Newton
Anything? Is this going to end up being one of those things retro won't handle because of the 1.5-specific ThreadLocal call? From: Dave Newton [mailto:[EMAIL PROTECTED] > Subject: [s2] 1130 nightly java 1.4 FilterDispatcher startup error > > Could not load user defined filter in web.xml: > org.a

RE: [Struts2] Tiles: TLD location.

2006-12-01 Thread Dave Newton
From: Don Brown [mailto:[EMAIL PROTECTED] > On 10/12/06, Dave Newton <[EMAIL PROTECTED]> wrote: >> (For future reference, what component should I have ticketed >> this under? I wasn't sure so I put "unknown," sorry!) > > Use "Plugins". Hmm, you'd think I'd have thought of that, huh :/ Dave

RE: How to get a dynaform in the Action class ?

2006-12-01 Thread Dave Newton
From: Thomas Thomas [mailto:[EMAIL PROTECTED] > I don't know if I need to choose an ActionForm or DynaActionForm for > the login page. When do u choose to make it a DynaActionForm ? What's > the advantage of it. No code; it's declarative. Dave --

[s2] s:textfield id rendering issue

2006-12-01 Thread Dave Newton
Hi, I'm using array notation in an s:textfield value attribute. The name renders properly, the id is being rendered all funky with the index value un-parsed and the various EL prefixes still in there, so it looks something like exdata_[%{#status.index}]__foo. I was following the guidelines in the

Re: Parameters not being set on Action in Struts 2

2006-12-01 Thread Ted Husted
On 12/1/06, Tarek Nabil <[EMAIL PROTECTED]> wrote: I'm open to any suggestions on how to get to the bottom of this issue. Maybe it's this * http://forums.opensymphony.com/thread.jspa?messageID=94747𗈛 The sample was testing GET but not POST. -Ted.

RE: Parameters not being set on Action in Struts 2

2006-12-01 Thread Tarek Nabil
Thanks Ted. This is getting interesting. I was really surprised that it worked for you, I couldn't even wait til the weekend is over. On my extremely slow laptop at home, I went and downloaded Tomcat 5.5.20 and Struts 2.0.1, and tried it. Surprisingly, it DOES work! I've been trying this fro

Re: [s2] Simple Tag Question and

2006-12-01 Thread Don Brown
Why do you need to modify? What about just pushing something else that effectively overrides the existing value? Don On 8/30/06, Mark Menard <[EMAIL PROTECTED]> wrote: Is this following possible? If it isn't how do you change the value of something on the value stack once you

Re: Struts 2 and passing data using interceptors

2006-12-01 Thread fahlen
Thank you all for your replies! They have been very helpful. I'm happy to have found such an active forum. Thanks again. -- View this message in context: http://www.nabble.com/Struts-2-and-passing-data-using-interceptors-tf2734105.html#a7634983 Sent from the Struts - User mailing list archive a

Re: [Struts 2][Sitemesh] how do you use org.apache.struts2.sitemesh.TemplatePageFilter

2006-12-01 Thread Don Brown
This is so Struts can support both Velocity and Freemarker with Sitemesh. The end user shouldn't have to ever see it. Don On 9/27/06, Garner Shawn <[EMAIL PROTECTED]> wrote: Can somebody show me an implementation of this class? I'm not sure what I'm suppose to do with the abstract method. Sha

Re: [Struts 2] strange behavior on s:url

2006-12-01 Thread Don Brown
Nope...is this still a problem? Don On 9/27/06, Garner Shawn <[EMAIL PROTECTED]> wrote: I'm seeing some kind of inconsistent rendering and I don't know why: Home | Products renders as Home | Products Any help? - To

Re: [Struts2] problem with links and Firefox

2006-12-01 Thread Don Brown
That is strange. Perhaps a Firefox thing? What happens when you try other browsers? Don On 9/28/06, Labey Sébastien <[EMAIL PROTECTED]> wrote: Hi, I have a strange problem : I have 2 links in my page to change the locale. The "english" and the "french" link are not build the same way (for t

List box using ArrayList objects.

2006-12-01 Thread Tamilselvan Radha Krishnan
Hi All, I've an ArrayList that contains EmployeeID String objects. I need to show the List box from this ArrayList with List value and Key being the same EmployeeID. Any sample code would be much helpful. Regards Tamil _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

Re: [Struts2] Tiles: TLD location.

2006-12-01 Thread Don Brown
On 10/12/06, Dave Newton <[EMAIL PROTECTED]> wrote: From: Don Brown [mailto:[EMAIL PROTECTED] > Hm..when extracting tiles into a plugin, we could have misplaced the > TLD. Add a JIRA ticket for the issue so we don't forget it. Done. (For future reference, what component should I have ticketed t

Re: Problem loading struts configuration in a shared web hosting

2006-12-01 Thread Don Brown
Hmm...what happens when you put the struts.xml file in a jar instead? Also, recent changes, to be released in 2.0.2, allow you to write Struts apps with no XML at all, so perhaps that will also be an option. Don On 10/13/06, Juan Espinosa <[EMAIL PROTECTED]> wrote: Hi to all, I have a question

Re: [STRUTS2] XSLTResult ERROR

2006-12-01 Thread Don Brown
You need to include the protocol "request:". Therefore, it should look like: select="document('request:WEB-INF/pages/welcome.xml')/page" /> Don On 10/27/06, Kimus Linuxus <[EMAIL PROTECTED]> wrote: Hi, I'm using the xslt resut type and I cant use xsl:include, xsl:import, or document()! I