xsl-list
[Top] [All Lists]

RE: addParameter method and MSXML

2003-08-22 09:13:34
Hello Joe,

  Thanks for the response. I do have the msxml 'help' file,
but as I am not a C++ or VB programmer, it is just
headache-inducing for me. I noticed the IXSL Proc bit, but
invoking it is a puzzle to me. As to the 'built in object browser' and
MS Word, etc- que?

I was hoping for something more succinct to my situation.
But thanks for trying..

- Flashlight


-----Original Message-----
From: owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
[mailto:owner-xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com]On Behalf Of Joe 
Fawcett
Sent: Friday, August 22, 2003 2:40 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] addParameter method and MSXML


If you have msxml version 4 then you would normally have the help file that
details that. It's implemented in IXSLProcessor. If you don't have the file
and can't get it but have the dll on a machine that has Microsoft Word,
Excel or virtually any Office app then use the built in object browser to
look at the methods.

--

Joe


From: "Bruce Rojas-Rennke" <brr(_at_)4dv(_dot_)net>
Reply-To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
To: <XSL-List(_at_)lists(_dot_)mulberrytech(_dot_)com>
Subject: [xsl] addParameter method and MSXML
Date: Thu, 21 Aug 2003 18:27:45 -0600

Hello,

  I'm getting like no responses to my earlier post asking about passing
var's from-to xsl stylesheets.. so here is a more focused question in that
vein....

Q: what class do I invoke to use the addparameter method with MSXML 4.0 ?

my code below- my question refers to the COM object named 'XSLinput', -
what
class should I use there so I can use the addParameter method widdit?
Never mind the Cf bits, code is just shown here to be thorough..

thanks all,
Flashlight
---------------------------------------------------------------------------
-
---------------
<cfobject type="COM"
          action="create"
          class="MSXML2.FreeThreadedDOMDocument.4.0"
          name="XMLinput">
  <cfset XMLinput.Async = "false">
  <cfset XMLinput.LOAD("http://127.0.0.1/ddm/apAgingDetail_rs.xml";)>

 <cfobject type="COM"
           action="create"
           class="MSXML2.DOMDocument.4.0"
           name="XSLinput">
  <cfset XSLinput.Async = "false">
  <cfset XSLinput.LOAD("http://127.0.0.1/ddm/apTransDetail.xslt";)>

  <cfset RESULT = XMLinput.TransformNode(XSLinput)>

 <cfoutput>
  #result#
 </cfoutput>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


_________________________________________________________________
Find a cheaper internet access deal - choose one to suit you.
http://www.msn.co.uk/internetaccess


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>