Specifying custom XSL files for an XML document in an HTTP query

BlitznoSpark

New Member
I have an XML catalog data and an XSL file to visualize this catalog data. I use this line to validate XML.\[code\]<?xml-stylesheet type="text/xsl" href="http://stackoverflow.com/questions/10772110/presentation-list-catalog.xsl"?>\[/code\]This part works great.I'd like to have a secret link for designers, or somehow I need to validate XML using another XSL file. Basically I need to only change the link to the XSL file:\[code\]<?xml-stylesheet type="text/xsl" href="http://stackoverflow.com/questions/10772110/download-links-catalog.xsl"?>\[/code\]This XSL file is another visualisation of the XML catalog data so that designers will be able to download hi-res catalog pictures. For this purpose, I would like to use the same XML, but converted using another custom XSL file.Is it possible to specify a custom XSL file using an HTTP request like:\[code\]http://example.com/catalog.xml?download-links-catalog.xsl\[/code\]What are the possible solutions?
 
Back
Top