Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 18th, 2009, 01:43 PM
Registered User
 
Join Date: Aug 2009
Posts: 1
Thanks: 1
Thanked 0 Times in 0 Posts
Default Enabling XSLT on Windows Vista Server

Does anyone have a place where I can get instructions for enabling/installing XSLT on Windows Vista?

I have PHP 5.2.10 up and running with no problem.

Any comments would be appreciated.

Thanks,

Jarthur
 
Old August 18th, 2009, 01:56 PM
Friend of Wrox
 
Join Date: Nov 2007
Posts: 1,243
Thanks: 0
Thanked 245 Times in 244 Posts
Default

Well Vista should have MSXML 3 and MSXML 6 , both supporting XSLT and XPath 1.0. So there is no need to install anything. If you want to use with with PHP then I think you can do e.g.
Code:
$doc = new COM("Msxml2.DOMDocument.6.0");
but I have never done that.
PHP 5 also comes with libxslt as its XSLT 1.0 processor, not sure whether that is installed by default or you need to enable it as an extension. See http://www.php.net/manual/en/xsl.installation.php for details.

Vista also has .NET 3.0 as far as I know, so you can run .NET application using System.Xml.Xsl.XslCompiledTransform which also support XSLT 1.0. I am not sure you could use that with PHP however.

If you want to use XSLT 2.0 then on Windows you can install Saxon 9 or AltovaXML tools, I am not sure which is better accessable from PHP.
__________________
Martin Honnen
Microsoft MVP (XML, Data Platform Development) 2005/04 - 2013/03
My blog
The Following User Says Thank You to Martin Honnen For This Useful Post:
jarthur (August 18th, 2009)





Similar Threads
Thread Thread Starter Forum Replies Last Post
Connecting with SQL Server on Windows Vista aehb ASP.NET 1.0 and 1.1 Basics 3 June 16th, 2008 01:09 PM
IS ASP.NET Compatible With Windows Vista? edgyboy ASP.NET 1.0 and 1.1 Basics 15 October 24th, 2007 09:50 AM
Windows Vista - IIS Config Error tracey07 ASP.NET 2.0 Basics 1 July 26th, 2007 03:02 AM
enabling controls built in XSLT and imported charles95621 ASP.NET 2.0 Professional 0 July 15th, 2007 02:49 PM
Shell command under Windows Vista mileski Access VBA 0 April 16th, 2007 10:17 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.