Hi a gain , 

I try to parse a  XML file

what i'm doing know it's like this 

        XMLCh tempStr[100];
        XMLString::transcode("LS", tempStr, 99);
        DOMImplementation *impl =
DOMImplementationRegistry::getDOMImplementation(tempStr);
        DOMBuilder* parser =
((DOMImplementationLS*)impl)->createDOMBuilder(DOMImplementationLS::MODE_SYNCHRONOUS,
0);


        m_xmlDoc = 0;
        m_xmlDoc = parser->parseURI(m_strValue); //strValue = "C:\\x1.xml";

until now this solution work .

But now , I want Parse a string , 

I try with parser->parseWithContext (...)

but I don't know how can add my string to parseWithContext ?? or there is
another way to do this 


Thanks
-- 
View this message in context: 
http://www.nabble.com/Xerces-and-special-caractere-%3C-%3E-tp24201194p24221814.html
Sent from the Xerces - C - Users mailing list archive at Nabble.com.

Reply via email to