• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

transforming non XML data with TransformerHandler

 
Ranch Hand
Posts: 195
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I've been working through the example in the chapter Java XSLT on reading the csv file and applying an XSLT stylesheet to the outputting SAX events, but cannot get the XSLT to process correctly. Using the example and running with the csv file and stylesheet provided, I always get:
<table border="1"></table>
as the output. Why isn't this using the XSLT style sheet correctly? I am using jdk 1.4.1
Thanks
Brian
 
Brian Nice
Ranch Hand
Posts: 195
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Has Anyone used the TransformerHandler successfully at all with any application by firing SAX events that are translated by and XSL stylesheet? I get into the stylesheet, but never actually find a match on anything so the only thing returned is the leftover (html) text in the stylesheet.
Thanks Brian
reply
    Bookmark Topic Watch Topic
  • New Topic