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...
You should never have in your XML doc, do as Don suggests and use  . As far as I know, the XML working group has never defined as valid XML....
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...
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...
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...
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...
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...
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....
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...
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...
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...
... 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....
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...
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...
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...
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 :) ...
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...
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@...
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...
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...
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...
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...
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 ... ...
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...
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...
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...