Link to home
Start Free TrialLog in
Avatar of geoffsweb
geoffsweb

asked on

HTML thru XML

I'm trying to send an HTML string through XML and I get this error:

msxml4.dll error 'c00ce502'

A string literal was expected, but no opening quote character was found.

If I take the node out that has that string, then the XML passes just fine.

Is it trying to interpret the string as HTML?
Avatar of farzinm
farzinm

Can we see the node that has that string?
Maybe you are missing a quote in your HTML I am not sure though
Avatar of geoffsweb

ASKER

if I do a direct response.write and the string, the HTML displays just fine on the screen... it just errors out if I try and send back an xml payload

so you think it might be just missing a quote? the string is very long.
Apostrophes will get re-coded in xml format the minute you pass the string through xml.  The xml code for it is '.  If you want to decode it, on the other end, a simple way might be to create a xml document in some code behind, pass the encoded string into it, and retrieve it by the get inner text function.  In short, Xml has a slightly different decoding method than HTML.
Avatar of Anthony Perkins
First of all apostrophes are fine in XML; there is no need to encode them. (Tags are another matter). I suspect that your XML is not well formed.  But without seeing it, it is impossible to say.

Anthony
Well, there is another possibility...it could be an error from IE. If the contenttype is xml it will pass this error because the standard IE error page has some HTML which looks like this:

<font face="Arial" size=2>

which is bad XML...

Just a thought.
Brad
I do get this error: <font face="Arial" size=2>

what does that mean?
Also, as an addition to what I just said: You may have an attribute value which doesn't start with a " or ', or in other words, there is an unquoted attribute. Now, this is valid HTML...but not valid in XML. Once you have discovered what the error message actually says, do a search for these characters: /=[ ]*[^"']/ and you should get the culprit.

Hope that helps.
Brad
It means there could be an IE error. Check to make sure that ALL of your attributes have double quotes. The error you got is NOT valid XML becasue the 'size' attribute is not double quoted.

Brad
bdobyns,

>>Now, this is valid HTML...but not valid in XML<<
I know exactly what you are saying, but strictlty speaking you mean "but not well formed XML". (I mentioned this previously)  "Valid" implies there is a DTD or Schema involved, which is a different story.

Anthony
Yes, well, I guess there are different ways to say the same thing. :o)

Brad
OK, I corrected the syntax and I got the XML to save back to the original page.  But now the XML is interpretting the HTML string I'm trying to pass as XML.  Here's the output:
(where vHTML should just be a string that contains HTML, but it seems to be interpretted as XML? the string should be this:
vHTML = "<tr><td>test</td></tr>"

<?xml version="1.0" ?>
- <SOAP:Envelope xmlns:SOAP="urn:schemas-xmlsoap-org:soap:vl" xmlns:m="my-name-space">
- <SOAP:Body>
- <user>
  <StateID>OH</StateID>
  <StateName>Ohio</StateName>
  <Name>CCH User 1</Name>
  <AdminRights>10</AdminRights>
  <Load>T</Load>
  <MSG />
- <vHTML>
- <tr>
  <td>test</td>
  </tr>
  </vHTML>
  </user>
  </SOAP:Body>
  </SOAP:Envelope>

make sense??
>>Yes, well, I guess there are different ways to say the same thing. <<
Actually, that was my point they are not the same.  "Well-formed" is one thing "Valid" is something totally different.  In the context of the question I believe we are talking about well-formed not valid.

Anthony
ASKER CERTIFIED SOLUTION
Avatar of Anthony Perkins
Anthony Perkins
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks to everybody for all the help !!