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 901 - 930 of 2669   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
901
Hi, could anybody explain to me how use SVG with Stxx. Have I to write svg code in the java using a SVGDom, "in the xml" or in the xsl ? Tnx Ghorghor...
ghorghor00 <ghorghor0...
ghorghor00
Offline Send Email
Mar 2, 2003
9:18 pm
902
Here is how it should work: 1. Uncomment the line stxx.transformer.svg.class=com.oroad.stxx.transform.CachedFOPTransformer in /WEB-INF/classes/stxx.properties ...
Don Brown
mrdon42
Offline Send Email
Mar 2, 2003
9:23 pm
903
So, the XSLT file should be something like that ? <?xml version="1.0" encoding="ISO-8859-1"?> <xsl:stylesheet version="1.0" ...
ghorghor00 <ghorghor0...
ghorghor00
Offline Send Email
Mar 2, 2003
9:42 pm
904
I believe so. I have never generated svg myself, but I believe that's how it should work. You might want to look at the docs for FOP ...
Don Brown
mrdon42
Offline Send Email
Mar 2, 2003
9:45 pm
905
Thanks for the information. Ghorghor ... that's how ... and ... stxx.transformer.svg.class=com.oroad.stxx.transform.CachedFOPTransfor ... that ... xsl ? ... ...
ghorghor00 <ghorghor0...
ghorghor00
Offline Send Email
Mar 2, 2003
9:50 pm
906
After some tests, it seems we have to set the mimeType to "image/svg+xml" and to use tags <svg:rect ...>, ... but I still have an error in Tomcat : ERROR 10467...
ghorghor00 <ghorghor0...
ghorghor00
Offline Send Email
Mar 3, 2003
11:01 pm
907
Is there any stacktraces you could post? Try turning debug on. Don...
Don Brown
mrdon42
Offline Send Email
Mar 3, 2003
11:02 pm
908
Here is my class java : package com.oroad.stxx.example; import com.oroad.stxx.action.Action; import org.apache.struts.action.ActionMapping; import...
ghorghor00 <ghorghor0...
ghorghor00
Offline Send Email
Mar 4, 2003
12:04 am
909
Don, Is it possible to separate somehow stxx jars from struts 1.0 jars and from struts 1.1 jars or perhaps have some txt file describing which products...
Eugene <zhenya_r@...>
zhenya_r
Offline Send Email
Mar 4, 2003
3:15 pm
910
If you download the version with all the jars, use the jars in libs/core and libs/struts-1.0 The only commons jar you need is commons-logging.jar. Don...
Don Brown
mrdon42
Offline Send Email
Mar 4, 2003
5:14 pm
911
Hi I am brand new to stxx so please bear with me. I am getting unexpected output after I perform a stxx action. My simple use case is loading an existing XML...
Suhail Ahmed <ilyanov...
ilyanov
Online Now Send Email
Mar 4, 2003
7:19 pm
912
Could you post your struts-config.xml mapping for that action? Don...
Don Brown
mrdon42
Offline Send Email
Mar 4, 2003
8:58 pm
913
Sure thing, please find appended. it seems that the transform is not executed because when I use "view source" on the browser, I get the original XML document...
Suhail Ahmed
ilyanov
Online Now Send Email
Mar 5, 2003
5:24 pm
914
Currently trying to implement a solution with stxx based on the following: Store xsl in a database for different users. Generate xml from data from database. I...
muppetoct1997
Offline Send Email
Mar 6, 2003
7:01 am
915
Could you explain the business case a bit more? Why do you have different xsl files for each user? Does the xsl generate xml? Don...
Don Brown
mrdon42
Offline Send Email
Mar 6, 2003
7:04 am
916
It shouldn't be throwing a NullPointerException; thanks for pointing this out. Now, could you show how you setup the svg handler in stxx.properties? The...
Don Brown
mrdon42
Offline Send Email
Mar 6, 2003
7:15 am
917
Hmm...I'm still not seeing the problem. Could you turn on debugging and show me what the logs are saying? Thanks. Don...
Don Brown
mrdon42
Offline Send Email
Mar 6, 2003
7:19 am
918
Hi, Im using Resin-2.1.6, Struts 1.1 and stxx1.1b3. If i try and run the page /homePage.do, i get the following error. path must be absolute: `homePage.dox' ...
unclepack
Offline Send Email
Mar 6, 2003
12:49 pm
919
Actually, I'm working on that problem right now. I should have it resolved today *cross fingers*. Thanks for bringing it up tho; you pointed out something I...
Don Brown
mrdon42
Offline Send Email
Mar 6, 2003
5:05 pm
920
Hi I get this in the log <greeting> Shalom <request> <param name="debug">true</param> <attribute ...
Suhail Ahmed
ilyanov
Online Now Send Email
Mar 6, 2003
7:18 pm
921
... If what you are asking is why there are other elements now under <greeting>, that is how stxx builds the dom. You can tell stxx not to attach request...
Don Brown
mrdon42
Offline Send Email
Mar 6, 2003
7:30 pm
922
I've written a prototype and example of a Struts plugin that integrates Cocoon into the Struts framework. I modeled the plugin after our very own stxx plugin...
mrdon42
Offline Send Email
Mar 6, 2003
9:30 pm
923
Wonderful!! I actually went from struts to cocoon and back. I moved to cocoon because I need to use XML/XSLT in a non trivial way. I moved back because I...
Suhail Ahmed
ilyanov
Online Now Send Email
Mar 7, 2003
12:43 am
924
On Fri, 7 Mar 2003, Suhail Ahmed wrote: <snip /> ... The advantage of this approach is you can continue to use JSP as your primary presentation technology and...
Don Brown
mrdon42
Offline Send Email
Mar 7, 2003
1:35 am
925
Basically want to provide our customers with the ability to define their own layout on web pages. They will do this with an xsl stylesheet which will be stored...
muppetoct1997
Offline Send Email
Mar 7, 2003
1:45 am
926
Just a guess, I'd say the easiest way would be to define one master XSL which is mapped to by stxx. That XSLT will look for the filename of the custom XSLT in...
Don Brown
mrdon42
Offline Send Email
Mar 7, 2003
1:52 am
927
hi, i have some problem with stxx 1.0.5 and Oracle App server 9i I can't disable oracle xml tranformer. I don't know how :-( Have somebody idea? Call ...
nmaiorow
Offline Send Email
Mar 7, 2003
6:04 pm
928
Since stxx only needs a JAXP/TRaX compatible transformer, it should work fine with an oracle xml transformer. What errors are you getting? Don...
Don Brown
mrdon42
Offline Send Email
Mar 7, 2003
6:43 pm
929
Actually, if all else fails, you could write a transformer that directly uses Oracle's xml transformer. Look at the code for CachedXSLTransformer. Its pretty...
mrdon42
Offline Send Email
Mar 7, 2003
7:39 pm
930
I've just installed stxx and sitemesh along with struts 1.1 and I've noticed some behaviour that seems odd to me. I have a header and footer which are jsp...
cattonchris
Offline Send Email
Mar 7, 2003
7:57 pm
Messages 901 - 930 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