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...
Show off your group to the world. Share a photo of your group with us.

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 494 - 523 of 2669   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
494
I am trying to render XML on IE 6 client. stylesheet and xml work fine on server-side (i'm using Xalan), but i can't get it to work on client side from IE 6...
Eugene
zhenya_r
Offline Send Email
Nov 4, 2002
9:13 pm
495
I've had no problems, but then again, most of my transforms are server-side. For spaces, I always use &#160; You should have no problem then. Don...
Don Brown
mrdon42
Offline Send Email
Nov 4, 2002
9:18 pm
496
You should never have &nbsp; in your XML doc, do as Don suggests and use &#160;. As far as I know, the XML working group has never defined &nbsp; as valid XML....
Jeff Pennal
jeffpennal
Offline Send Email
Nov 5, 2002
8:03 am
497
Hi In my environment , i only have IE 4.0 . I can't upgrade that to IE 5.0 or 6.0 So how can i use struts - xsl ? Is there any patch available for IE 4.0 ? Is...
jwas@...
jwasj
Offline Send Email
Nov 5, 2002
8:11 am
498
You can use stxx (struts - xsl) with Netscape 1.0 if you'd like. Just do the transformation from XML to HTML on the server side and send that to the client...
Jeff Pennal
jeffpennal
Offline Send Email
Nov 5, 2002
8:13 am
499
yes, all the transforms will be server-side, the default type in stxx. This is how all the transforms in my application are. stxx supports any and every type...
Don Brown
mrdon42
Offline Send Email
Nov 5, 2002
8:13 am
500
If thats the case then why should i unneccessary converting the data to xml and then transforming it to html ? I can directly send the html to the client using...
jwas@...
jwasj
Offline Send Email
Nov 5, 2002
8:19 am
501
But then the caching of xsl in the client will not happen right ? That is one of the key feature of xsl , right ? Don Brown <mrdon@...> 11/05/02 01:44...
jwas@...
jwasj
Offline Send Email
Nov 5, 2002
8:21 am
502
Of course Jeff will probably answer this quicker than I but oh well. stxx is useful if 1) You want the data to be completely seperate from its presentation....
Don Brown
mrdon42
Offline Send Email
Nov 5, 2002
8:24 am
503
Actually, the caching only happens on the server side. The stylesheets are cached in a compiled form to speed up the transformations. Client side transforms...
Don Brown
mrdon42
Offline Send Email
Nov 5, 2002
8:26 am
504
I'm devloping an application ( less bandwidth ) . Here the client have less ( very less ) band width . Their main requirement in the performance and less band...
jwas@...
jwasj
Offline Send Email
Nov 5, 2002
8:38 am
505
Ok, to answer your questions... 1) This is something you will have to decide based on your architecture. Stxx is a very good solution for some problems, maybe...
Jeff Pennal
jeffpennal
Offline Send Email
Nov 5, 2002
8:44 am
506
... The point I made about less bandwidth. stxx and jsp will both deliver pages that take up the same amount of bandwidth. stxx with client side ...
Don Brown
mrdon42
Offline Send Email
Nov 5, 2002
8:45 am
507
... Actually, I've been using transforms with Mozilla pre 1.0. Couldn't tell you how far back tho, and I think you can do it with IE 5.0 but I could be wrong....
Don Brown
mrdon42
Offline Send Email
Nov 5, 2002
8:47 am
508
Thanks Don , Jeff we already finalised the architecture . stxx but your comments made me to re think about the architecture again . In my case there is no...
jwas@...
jwasj
Offline Send Email
Nov 5, 2002
8:54 am
509
As discussed before, you don't have a choice w/ IE 4.0. If it makes you feel better, my app uses stxx and server-side transforms and suffers little...
Don Brown
mrdon42
Offline Send Email
Nov 5, 2002
9:00 am
510
Dear list colleagues, Let me introduce myself: my name is Catalin Braescu and I work for Edison Online Service, a local online service from Romania (Eastern...
Catalin :: Braescu
cbraescu1
Offline Send Email
Nov 5, 2002
3:29 pm
511
Hello Catalin, While I would not want to critique the opinion of your engineer, who knows a lot more about your application than I do, I can say that you won't...
Jeff Pennal
jeffpennal
Offline Send Email
Nov 5, 2002
3:52 pm
512
Hi Don If I'm planning to use stxx then all my pages will be xsl and then how can I use OSCache ? For that I have to use those tag lib right ? Now no JSP :) ...
jwas@...
jwasj
Offline Send Email
Nov 6, 2002
2:51 am
513
OSCache can be used as two ways: page-level output caching (via filter) and jsp tag partial caching. With stxx, you can use full page-level output caching for...
Don Brown
mrdon42
Offline Send Email
Nov 6, 2002
2:55 am
514
Hi! I am trying to extend an application from struts to stxx. The struts part is working so far, but trying to use the transform option brings up the following...
Christian Goutrie
goutrie@...
Send Email
Nov 6, 2002
11:05 am
515
Yes, stxx does use a special dtd to get around the fact that struts is not very flexible when it comes to modifying the struts-config.xml file. If you are...
Jeff Pennal
jeffpennal
Offline Send Email
Nov 6, 2002
11:10 am
516
Hi, From the posting in this group I have seen that for now there is one way to do validation in in FormBean.validate method. Does anybody tried to do...
Elena Neroslavskaya
lenisha
Offline Send Email
Nov 6, 2002
3:22 pm
517
Hi, Is there any possibility to split Resources in runtime and attach to XML document only resources that relevant to the page? ( for example have some...
Elena Neroslavskaya
lenisha
Offline Send Email
Nov 7, 2002
3:39 pm
518
Unfortunately no, or at least I can't think of a fast way. What I did to solve this was to write an ant task that will search and replace all my <xsl:value-of...
Don Brown
mrdon42
Offline Send Email
Nov 7, 2002
5:59 pm
519
It would be great if you could send me or publish here the code !!! Could you ? Thank you very much ! Elena Neroslavskaya lenisha@... ... did to ... ...
Elena Neroslavskaya
lenisha
Offline Send Email
Nov 7, 2002
8:19 pm
520
I hacked the optional module of ant itself. There is a task, translate, that almost did what I wanted, but only accepted delimiters of one character as well...
Don Brown
mrdon42
Offline Send Email
Nov 7, 2002
8:57 pm
521
Hi, I have a newbie question ? How to include validation error messages to the page. I have the following page structure: 1) Item Creation form with textbox...
Elena Neroslavskaya
lenisha
Offline Send Email
Nov 8, 2002
3:13 am
522
Hi I have a page like this . Three files are included using IFrame . If I want to use stxx , then all the included files will become xsl . But still I can...
jwas@...
jwasj
Offline Send Email
Nov 8, 2002
8:24 am
523
What you should be able to change the "src" attribute of your iFrame tag to point to a server action. For example, instead of <iframe id="second"...
Jeff Pennal
jeffpennal
Offline Send Email
Nov 8, 2002
8:49 am
Messages 494 - 523 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