OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to specify a Processing Instruction? (better: how tocontrolencoding on saving)



----- Original Message -----
From: Julian Reschke <julian.reschke@gmx.de>
To: ComCity <mikeb@comcity.com>; <xml-dev@lists.xml.org>
Sent: Wednesday, August 29, 2001 3:04 PM
Subject: RE: How to specify a Processing Instruction? (better: how to
controlencoding on saving)


> > From: ComCity [mailto:mikeb@comcity.com]
> > Sent: Thursday, August 30, 2001 12:00 AM
> > To: Julian Reschke; xml-dev@lists.xml.org
> > Subject: Re: How to specify a Processing Instruction? (better: how to
> > controlencoding on saving)
> > ...
> > > Then obviously something is wrong on *your* side. Or do you
> > happen to use
> > > loadXML()? In which case I recommend to read the SDK
> > documentation and the
> > > MSDN article about encodings
> > >
> > (<http://msdn.microsoft.com/library/default.asp?url=/library/en-us
> > /dnxml/htm
> > > l/xmlencodings.asp>).
> >
> > Yes, I do use loadXML and not load.  I have read this article
> > about 10 times
> > already.  However, reading again after your and others posts has
>
> Maybe you should read it again and pay attention to:
>
> "The LoadXML method always takes a Unicode BSTR that is encoded in UCS-2
or
> UTF-16 only. If you pass in anything other than a valid Unicode BSTR to
> LoadXML, it will fail to load."

Well, that can't be.  LoadXML is used in numerous other places in the code,
that don't fail.  And, in the code I'm looking at, LoadXML just reads in
plain old xml in plain old ASCII non Unicode BSTR and it does not fail.  For
instance, this piece of code runs fine and has no problem.

    Set AgreementReqXml = New MSXML2.DOMDocument
    Set XmlHttp = New MSXML2.XmlHttp
    Set XmlHttpResp = New MSXML2.DOMDocument
    GetPath FpApp.ActiveWeb.RootFolder, ShippingLoc, False
    ShippingLoc = ShippingLoc & "/ups/agreementrequest.xml"
    FpApp.ActiveWeb.LocateFile(ShippingLoc).Edit
    Set MyDocObject = FpApp.ActivePageWindow.ActiveDocument
    ReqXmlStr = MyDocObject.DocumentHTML
    If Not AgreementReqXml.loadXML(ReqXmlStr) Then
        MsgBox "Unable to create request file", vbOKOnly + vbCritical,
"Shipping Error!"
        AgreementRequest = False
    End If

I didn't write the code, I'm trying to make sense out of it...but it surely
does not fail and that statement can't be right.