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...
Show off your group to the world. Share a photo of your group with us.

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 1707 - 1738 of 2669   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1707
Yes sir. Here is the form declaration: <form enctype="multipart/form-data" action="projectDocuments.do" method="post" name="projectDocuments"> -Matt ... point....
m_berwald
Offline Send Email
Nov 2, 2003
5:50 pm
1708
Just for fun, post to an action that doesn't use stxx or better yet, an action in another module that doesn't use stxx. Don...
Don Brown
mrdon42
Offline Send Email
Nov 2, 2003
8:58 pm
1709
Also, if/when this doesn't work, can you post a full stack trace? It would make it easier to track this error down. Jeff...
Jeff Pennal
jeffpennal
Offline Send Email
Nov 3, 2003
10:44 am
1710
We finally got it working. Another guy in the office noticed that in the form bean, our file variable was set to a type string instead of FormFile. After...
m_berwald
Offline Send Email
Nov 3, 2003
10:39 pm
1711
Hi, I have a requirement for client side transformation in my application. Based on documentation , i changed stxx-pipelines.xml param tag to .. <param...
pash_n
Offline Send Email
Nov 4, 2003
2:56 pm
1712
Hi Guys , I am having a very unusual situation , my XML example: <Tplate> <Call AccountNumber="" Date="" Numb="1" name="CallDetail1"></Call> <Comments> ...
kpthottam
Offline Send Email
Nov 4, 2003
4:21 pm
1713
Hi Guys , Can someone point me to the class that copies the saved DOM , into a single DOM ? My guess is that while copying the CDATASection , it gets converted...
kpthottam
Offline Send Email
Nov 4, 2003
8:05 pm
1714
If you do a "view source", you should see xml with an processing directive to transform with the xsl. Don...
Don Brown
mrdon42
Offline Send Email
Nov 4, 2003
8:20 pm
1715
Stxx takes the saved dom and serializes it as SAX events to be transformed later. The class that actually does this is DefaultSAXBuilder and the serialization...
Don Brown
mrdon42
Offline Send Email
Nov 4, 2003
8:27 pm
1716
Hi Don , Thanks for the tip , by the way , did you experience the same problem ?? Is it an actual bug , or is it me ?? thanks kpt ... transformed ... find out....
kpthottam
Offline Send Email
Nov 4, 2003
10:07 pm
1718
If I had to guess, I'd say somewhere in the SAX pipeline, a stage only implemented ContentHandler and not LexicalHandler, which would support CDATA node,...
Don Brown
mrdon42
Offline Send Email
Nov 4, 2003
10:58 pm
1719
Hi Don , Before we both get on to looking into it , can we make sure we actually have an issue ? did you actually try it out ?? thanks kpt ... problem ?? ... ...
kpthottam
Offline Send Email
Nov 4, 2003
11:09 pm
1720
AbstractSAXFilter ?? I shall try understanding it's workings .. thanks kpt ... problem ?? ... and the ... into a ... it gets ... been using ... ...
kpthottam
Offline Send Email
Nov 4, 2003
11:33 pm
1721
Doesn't look like that : class :AbstractSAXFilter : public void startCDATA() throws SAXException { if (lexicalHandler != null) lexicalHandler.startCDATA(); } ...
kpthottam
Offline Send Email
Nov 4, 2003
11:41 pm
1722
I dont see any xml when i did "view source" , instead i see all html source code. Is there any example that i can look for client side transformation .. Pash ...
prashant nehete
pash_n
Offline Send Email
Nov 5, 2003
2:21 pm
1724
The stxx example app has an example that uses client side transformation. It looks for Internet Explorer, and if found, sends the xml w/ a link to the xsl. Don...
Don Brown
mrdon42
Offline Send Email
Nov 6, 2003
9:41 pm
1725
i used the stxx example to implement client side transformation, but still doesnt work ..i did view source and see html source .. my config file is as below...
prashant nehete
pash_n
Offline Send Email
Nov 7, 2003
12:33 am
1726
Dear All, This is Amit from Global Options,Mumbai. We are into recruitment of IT professionals. We have urgent openings for the following professionals for...
hr_amit
Offline Send Email
Nov 7, 2003
11:30 am
1727
Hi Don, were you able to verify the CDATASection issue as a bug ?? thanks kpt...
kpthottam
Offline Send Email
Nov 7, 2003
2:32 pm
1728
Nope, I haven't run into it, however, my XML comes from a persistence layer so it is clean elements and attributes. Can you give me a test app (or better yet...
mrdon@...
mrdon42
Offline Send Email
Nov 8, 2003
5:27 am
1729
Get rid of the test for IE and see if it you get a client-side transform. Don...
mrdon@...
mrdon42
Offline Send Email
Nov 8, 2003
5:30 am
1730
hello everyone. I have a big problem. i have an element <produitgruppe > . in <produitgruppe > there are elements < produced >. in < produced > there is...
mustapha maalej
sbata_1981
Offline Send Email
Nov 9, 2003
11:28 pm
1731
how do i get a client-side transform ? Pash mrdon@... wrote: Get rid of the test for IE and see if it you get a client-side transform. Don ... Yahoo!...
prashant nehete
pash_n
Offline Send Email
Nov 10, 2003
6:19 pm
1732
Setting the stxx pipeline "render" parameter to "client" tells the stxx transformer to have the xml rendered on the client. Don...
Don Brown
mrdon42
Offline Send Email
Nov 11, 2003
12:58 am
1733
I'm not sure I understand the problem. What are you wanting to have happen? Don...
Don Brown
mrdon42
Offline Send Email
Nov 11, 2003
12:58 am
1734
package com.aexp.intra.risk2.xmlaction ; import org.apache.log4j.*; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward;...
kpthottam
Offline Send Email
Nov 11, 2003
2:49 pm
1735
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" > <xsl:template match="/"> <html> <body> ...
kpthottam
Offline Send Email
Nov 11, 2003
2:51 pm
1736
Thanks, sorry if I'd already asked this, the problem only happens when the XML is transformed by this stylesheet? The xml and cdata section is displayed...
Don Brown
mrdon42
Offline Send Email
Nov 13, 2003
5:52 am
1737
Hi Don , Here is my understanding of the situation : Each time a saveDocument is done you are storing it an ArrayList , later inorder to club all the...
kpthottam
Offline Send Email
Nov 13, 2003
5:49 pm
1738
Here is what I have done : I have modified the example.xml and the intro.xsl , to include the CDATA section and to test if the CDATA section works . These...
kpthottam
Offline Send Email
Nov 13, 2003
5:59 pm
Messages 1707 - 1738 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