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 241 - 270 of 2669   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
241
Hi, About a year ago we implemented our own XML/XSL extension to struts using Xalan directly to perform the transformation. We're now investigating whether we...
oreillyjf
Offline Send Email
Aug 2, 2002
8:59 am
242
You can keep one centralized action class which calls the remaining action files (actionPerformed method) one after another and use the following stxx ...
Ramachandran, Sundara...
suryan_1975
Offline Send Email
Aug 2, 2002
9:31 am
243
Well, I guess this isn't really a new idea... and as Jeff can testify, I have been harping on it for what seems like months now. I have tried to implement it...
brianjfarrar
Offline Send Email
Aug 2, 2002
4:17 pm
244
For my project, I use sitemesh to handle templating (common menus, header, footer, etc). The advantage here is my transforms are smaller and my action don't...
mrdon42
Offline Send Email
Aug 2, 2002
6:21 pm
245
Brian, ... For common tasks, I import XSL templates just like I did back in the ASP days. For framework provided help, I think our answer is a more flexible...
mrdon42
Offline Send Email
Aug 2, 2002
6:44 pm
246
Well, I don't know about you all, but my struts-config.xml file is getting pretty damn long. I wanted an easy way to work with it without having to scroll all...
Don Brown
mrdon42
Offline Send Email
Aug 3, 2002
12:32 am
247
Hi Don, Does sitemesh cater for changes to the non-content areas (e.g. menus/header/footer)? For example, if the menu shown depends on the role of the user....
oreillyjf
Offline Send Email
Aug 3, 2002
10:49 am
248
Since you can use jsp in those areas, you can do anything you want. For example, in my app, there is an administrator menu that is hidden unless the user is...
Don Brown
mrdon42
Offline Send Email
Aug 3, 2002
8:55 pm
249
... As usual: very, very few and I'm not sure if I would call them drawbacks as much as a difference in requirements. ... Unfortunately, I consider this to be...
brianjfarrar
Offline Send Email
Aug 5, 2002
9:00 am
250
... In my first reply, I couldn't think of a coherent brief way to express the "drawbacks" or the differences in requirements that my app has which perhaps...
brianjfarrar
Offline Send Email
Aug 5, 2002
10:51 am
251
... Well, nothing fancy here: HashSet errors = new HashSet(); String name = request.getParameter("name"); String password = request.getParameter("password"); ...
Don Brown
mrdon42
Offline Send Email
Aug 5, 2002
8:12 pm
252
You raise a very good point. My method sucks for multi-part forms and infact, within my application where I use multipart forms, I don't use it and perform...
Don Brown
mrdon42
Offline Send Email
Aug 5, 2002
8:25 pm
253
Hello Mr. Don, ... Hmmm...what if you have 30 incoming parameters? Or even worse you have an undetermined number of form controls, if the user buys 5 products...
brianjfarrar
Offline Send Email
Aug 6, 2002
8:37 am
254
... Nope, I take it back. I think with Mr. Don's ever wise counsel, "deluxe error handling" can be implemented by simply: not using automagic form validation....
brianjfarrar
Offline Send Email
Aug 6, 2002
1:27 pm
255
Why not forward back to the editItem.do action after a failed save? In the failed save, you attach an element containing an xml representation of the invalid...
Don Brown
mrdon42
Offline Send Email
Aug 6, 2002
6:12 pm
256
... No good reason at all. Absolutely, this is a better way. Eliminates saving stuff to the session which is rather clumsy. The bad reason I'm not doing it...
brianjfarrar
Offline Send Email
Aug 7, 2002
7:21 am
257
Hi, I need to implement an email function. The email content is composed by a few xml files. And the email format is using xsl to do the transformation. Seems...
toffeemak
Offline Send Email
Aug 9, 2002
10:21 am
258
Hi Fanny, If I read your email correctly, then you want to take XML and use XSL to transform it into a email message of the style RFC-822/2045. Then instead of...
Jeff Pennal
jeffpennal
Offline Send Email
Aug 9, 2002
4:39 pm
259
Hi Jeff, Thanks a lot for your reply. You read my email correctly. I understand that I need to write my own RenderFactory to output the email to SMTP server....
toffeemak
Offline Send Email
Aug 10, 2002
1:34 am
260
If I could jump in here...You're trying to stuff a lot into that transform. If you use the xsl file for the email transform then there is no way to specify...
Don Brown
mrdon42
Offline Send Email
Aug 10, 2002
2:26 am
261
The opencode website doesn't mention anything about licensing--some might construe this as meaning that stxx is or may become restricted in the future, and...
GlenMazza
Offline Send Email
Aug 14, 2002
1:41 pm
262
Hello, I'm new to stxx--having just learned that Struts' ActionForms are limited to JSP output--and am looking at the example XSLT transformation (presumably...
GlenMazza
Offline Send Email
Aug 14, 2002
2:00 pm
263
Hi Glen, You can check out the stxx examples for a demo of how to perform a PDF transformation. The particular <forward> block would look like this: <action...
Jeff Pennal
jeffpennal
Offline Send Email
Aug 14, 2002
4:31 pm
264
stxx is licensed under the same Apache license that struts uses. I'll make a not of it on the stxx web page. ... -- Jeff Pennal...
Jeff Pennal
jeffpennal
Offline Send Email
Aug 14, 2002
4:31 pm
265
Jeff, Have you tried to stress test some example written using stxx? I wrote a sample application that generates about 300Kb of xml from database data and...
zhenya_r
Offline Send Email
Aug 14, 2002
8:46 pm
266
If you feel up to it, try putting this on line 187 before it throws the exception: ex.printStackTrace(); From that, you should at least get the line number the...
Don Brown
mrdon42
Offline Send Email
Aug 14, 2002
9:14 pm
267
Here's the stack trace: Wed Aug 14 17:29:09 EDT 2002:<I> <WebAppServletContext-xmltest> action: Looking for Action instance for class ...
zhenya_r
Offline Send Email
Aug 14, 2002
9:45 pm
268
Boy oh boy... My guess to the memory consumption problem is this: On the first request of a stylesheet, it is compiled into a Template. That Template is...
Don Brown
mrdon42
Offline Send Email
Aug 14, 2002
9:59 pm
269
Eugene, just to narrow down the culprit for this problem, try running this simple bench marking tool http://www.orionserver.com/benchmarks/httpbench.exe It's a...
Jeff Pennal
jeffpennal
Offline Send Email
Aug 14, 2002
10:10 pm
270
Jeff, Can you please let me know how to get stxx1_0 branch of stxx from CVS. I have cvs command line client, but not sure how to use it to get stxx. I tried...
zhenya_r
Offline Send Email
Aug 14, 2002
11:38 pm
Messages 241 - 270 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