Hi Don, I have a few questions about i18n in stxx. We're using several message resources in our app, and I don't know how to tell stxx to load a particular...
... Sounds like this bug: http://sourceforge.net/tracker/index.php?func=detail&aid=930280&group_id=48439&atid=453089 I don't use multiple resource files, so...
The difference is when you deploy as a war, the application may not actually be unzipped on disk, as Tomcat does, so when stxx looks for a file on the...
Hello, I need an advise please on how to plug the stxx functionality in a larger framework built with struts. The home made framework in use by a few projects...
You don't need to, and in fact shouldn't, extend StxxAction directly. I refactored all the code out into a StxxHelper class. StxxAction, actually, just...
Dear Stxx Mailing List, I have numerous xsl stylesheets that I use within my web application. However, these xsl stylesheets use relative paths to include one...
You could try to turn resolveFromTemplatePath to "false" - http://stxx.sourceforge.net/transformers/CachedXSLTransformer.html That will modify how stxx...
Hi, The result I'm receiving from backend is the xml string. What is the best way to bypass the DOMifcation of this xml in StXX. I thought that I could save in...
[responding on the stxx user list] Hmm...that's interesting. Why would something other than an ActionError be in your action errors? ActionError was...
Well, you could create your own transformer that extends the CachedXSLTransformer to not call the document builder at all, but send the sax events yourself...
Yeah, ok, I see the problem. Unfortunately, I don't think it can be fixed without removing support for Struts 1.0. Anyone else see a way around it? Don...
Hello, I am new to XSLT and trying out stxx-1.3-example.war. Environment: WSAD-WebSphere & Windows Java version: 1.3.1 First problem I faced was is using...
The sample jsp in the example is as given below <%@ page contentType="text/html" %> <%@ taglib prefix="c" uri="/WEB-INF/c.tld" %> <%@ taglib prefix="x"...
Hello Don, When you are planning to incorporate Simple XML Pipeline (http://www.twdata.org/pipeline/) inside stxx ? Is it possible in current Stxx do XML...
Well, I thought about using it as the core for stxx 2.0, but then I realized I'd have to add matchers and selectors to make the pipeline flexible, and then I'd...
So you are not embedding this project to Stxx 2.0 ? And what about XML Filtering, could it be achieved in current Stxx in elegant way ? One way I see in stxx -...
No, I probably won't use Simple XML Pipeline for stxx 2.0. Currently, I use it in one application as the Portal server's URL rewriting engine, and other...
That would be a bug, however, that code should be identical to what is used in Struts 1.2+ and Cocoon. Could you try something like that w/ Struts action...
Hi, I am new to XSL, Now i have to convert the existing project (Struts + jsp) into XSL compliance (Struts + XSL).Any suggestions to implement this. Thank you ...
Ideally, you shouldn't have to change your actions. You should be able to modify your struts config to use stxx, and start writing xslt's. Go through the...
Hi, Can anybody guide me bout what all need to be done to tune the performance of STXX based application. Please provide me some links or resources wherein I...
The two main aspects of stxx to take a look at are: 1. Document building - ensure stxx isn't generating more XML than you really need 2. XSL caching - use...