MSXML methods missing - XML SOAP

This is a discussion on MSXML methods missing - XML SOAP ; Hello, for the last few years I use a .dot file including a macro to work with some xml-content. In the code I use the class "DOMDocument30". Since a few weeks I get the error that some methods are not ...

+ Reply to Thread
Results 1 to 5 of 5

MSXML methods missing

  1. Default MSXML methods missing

    Hello,

    for the last few years I use a .dot file including a macro to work
    with some xml-content.

    In the code I use the class "DOMDocument30". Since a few weeks I get
    the error that some methods are not available to that object. If I
    check intellisense in my Office Visual Basic Editor I notice that the
    object only gets methods like

    *getDeclaredPrefixes
    *getPrefixes
    *getURI
    *getURIFromNode
    *popContext
    ect.

    Methods like
    *getElementsByTagName

    are not there anymore. I reference the msxml3.dll. Currently installed
    is version 8.90.1101.0 (SP9).
    I could imagine this came with some update, but why did available the
    members change?

    I just want to understand the reasons, so I can do something to
    prefend this.

    Thank you so much for any help!

    Regards,
    Uwe


  2. Default Re: MSXML methods missing

    I still see getElementsByTagName on the same DLL as you have, it's actually
    on the DomDocument interface but DomDocument30 implements this so you can
    use it.

    --

    Joe Fawcett (MVP - XML)
    http://joe.fawcett.name

    "Uwe" <uwe.braunholz@hotmail.de> wrote in message
    news:1189102724.821143.158300@y42g2000hsy.googlegroups.com...
    > Hello,
    >
    > for the last few years I use a .dot file including a macro to work
    > with some xml-content.
    >
    > In the code I use the class "DOMDocument30". Since a few weeks I get
    > the error that some methods are not available to that object. If I
    > check intellisense in my Office Visual Basic Editor I notice that the
    > object only gets methods like
    >
    > *getDeclaredPrefixes
    > *getPrefixes
    > *getURI
    > *getURIFromNode
    > *popContext
    > ect.
    >
    > Methods like
    > *getElementsByTagName
    >
    > are not there anymore. I reference the msxml3.dll. Currently installed
    > is version 8.90.1101.0 (SP9).
    > I could imagine this came with some update, but why did available the
    > members change?
    >
    > I just want to understand the reasons, so I can do something to
    > prefend this.
    >
    > Thank you so much for any help!
    >
    > Regards,
    > Uwe
    >




  3. Default Re: MSXML methods missing


    "Uwe" <uwe.braunholz@hotmail.de> wrote in message
    news:1189102724.821143.158300@y42g2000hsy.googlegroups.com...
    > Hello,
    >
    > for the last few years I use a .dot file including a macro to work
    > with some xml-content.
    >
    > In the code I use the class "DOMDocument30". Since a few weeks I get
    > the error that some methods are not available to that object. If I
    > check intellisense in my Office Visual Basic Editor I notice that the
    > object only gets methods like
    >
    > *getDeclaredPrefixes
    > *getPrefixes
    > *getURI
    > *getURIFromNode
    > *popContext
    > ect.
    >



    Something has got itself very confused because the above are
    MXNamespaceManager members not DOMDocument30.


    --
    Anthony Jones - MVP ASP/ASP.NET




  4. Default Re: MSXML methods missing

    http://www.w3schools.com/dom/dom_document.asp



    "Anthony Jones" <Ant@yadayadayada.com> wrote in message
    news:ezQ1lDN8HHA.1184@TK2MSFTNGP04.phx.gbl...
    >
    > "Uwe" <uwe.braunholz@hotmail.de> wrote in message
    > news:1189102724.821143.158300@y42g2000hsy.googlegroups.com...
    >> Hello,
    >>
    >> for the last few years I use a .dot file including a macro to work
    >> with some xml-content.
    >>
    >> In the code I use the class "DOMDocument30". Since a few weeks I get
    >> the error that some methods are not available to that object. If I
    >> check intellisense in my Office Visual Basic Editor I notice that the
    >> object only gets methods like
    >>
    >> *getDeclaredPrefixes
    >> *getPrefixes
    >> *getURI
    >> *getURIFromNode
    >> *popContext
    >> ect.
    >>

    >
    >
    > Something has got itself very confused because the above are
    > MXNamespaceManager members not DOMDocument30.
    >
    >
    > --
    > Anthony Jones - MVP ASP/ASP.NET
    >
    >
    >




  5. Default Re: MSXML methods missing

    Hello everybody,

    I think I got the reason for the fault. Microsoft released a security-
    Update for MSXML. See KB936021. This this one installed, there might
    be some new CLSID comming to the reference in the document does not
    fit anymore.

    Does anybody know something about that?

    Joe, you mean I rather use "DomDocument"?

    Thank you!

    On 8 Sep., 18:03, "Scott M." <s-...@nospam.nospam> wrote:
    > http://www.w3schools.com/dom/dom_document.asp
    >
    > "Anthony Jones" <A...@yadayadayada.com> wrote in message
    >
    > news:ezQ1lDN8HHA.1184@TK2MSFTNGP04.phx.gbl...
    >
    >
    >
    > > "Uwe" <uwe.braunh...@hotmail.de> wrote in message
    > >news:1189102724.821143.158300@y42g2000hsy.googlegroups.com...
    > >> Hello,

    >
    > >> for the last few years I use a .dot file including a macro to work
    > >> with some xml-content.

    >
    > >> In the code I use the class "DOMDocument30". Since a few weeks I get
    > >> the error that some methods are not available to that object. If I
    > >> check intellisense in my Office Visual Basic Editor I notice that the
    > >> object only gets methods like

    >
    > >> *getDeclaredPrefixes
    > >> *getPrefixes
    > >> *getURI
    > >> *getURIFromNode
    > >> *popContext
    > >> ect.

    >
    > > Something has got itself very confused because the above are
    > > MXNamespaceManager members not DOMDocument30.

    >
    > > --
    > > Anthony Jones - MVP ASP/ASP.NET




+ Reply to Thread

Similar Threads

  1. terminology: class methods versus kernel methods
    By Application Development in forum RUBY
    Replies: 8
    Last Post: 10-24-2007, 05:01 AM
  2. missing methods in Facets?
    By Application Development in forum RUBY
    Replies: 0
    Last Post: 10-18-2007, 06:50 PM
  3. Suppress "Missing Xml Comment" on specific methods
    By Application Development in forum XML SOAP
    Replies: 0
    Last Post: 02-07-2007, 11:29 AM
  4. Replies: 5
    Last Post: 05-24-2006, 09:24 AM
  5. Replies: 0
    Last Post: 04-19-2006, 06:52 PM