ael Hughes"
gf-x.com>cc: (bcc: David N
Bertoni/Cambridge/IBM)
Subject: RE: problem with XSLT
tranfor
ECTED] [mailto:[EMAIL PROTECTED]
Sent: 30 April 2003 16:51
To: xalan-c-users@xml.apache.org
Subject: RE: problem with XSLT tranformation using Xalan
Hi Michael,
Please download Xalan-C++ 1.5. It has support for the new Xerces DOM.
The old DOM is now deprecated because the performance of the new D
Thanks for the response. I'll be getting 1.5 over the next few days.
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 30 April 2003 16:51
To: xalan-c-users@xml.apache.org
Subject: RE: problem with XSLT tranformation using Xalan
Hi Michael,
Please dow
gf-x.com>cc: (bcc: David N
Bertoni/Cambridge/IBM)
Subject: RE: problem with XSLT
tranformation using Xalan
y
you could just use the deprecated DOMParser instead of XercesDOMParser,
but is that dangerous? Why is it deprecated?
Thanks in advance for your help.
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 22 April 2003 17:07
To: xalan-c-users@xml.apache.org
Sub
>cc:
Subject: Re: problem with XSLT
tranformation using Xalan
Hi David,
I tried out the tranformation of an xml file the same way you've stated below and it worked fine.
But my requirement is to transform a document of type XalanDocument* . An XSLTInputSource object can be created with a XalanDocument object which can then be passed to the transform() met
So it would seem there are (at least) two methodologies for transforming an
XML document one wants to ensure has been validated.
1. parse and validate foo.xml with Xerces.
pass a XercesDOMWrapperParsedSource version of foo.xml to Xalan.
2. parse and validate foo.xml with Xerces.
transform w
Unless you really need to use the Xerces DOM, you should avoid it. Here's
a much simpler version without it:
XalanTranformer::intialize();
{
XalanTransformer theTransformer;
int theResult =
theTransformer.transform("foo.xml","foo.xsl","foo.out");
cout << "the