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...
My application was using stxx-1.3.1.jar, sometimes (NOT always) I notice my action getting executed twice (2 threads)..... The basic flow of my application was...
I've heard of this issue with Struts, as stxx itself certainly isn't spawning any threads. Search the Struts user group mailing list archives for the issue. ...
i m using stxx 1.3.1 with struts 1.2.7 i don't know what entry we have to done in pipeline-config.xml file and structs-config.xml file plz some body give me...
I'm not sure what the questions is... The example should show how to configure the Struts configuration file and the pipeline file. Is there something that is...
Hi, Sorry but my english is very bad.. :P I have a problem in PDF to resolve relative URI of images files. I use Struts 1.2.4 ,Stxx 1.3, and JBoss 3.2.7...
Hello: I recently downloaded STXX 1.3 and 1.3.1 and noticed the JDOM library used is v0.9 This is scary because we use JDOM 1.0 extensively and the API for XML...
Hello all: Running into this same problem. Did this ever get resolved? I would be willing to submit a patch if you can provide some pointers. What sort of API...
Nothing fancy, just have your patch match the current conventions and style of the code. You can post the patch here or open a ticket and attach it there....
Hmm...I thought stxx 1.3.1 did use JDOM 1.0...oh, I see it used beta 10. That should be pretty close to 1.0, right? Well, again, if you send me a patch or at...
I am facing a problem. The html page produced from xml+xsl shows duplicate results. Can someone please tell me why is it happening so or how to solve this...
What do you mean duplicate results? Two <html> trees in the same page? Repeated items? Please post more information of your configuration and XSLT. Don...
Here are the xml and xsl files header.xml <?xml version="1.0" encoding="UTF-8"?> <users> <user> <username>Jack Harry</username> </user> <user> <username>Chris...
Don The generated html shows two <body> trees, NOT two <html> trees. Here are the xml and xsl files header.xml <?xml version="1.0" encoding="UTF-8"?> <users> ...
How are you feeding the XML file to stxx? Append ?debug=true to the url for that page, and see the XML that is actually being used for the transformation. My...
When I submit the form with correct usrename and password everything goes right. But when either username or password or both are missing, it again prompts...
Don Thanks for your reply. The problem is solved. But now there is another problem. Now it does not show the error messages when the form is submitted with...
This sounds like a Struts validator question. You might try the user list to get some help. My guess is you don't have the required validator set for each...
Hi, I have a problem where I need to dynamically build page layouts from a database. XSLT transformations will be stored in a database as well as the ...
While you could create your own TransformerHandler to handle this case, I'd suggest using Sitemesh instead. It is much better suited for layout manipulation....