I am having trouble with the writeToString function of the DOMWriter. Basically, when I load an xml file using XercesDOMParser parse(path), and then print the information using writeToString, the decl shows up with the wrong encoding. The odd thing is that the DOMDocument getEncoding() function indicates the correct encoding shown in the document.
For example, in the DOMPrint example, the following: <?xml version="1.0" encoding="UTF-8"?> <personnel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation='personal.xsd'> shows up as: <?xml version="1.0" encoding="UTF-16" standalone="no" ?><personnel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="personal.xsd"> Am I doing something wrong. Based on the DOMPrint example, it seems as though I shouldn't have to explicitly set the encoding if it is called out in the document itself. The code is a little convoluted as I am building a wrapper dll around xerces to use it in another program, but here is the part that writes the xml to string: XMLCh tempStr[100]; XMLString::transcode("LS", tempStr, 99); DOMImplementation *impl = DOMImplementationRegistry::getDOMImplementation(tempStr); DOMWriter *theSerializer = ((DOMImplementationLS*)impl) ->createDOMWriter(); char *outputencoding = XMLString::transcode(theSerializer->getEncoding()); XMLCh* tempxmltext=theSerializer->writeToString(*m_Node); char* xmlchartext = XMLString::transcode(tempxmltext); Thanks! --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]