• 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

Pipeline.xml

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
can any one explain pipeline.xml works with an example. iam really getting no stuff to go through.
 
Ranch Hand
Posts: 103
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm not sure what you mean. I've pipelined XSL transformations together and I can help with that if you're interested...
 
zubair zameel
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Craig,
Thanks for ur rply... It will be of great help to me if you explain the process of pipeline with an example. What is its purpose , use , its working , where it should be placed in the directory , how many pipeline.xml files can be for a project.....right now iam working on j2ee project. what ever stuff u have, it may be helpful.
Plz try to explain with an example(s) and if you have any material give the link also.
 
Marshal
Posts: 28193
95
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We need some context. Are you working with an application that uses a file named "pipeline.xml"? If so, what application is it? Or are you asking a generic question about some "pipeline" concept? If so, where did you hear about this concept?

Right now we are just guessing about what you are asking.
 
Clifton Craig
Ranch Hand
Posts: 103
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well I'm still not sure if we're on the same page but I'll shoot. I've used pipelining with XSL (not XML) to combine the processing of multiple stylesheets. I'm talking XSL here which is the transformation of XML. The reason I needed it was to overcome a shortcoming in my XSL-FO processor. (I used an FO processor, FOP, to convert the transformed XML into a PDF document.) The process in general works like this. Let's say you have two stylesheets, a.xsl and b.xsl, and an xml, c.xml. You push c.xml through a transofrm with a.xsl and feed its results to b.xsl which does further transformation. In my situation, I had to manually handle my page breaks in my resulting PDF document so I transformed my XML into a partial XSL-FO syntax with one stylesheet and piped the results to the other stylesheet using the Java TrAX API. I can give you an example of how to chain together two XSLT stylesheets using the API but I'm not quite sure that's what you're after.
 
zubair zameel
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
happy to see ur rplys.... certainly iam using pipeline.xml file in my project. Sorry that i did not give a clear explanation for u.
my question is in general.
what is a pipeline? what are its uses, purpose ? How can we use pipeline.xml in a project.
Friends please make sure use an example so that i can understand. Explain even with a small application also. I will try to understand it.
 
Ranch Hand
Posts: 1953
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Read w3c doc here:

XML Pipeline Definition Language Version 1.0


I think it will definitely help!
 
zubair zameel
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi friends,
Thanks for responding with answers. I will go through those materials . I appreciate all of you.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic