Francois Piette a écrit : >>When transmit a soap request, i get the error from my >>ISAPI dll : 'EDOMParse Error : An Invalid character >>was found in text content' > > > Is it possible for you the get the invalid character ? This could give an > idea about what is > occuring. Maybe you have an accented character that is not properly encoded ? > Just an idea... >
this is off-topic, but : when dealing with XML, you have to start each XML document with : <?xml version="[xmlVersion 1.0 or 1.1]" encoding="[encoding codepage]"> encoding can have the value : ISO8859-1 or UTF-8 or whatever codepage you need. hence, if you transmit some accented character (like the ones used in french éàçèùîô) you have to use UTF-8 or ISO8859-1... and your xml parser won't suffer ;) ;) HTH, Best regards, -- Guillaume MAISON - [EMAIL PROTECTED] 83, Cours Victor Hugo 47000 AGEN Tél : 05 53 87 91 48 - Fax : 05 53 68 73 50 e-mail : [EMAIL PROTECTED] - Web : http://nauteus.com -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be
