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 2180 - 2209 of 2669   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2180
i encounted an error trying to add StrutsTestCase for JUnit 2.1.2 on stxx1.3 project (weblogic8.1sp2 ), Error appear when running a simple test module who...
XFLOW
xflowmsg
Offline Send Email
Jul 2, 2004
3:08 pm
2181
It seems the problem is it expects TransformerHandler to exist in the servlet context. Try to what object is actually under that key. Don...
Don Brown
mrdon42
Online Now Send Email
Jul 3, 2004
9:19 pm
2182
Hello! I'am trying to create a full descriptive applikation. I want to create ActionForms/XMLForms based on XForm definitions and XML models. Trying to use...
hgaussmann
Offline Send Email
Jul 5, 2004
4:10 pm
2183
Hi for all, I was trying to execute the examples (stxx-1.3-plugin-example.war) with a little modification. If I change the form type: from DOMForm (run without...
antonio_martiradonna
antonio_mart...
Offline Send Email
Jul 6, 2004
4:28 pm
2184
Hi All, Is it okay to run application with cocoon plugin configured in struts-config.xml and cocoon servlet configured in web.xml ? It is bcoz all the data...
Struts Developer
struts_devel...
Offline Send Email
Jul 8, 2004
9:19 pm
2185
Interesting. You know, you could use a wildcard-mapped action in Struts to pass a specific url pattern over to Cocoon. Struts 1.2.1 has been rolled and is...
Don Brown
mrdon42
Online Now Send Email
Jul 9, 2004
4:17 pm
2186
Hey Don, Is it Struts1.2 version ? thats a good news I might do this instead of putting cocoon servlet in web.xml. Thanks Again!! ... ...
Struts Developer
struts_devel...
Offline Send Email
Jul 12, 2004
4:38 pm
2187
Yep, in fact, Struts 1.2.1 beta was just announced a few days ago. Personally, I voted it should be labeled as a full release, but I guess they wanted to give...
Don Brown
mrdon42
Online Now Send Email
Jul 12, 2004
4:45 pm
2188
By casting the form as an XMLForm, you can call getForm to retrieve the underlying Form object. From there, you can call setModel() or something similiar to...
Don Brown
mrdon42
Online Now Send Email
Jul 12, 2004
5:25 pm
2189
Looks like namespace information gets lost somewhere. You could try to write an example that doesn't use namespaces to see if it works then. Don...
Don Brown
mrdon42
Online Now Send Email
Jul 12, 2004
5:33 pm
2190
hello, I'm a new member. I'm using stxx1.3 and I would like to know if there's a way of logging the xsl transformations on stxx, for example I would like to ...
javiergquijano
Offline Send Email
Jul 13, 2004
12:30 pm
2191
If you turn debugging on through your logging configuration, you should see that exact metric displayed at the "DEBUG" level. Don...
Don Brown
mrdon42
Online Now Send Email
Jul 13, 2004
6:11 pm
2192
Hi, AppLabs provides offshore development services to global industry players. We have dedicated staff of experienced system analysts, system architects and...
applabs_vijay
Offline Send Email
Jul 15, 2004
12:57 pm
2193 saibal_adhikary
Offline Send Email
Jul 16, 2004
6:11 am
2194
Thanks it works. Javier ... De : Don Brown [mailto:mrdon@...] Envoye : mardi 13 juillet 2004 20:11 A : struts-xsl@yahoogroups.com Objet : Re:...
Javier GIL QUIJANO
javiergquijano
Offline Send Email
Jul 16, 2004
5:15 pm
2195
Is it possible for anyone to provide a simple example of this? TIA, Joel Oliveira...
Joel Oliveira
oliveira_joel
Offline Send Email
Jul 20, 2004
4:09 am
2196
Well, ((XMLForm)form).setModel(element); should work assuming "element" is the XML element and "form" is the ActionForm passed to the action. Don...
Don Brown
mrdon42
Online Now Send Email
Jul 20, 2004
5:24 am
2197
Hi all, I've uncommented the following lines in stxx.properties stxx.transformer.svg.class=com.oroad.stxx.transform.CachedFOPTransformer ...
Wilson
wilson_na
Online Now Send Email
Jul 20, 2004
10:54 am
2198
Strange. I once write a transformer that transformed the xml with an xsl to create SVG, then rasterized that as a png. Do you need to generate SVG code from...
Don Brown
mrdon42
Online Now Send Email
Jul 22, 2004
5:20 am
2199
Hi Don, Thanks for the reply. Yes, we do need to generate SVG code if possible. But we did not use XSL-FO for doing the conversion. We simply used an example...
Wilson
wilson_na
Online Now Send Email
Jul 22, 2004
5:32 am
2200
In that case, simply use the CachedXSLTransformer, but set the output type to svg. In addition to setting the output type on the XSL, set the mimeType on the...
Don Brown
mrdon42
Online Now Send Email
Jul 22, 2004
5:38 am
2201
Great! It works! Should have realised something as obvious as this. Can't thank you enough!! Rgds, Wilson ... From: Don Brown To: struts-xsl@yahoogroups.com ...
Wilson
wilson_na
Online Now Send Email
Jul 22, 2004
7:00 am
2202
Hi, Kindly send your updated profile to sriharsha@... Skill and Event Details Skill Specs : Oracle Apps Technical (Any Module) Level : SE,...
HR Guru
hrguru007
Offline Send Email
Jul 22, 2004
2:09 pm
2203
There are some problems running samples from stxx plugin,on standard https, ssl session started on weblogic 8.1sp2,it's look like xml is corupted at...
XFLOW
xflowmsg
Offline Send Email
Jul 22, 2004
4:00 pm
2204
Ah, yes, I'd recommend setting stxx to ignore any request attributes starting with "javax.net". See http://stxx.sourceforge.net/advanced/xml-building.html Don...
Don Brown
mrdon42
Online Now Send Email
Jul 22, 2004
4:55 pm
2205
thank's for the hint, i use a same aproach workaround by setting "StxxHelper.attachRequestAttributes(request,false);" since i use in my project only xmlforms...
XFLOW
xflowmsg
Offline Send Email
Jul 22, 2004
9:13 pm
2206
If it would work with a jsp, you should be able to accomplish it with stxx. Let me know what you find. BTW, I'm cc'ing the stxx mailing list. You can sign up...
Don Brown
mrdon42
Online Now Send Email
Jul 30, 2004
3:06 pm
2207
Hi, We have an urgent opening for you in our bangalore based client "4L IT Services" for their bangalore branch for the post "J2EE ENGINEERS". Experience: 2 to...
ShikshaPlanet Premier...
shikshaplanet
Offline Send Email
Aug 9, 2004
12:33 pm
2208
Hi, We have an urgent opening for you in our bangalore based client 4L IT SERVICES for their bangalore branch for the post "WEB ENGINEERS". Experience: 2 to 5...
ShikshaPlanet Premier...
shikshaplanet
Offline Send Email
Aug 9, 2004
12:58 pm
2209
Hi people. I've designed several xsl files to transform xml into pdf. I have to use my Company's specific fonts in them, but I don't know how to specify the...
kieffer_frederic
kieffer_fred...
Offline Send Email
Aug 9, 2004
4:30 pm
Messages 2180 - 2209 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