Search the web
Sign In
New User? Sign Up
struts-xsl · Struts for Transforming XML with XSL
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2582 - 2611 of 2669   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2582
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...
sivapr
Offline Send Email
Feb 16, 2006
7:29 pm
2583
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...
Don Brown
mrdon42
Offline Send Email
Feb 22, 2006
3:31 am
2584
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...
sivapr
Offline Send Email
Feb 23, 2006
9:23 pm
2585
Oh, well, that is what a Document object will print out, regardless of if it has children or not. :) To display it, you'll need to run it through a...
Don Brown
mrdon42
Offline Send Email
Feb 24, 2006
3:04 am
2586
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...
Thiruvengadam
cthiruvengadam
Offline Send Email
Mar 2, 2006
8:46 pm
2587
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. ...
Don Brown
mrdon42
Offline Send Email
Mar 2, 2006
8:48 pm
2588
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...
Arpan Khandelwal
arpan1982_mics
Offline Send Email
Mar 3, 2006
3:44 pm
2589
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...
Don Brown
mrdon42
Offline Send Email
Mar 3, 2006
5:48 pm
2590
thanks for reply i already see that example is it work with struts 1.2.7. When i write plugin tag in struts-config.xml then this error occers ...
arpan khandelwal
arpan1982_mics
Offline Send Email
Mar 4, 2006
8:40 am
2591
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...
darwinthedolphin28
darwinthedol...
Offline Send Email
Mar 6, 2006
5:35 pm
2592
You probably still need to put the full path in there, so perhaps you should insert the root in the XSL so that fop does see a full path. Don...
Don Brown
mrdon42
Offline Send Email
Mar 6, 2006
8:49 pm
2593
Looks like you are missing a dependency. There should be an xmlforms.jar, or something similar included in the release. Don...
Don Brown
mrdon42
Offline Send Email
Mar 6, 2006
8:50 pm
2594
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...
arielpartners
Offline Send Email
Mar 16, 2006
7:02 pm
2595
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...
arielpartners
Offline Send Email
Mar 16, 2006
7:03 pm
2596
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....
Don Brown
mrdon42
Offline Send Email
Mar 16, 2006
11:02 pm
2597
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...
Don Brown
mrdon42
Offline Send Email
Mar 16, 2006
11:04 pm
2598
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...
joe_bashir
Offline Send Email
Apr 4, 2006
3:02 pm
2599
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...
Don Brown
mrdon42
Offline Send Email
Apr 4, 2006
4:42 pm
2600
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...
joe_bashir
Offline Send Email
Apr 5, 2006
5:12 am
2601
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> ...
joe_bashir
Offline Send Email
Apr 5, 2006
7:03 am
2602
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...
Don Brown
mrdon42
Offline Send Email
Apr 5, 2006
5:16 pm
2603
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...
joe_bashir
Offline Send Email
Apr 9, 2006
12:28 pm
2604
Your input attribute has to point to an action, otherwise the XML won't be rebuilt. Don...
Don Brown
mrdon42
Offline Send Email
Apr 9, 2006
6:13 pm
2605
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...
joe_bashir
Offline Send Email
Apr 10, 2006
5:35 am
2606
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...
Don Brown
mrdon42
Offline Send Email
Apr 11, 2006
6:57 pm
2607
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 ...
seanogt
Offline Send Email
Apr 11, 2006
8:07 pm
2608
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....
Don Brown
mrdon42
Offline Send Email
Apr 11, 2006
8:28 pm
2609
hi all, can anyone give me a brief example which shows how i can create a simple application using stxx. thanks in advance Ankit...
Ankit Verma
ankitverma_mca
Offline Send Email
Apr 27, 2006
4:56 pm
2610
stxx comes with a simple example showing how it works. If any have any further questions, feel free to ask. Don...
Don Brown
mrdon42
Offline Send Email
Apr 27, 2006
4:59 pm
2611
Hi, i'm new with stxx and i need to find out if it is possible to process the same forward twice like this : 1st XSL Proc. 2nd XSL Proc. XML...
pierreluc_dupont
pierreluc_du...
Offline Send Email
Apr 28, 2006
6:24 pm
Messages 2582 - 2611 of 2669   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help