Search the web
Sign In
New User? Sign Up
struts-xsl · Struts for Transforming XML with XSL
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2616 - 2645 of 2669   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2616
I want to set index.do as welcome-file. I have defined it in web.xml as <welcome-file-list> <welcome-file>index.do</welcome-file> </welcome-file-list> but it...
joe_bashir
Offline Send Email
May 4, 2006
9:28 am
2617
This is a known issue with many web containers, particularly older ones: http://sunsolve.sun.com/search/document.do?assetkey=1-9-83094 HTH, Don...
Don Brown
mrdon42
Online Now Send Email
May 4, 2006
5:52 pm
2618
Hi ! I am developing a web application using a native XML database. I use XQuery to query the database. I thougt about different ways for a re- usable design. ...
juettnla
Offline Send Email
May 8, 2006
7:29 pm
2619
I don't know if anyone doing that in stxx, but I do in Cocoon, which is the granddaddy of XML pipeline frameworks: http://demo.exist-db.org/examples.xml You...
Don Brown
mrdon42
Online Now Send Email
May 8, 2006
8:36 pm
2620
Hi, Please can anyone provide me with an example of Stxx with Struts 1.1? Thanks in Advance! Rajesh...
Rajesh Sundar
rajeshsun69
Offline Send Email
Jun 19, 2006
4:55 pm
2621
Stxx ships with an example for Struts 1.1, the one with the suffix "-plugin". BTW, I accidently deleted your two previous emails when I was clearing out spam,...
Don Brown
mrdon42
Online Now Send Email
Jun 19, 2006
4:57 pm
2622
Hi, Please can any one tell me the reason for this exception? com.oroad.stxx.transform.TransformerException: The type of transformation cannot be found: dom at...
Rajesh Sundar
rajeshsun69
Offline Send Email
Jun 20, 2006
9:58 am
2623
Hi, I found the reason for this exception.I have to uncomment the dom transform in the stxx.properties. Its interesting as i keep learning stxx. Regards, ...
Rajesh Sundar
rajeshsun69
Offline Send Email
Jun 20, 2006
11:01 am
2624
Hi, This is my understanding.Please correct me if im wrong. <pipeline match="jsp/*.dox"> <display-name>JSP/JSTL</display-name> <description>Creates DOM and...
Rajesh Sundar
rajeshsun69
Offline Send Email
Jun 20, 2006
11:26 am
2625
I have deployed the stxx-1.3.1-plugin-example.war and tried to run the application using IE browser , I am getting lot of exceptions , could anybody post the...
Viswamohan
ravi_brain
Offline Send Email
Jun 20, 2006
3:01 pm
2626
i am here by attaching the code replicating the example of stxx struts-config.xml <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts...
Viswamohan
ravi_brain
Offline Send Email
Jun 20, 2006
3:01 pm
2627
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:import href="common/addressBook.xsl" /> <xsl:output method="html" /> ...
Viswamohan
ravi_brain
Offline Send Email
Jun 20, 2006
3:47 pm
2628
The best way to troubleshoot this is request the page with "?debug=true" on the url, getting the XML. Then, apply the XSLT against the XML either in your IDE ...
Don Brown
mrdon42
Online Now Send Email
Jun 20, 2006
5:42 pm
2629
The example does work with Struts 1.1 and Tomcat. What exceptions are you seeing? Don...
Don Brown
mrdon42
Online Now Send Email
Jun 20, 2006
5:45 pm
2630
What happens is the XML that STXX creates is saved as a DOM in the request attributes. Then, you can access that DOM using JSTL's XML tags and transform it...
Don Brown
mrdon42
Online Now Send Email
Jun 20, 2006
5:48 pm
2631
can anyone plz tell me how to use custum validation in struts as i have to apply in my current application for some buisness rules....
nitinkshir
Offline Send Email
Jun 21, 2006
5:34 am
2632
Stxx doesn't deal with validations itself; that is part of Struts. That said, you will find that Struts Validation framework isn't very easy to use with stxx,...
Don Brown
mrdon42
Online Now Send Email
Jun 21, 2006
8:50 pm
2633
Hi, I was able to run Stxx successfully. Now i'm trying to do Stxx with Struts tiles.Is there any example for Stxx with Struts? Regards, Rajesh...
Rajesh Sundar
rajeshsun69
Offline Send Email
Jun 22, 2006
2:50 pm
2634
Tiles is tied to JSP, so I'm not sure how or even why you'd use it with Stxx. I've found Sitemesh to fulfill a similar goal, but with much less work and better...
Don Brown
mrdon42
Online Now Send Email
Jun 22, 2006
8:14 pm
2635
Don, I'm getting the jsp output using the Stxx. If i try to include the TilesPlugin of Struts1.1 in my struts- config.xml, Im getting the following error. -...
Rajesh Sundar
rajeshsun69
Offline Send Email
Jun 23, 2006
2:24 pm
2636
Hi, Very good examples are provided along with the Stxx zip file. I recommend you to deploy stxx-1.3.1-plugin-example.war in your server and run through it. ...
Rajesh Sundar
rajeshsun69
Offline Send Email
Jun 23, 2006
2:28 pm
2637
You need to use the StxxTilesRequestProcessor. IIRC, you need to put the Tiles plugin before the Stxx one, so Stxx knows to load the correct version of its ...
Don Brown
mrdon42
Online Now Send Email
Jun 23, 2006
4:16 pm
2638
Hi, Thank you very much for the reply. I did the way you mentioned and i don't get this error. If i try to insert a struts tiles insert tag inside the jsp, i'm...
Rajesh Sundar
rajeshsun69
Offline Send Email
Jun 24, 2006
5:46 pm
2639
What does your struts-config.xml look like? It looks like the tiles forward is somehow going to stxx. Are you sure that forward is using the correct tiles...
Don Brown
mrdon42
Online Now Send Email
Jun 25, 2006
4:44 am
2640
Don, My template.jsp looks like this. <body> <table class="tilestyle1"> <tr><td ><tiles:insert attribute="header"/></td></tr> <tr><td...
Rajesh Sundar
rajeshsun69
Offline Send Email
Jun 25, 2006
10:02 am
2641
Hi, Please can you tell me how did you do this?I'm thinking of using this to solve one of my question on using Stxx and tiles.Thought of giving the first path...
Rajesh Sundar
rajeshsun69
Offline Send Email
Jun 26, 2006
12:37 pm
2642
Hi, I am planing to learn Jakarta struts. Can any one please send me the required material & ebooks and also please suggest which books are good to learn...
rank n
rank_n
Offline Send Email
Jun 26, 2006
6:01 pm
2643
I'd recommend you ask the Struts user mailing list as you'll get better responses. The Struts website also has a good list of tutorials, books, and articles...
Don Brown
mrdon42
Online Now Send Email
Jun 26, 2006
6:55 pm
2644
Interesting...I've never used stxx within a Tile before, so I'm afraid I won't be of much help. When I stated stxx was compatible with Tiles, I meant the two ...
Don Brown
mrdon42
Online Now Send Email
Jun 26, 2006
7:13 pm
2645
Hi, I am planing to learn Jakarta struts. Can any one please send me the required material & ebooks and also please suggest which books are good to learn...
rank n
rank_n
Offline Send Email
Jun 27, 2006
2:04 pm
Messages 2616 - 2645 of 2669   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help