Hello, I have encountered the problem (looks like known one) with serving generated pdf files over SSL. IE gives a popup prompting if you want to save or open...
I'm assuming you mean adding a transformer parameter in stxx.properties. That sounds like a fine idea, just make sure to update the docs for it as well. Don...
... Don't forget to also set autoReloadTemplates to false as well. ... It depends on what you mean by "debug info". All that debug setting does is output a...
Ok, this is a bug in 1.3 because you are using a newer version of Struts that doesn't use ActionErrors, probably 1.2.4. I've fixed this in CVS, but it hasn't...
What do you think if we add couple more ways to build/serialize XML documents bypassing JDOM document saving ? 1) XML strings - in case if Action has already...
Sounds like a good idea. The trick will be handling them in the serializer portion. Currently, the document builder isn't as flexible as it could be, so I'll...
Please help me! I need to setup xsl file from Action class, but not from file "stxx- transform.xml". How can i do it? and is it possible in stxx? Thank you for...
Not sure what you mean; are you asking if you can use an XSL without specifically listing it stxx-pipelines.xml? If that's true, you can do it like so: -- ...
so i'trying to describe my problem. i have next code in stxx-transforms.xml <pipeline match="test/*.dox"> <transform type="html"> <param name="path"...
Is it that you want to be able to decide what XSL file to use from inside your Action? ... That means any time you forward to something that ends with ".dox"...
I found an issue when trying to use the xsl function document() with a parameter that of http://server.com/get.more.xml.data . I've traced the problem to the...
Please can anybody provide me some links for stxx examples. The one I downloaded along with stxx code from sourceforge.net is not working. I am new to stxx,...
Hi group, searching in the Internet I found two products for XML which incorporate a very robust debugger for XSL/XSLT, I would like you to see these products...
Hi, I am using stxx1.3. My « struts-config.xml" file contains the following lines : <action name="sovSiteForm" path="/sovSite" input="simple/sovSite.dox" ...
I've written an XSL meta template implementing struts html taglib (http://struts.apache.org/userGuide/struts-html.html)/ The idea is one should be able to use...
Hello! I need to generate pdf file from xml+xslt+xsl-fo document from struts based web application. I don't understan from i nedd to start :-( I worked with...
skomlena
skomlena@...
Jul 3, 2005 5:31 pm
2469
Very impressive! I think this would make a wonderful addition to stxx and look forward to seeing the code. Don...
Take a look at the PDF example that ships with stxx. It shows using the FOP transformer to render PDF's by transforming the stxx XML with an XSLT to create...
OK. Tnx. I find my self confused, because i tried to generate PDF files only with FOP :-( Tnx again :-)) Stanislav...
skomlena
skomlena@...
Jul 4, 2005 8:00 am
2472
Hello! I manage to generate pdf file from xml and xsl file. I'm using struts action to retrieve data from db (or form) and i need to "send" that retrieved data...
Stanislav
skomlena@...
Jul 7, 2005 12:37 pm
2473
Use the saveDocument() method to save the xml and have stxx include it in the generated xml. See the examples for more information. Don...
If I understand correctly: i write saveDocument() metod in struts Action after grabbing data from db (or form) and than inside generated xml use include...