Hi, Is there a way of passing an FOP userconfig.xml to the CachedFOPTransformer? I couldn't find any resource or how-to so I implemented my own solution. My...
Hi all, I trying to use stxx as plugin for struts to transform xml files with xslt. Want I want is to include stxx in an allready working application. The...
Hi, My current program uses jsp:include all over the place. Is it possible to use jsp:include to include a xml file converted using an stxx action? I did soms...
Hi Guys, I am Swaroop, working a SE in a medium sized company. we use struts in our ERP Project.since i am new to struts ,i would like to make a request to you...
The Struts site - http://struts.apache.org/struts-action - has plenty of tutorials, articles and a detailed user guide. Stxx, the subject of this mailing...
Hi, I am not sure if this is the right group to post this to, please feel free to redirect me to another. I need to know this quick, will papreciate if someone...
Good question; it might be possible. I know stxx intercepts include calls, but I don't know if a JSP include would be ran through the ActionServlet. Try it ...
Hi all, Am new to STXX and am using stxx1.3 with struts1.0. My flow of web app is like, From the Html page am just calling the index.do and am getting the...
Check the application server log files to see if there was a problem loading stxx. Also, any reason you are using Struts 1.0? That release is almost four ...
Hello everyone, I am in need of an XSL transformation technology that will integrate well with STRUTS and in my research I stumbled upon STXX, which is exactly...
Building stxx from an IDE might be tricky, because certain parts have to be built with certain versions of Struts. If your app is Struts 1.1+, just include ...
Hi there, we have been using successfully using STXX for quite some time now. Because our webapp gets bigger and bigger we really need split it into separate...
Hi there, we have been using successfully using STXX for quite some time now. Because our webapp gets bigger and bigger we really need split it into separate...
I've been using stxx with Struts modules since I joined the project over three years ago without problems. It sounds like your issues are with Struts modules...
Hi Don, sorry for double posting yesterday, didn't expect the list to be moderated. :-) Anyhow, got the struts modules with STXX to work now, don't know what ...
... Each module gets its own stxx plugin, and therefore its own pipeline definitions, however yes, the properties are global. ... I use a "msg" request...
Hi all, Can anyone tell me how to add HTML Form fields without changing the java files?. Is there any open Source API for developing the Dynamic Forms?.Is it...
This can be done within struts, regardless of whether you use stxx or not. Look for documentation on DynaValidatorForm, which allows you to define map-backed...
Hi Dude.. It is posible in STRUTS..... Follow this link and get more information http://www.roseindia.net/struts/DynaActionForm.shtml Bharat Athreya. lalitha...
Hi STXX users, we have an error when we serialize JDOM objects and need to display the XML document using the debug=true request parameter. Both, IE6 and ...
You've probably created your JDOM objects with a parser that had namespaces turned on. In the application I use stxx with, I can use ?debug=true without any...
The JDOM object is created during runtime using something like Element component = new Element("page"); so no parser involved. This element then has several...
Interesting, I wonder if Java 5 changes anything. It sounds like a good solution would be for the transformer to accept a "enableNamespaces" setting. If you...
I'm using the XMLForm example of the example-plugin war file . I was trying to to printout the XML of the DOMForm in the RequestExampleAction as shown below if...
IIRC, the XMLForm creates a blank document so that nodes can be dynamically created. Are you saying the example is broken or that your modifications aren't...
The example is not broken It is working I'm trying to get the modified XML Document of the XMLForm on submit of the page. All I'm trying to do is print out...