Re: Creation d'un DOM document a partir d'un string

"RACHOVITCH Yoni" <[email protected]>
Newsgroups gmane.text.xml.french.tech
Message-ID <[email protected]>
Bonjour,

voici ce qui devrait répondre à vore problème:
c'est du vbscript facilement transposabe dans d'autres langages

Set xml = LoadXMLString ("votre string")

Function LoadXMLString(strToLoad)

    Dim objXML
    Set objXML = CreateObject("Msxml2.FreeThreadedDOMDocument.4.0")
    
    objXML.async = False
    objXML.setProperty "NewParser", True
    objXML.setProperty "SelectionLanguage", "XPath"
    objXML.setProperty "SelectionNamespaces", 	"xmlns:xsl='http://www.w3.org/1999/XSL/Transform'"
    objXML.loadXML (strToLoad)
    
    Set LoadXMLString = objXML

End Function

cordialement

Yoni Rachovitch

-----Message d'origine-----
De : [email protected] [mailto:[email protected]]De la
part de Herve AGNOUX
Envoyé : mercredi 3 mai 2006 01:34
À : [email protected]
Objet : [xml-tech] Re: Creation d'un DOM document a partir d'un string


Pour que l'on puisse vous répondre, pourriez-vous nous donner un peu plus 
d'informations sur votre contexte ?... j'ai l'impression que vous travaillez 
en java, mais je ne vois pas trop à quoi correspond votre "xInterrogate" ?

Le Mardi 2 Mai 2006 15:23, [email protected] a écrit :
> Bonjour,
>
> Je possede un String dans lequel il y a du XML. Je voudrais faire un xpath
> sur ce String. Pour cela, j'essaye de transformer mon String:
>
> ByteArrayInputStream documentStream = new
> ByteArrayInputStream(xmlFlux.getBytes());
> NodeList phraseNodeList = xInterrogate.evaluate("phrase",documentStream);
>
> sachant que :
> xmlFlux = <phrases><phrase><code>V34490</code></phrase></phrases>
>
> Dans ce cas precis j'obtiens:
> phraseNodeList.getLength() = 0 alors qu'il devrait me retourner 1 !
>
> Merci
>
>
> --
> Devenez redacteur <XML>fr et contribuez au developpement du
> xml francophone (http://xmlfr.org/infos/redacteurs/) !
>
> Liste de diffusion "[email protected]" (http://xmlfr.org).
>
> Cette liste est a votre disposition pour discuter en francais de
> tout sujet technique lie a XML.
>
> Pour resilier votre abonnement, envoyez un message contenant
> la commande "unsubscribe" a [email protected]
> (mailto:[email protected]?Subject=unsubscribe)

-- 
SARL diaam informatique - 04 77 25 43 28
Ingenierie, développements de systèmes d'information
http://www.diaam-informatique.com

--
Devenez redacteur <XML>fr et contribuez au developpement du
xml francophone (http://xmlfr.org/infos/redacteurs/) !

Liste de diffusion "[email protected]" (http://xmlfr.org).

Cette liste est a votre disposition pour discuter en francais de 
tout sujet technique lie a XML.

Pour resilier votre abonnement, envoyez un message contenant 
la commande "unsubscribe" a [email protected]
(mailto:[email protected]?Subject=unsubscribe)
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.