Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
572 views

OK to put comments before the XML declaration?

Is it OK to put comments before the XML declaration in an XML file? <!-- Is this bad to do? --> <?xml version="1.0" encoding="utf-8"?> <someElement />
3
votes
1answer
44 views

How do I get rid of the xmlns declarations inserted by the XmlSerializer?

I have this type: [Serializable, DataContract] public class A { [DataMember(Order = 1)] public int P1 { get; set; } [DataMember(Order = 2)] public XmlSerializableDictionary<string, ...
2
votes
3answers
480 views

How can I make the xmlserializer only serialize plain xml?

I need to get plain xml, without the <?xml version="1.0" encoding="utf-16"?> at the beginning and xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
1
vote
5answers
82 views

Reading contents of XML file without having to remove the XML declaration

I want to read all XML contents from a file. The code below only works when the XML declaration (<?xml version="1.0" encoding="UTF-8"?>) is removed. What is the best way to read the file without ...
0
votes
0answers
36 views

In peoplesoft pagelet wizard, does XML need to declare the type of XML for the XSL to work?

I have an RSS feed that I want in a pagelet. http://studentaffairs.csun.edu/calendar/admin/Feed.php?CALID=39&TYPE=RSS&tags=Men%27s%20Basketball The XML of this feed does not have an XML ...
0
votes
0answers
73 views

Sending XML header with SimpleSamlPhp

I'm using SimpleSamlPhp for SAML Service Provider. SimpleSamlPhp is sending sending auth request without xml headers, but IdP says they require an xml header. How can I add utf-8 header to request? ...
0
votes
1answer
130 views

Adding a stylesheet declaration in my xml using Xerces-C

I have an application in c++ using Xerces-C as main xml manipulation library. I have my DOMDocument* and my parser and I want to set declarations. I do the following: ...
0
votes
2answers
61 views

Can I have an XHTML document with an XML declaration in standards mode for IE6?

I've been reading about this for the last half hour, and here's what I understand: IE 6 will render a page in standards mode if there's a valid DTD, but not if there are any comments above the DTD. ...
0
votes
2answers
124 views

wordpress doctype question?

how can I code in the following code into a wordpress site without the code causing an error with the php coding thanks. <?xml version="1.0" encoding="utf-8" ?>
0
votes
1answer
1k views

Whitespace before XML declaration from JSP

I'm trying to achieve full XHTML transitional validation of my JSP output but I've hit a snag. The top of the header looks like this: <?xml version="1.0" encoding="ISO-8859-1"?> <!DOCTYPE ...