all groups > dotnet xml > february 2007 > threads for february 1 - 7, 2007
Filter by week: 1 2 3 4
Evaluation of Microsoft XPath exstensions ms:utc()
Posted by jerryn at 2/7/2007 11:25:02 AM
I am trying to evaluate the Microsoft ms:utc() XPath extension in an XPath
expression. When I do, I get an exception that I need an XsltContext. Given
these are microsoft extentions, it seems unlikely that I would need to
implement my own IXsltContextFunction class for microsoft published
... more >>
illegal character in xml file
Posted by Andy Fish at 2/6/2007 4:52:03 PM
Hi,
I have an XML file that was created as a DOM tree in .Net 1.1 and serialized
to disk. If I try to put character code 1 inside one of the attributes
(don't ask why), it seems to serialize perfectly ok and I get a file that
looks like this:
<element attribute="" />
which looks p... more >>
Converting XML with CDATA -> HTML
Posted by BillAtWork at 2/6/2007 3:35:01 AM
Hi,
I'm defining a report layout using an XML document, plugging data values
into fields before outputting the whole doc as an HTML page. I wrap each of
the data fields in CDATA section (in case the data contains reserved chars
like "&").
Currently, I perform a simple search-and-replace to... more >>
.NET 2005 versus 2003 standard edition
Posted by javanewbie22 NO[at]SPAM yahoo.com at 2/5/2007 6:20:41 PM
Dear experts,
There is a lot of talk these days about .net.
I'm considering buying the software to pick it up.
Yet something else to learn!
I notice that you can get older standard version
..NET 2003 on the web. Much cheaper than the 2005 version.
How much different is 2003 standard edit... more >>
Encoding
Posted by mortb at 2/2/2007 9:17:22 AM
1. How do I determine which encoding a xmldocument or xmlreader uses when
opening a document?
I'm not just talking about the <?xml encoding="utf-8"?> attribute, but the
actual encoding of the characters in the underlying stream.
2. How do I make sure that the encoding of my created xmldocume... more >>
XML Formatting Issue With Elements
Posted by Terrance at 2/2/2007 8:45:00 AM
I have the following issue I was hoping someone can help me with. I have an
XML doc in the following format:
<main>
<friend value="friend1">
<email>friend1@mailserver.com</email>
</friend>
<friend value="friend2">
<email>friend2@mailserver.com</email>
</friend>
</main>
My proble... more >>
XML excel file
Posted by jessi at 2/2/2007 8:39:30 AM
Hello!!!
I need to insert an image file in this XML Excel file. How can I do it?
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microso... more >>
Xml Array(?) of Values
Posted by smithb1028 at 2/1/2007 6:26:09 PM
I would like to create an XML structure like so:
<Root>
<Reasons>
<Reason>value1</Reason>
<Reason>value2</Reason>
</Reason>
</Root>
I fugured start with a string[] like so:
string[] reasons = new string[] { "value1", "value2" }
and then use a foreach to make each e... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
xmltext reader and namespace
Posted by MAF at 2/1/2007 2:18:47 PM
I am gettin the following error: 'ns1' is an undeclared namespace. Line 13,
position 5.
The way I got around this with using a xmldocument like this.
System.Xml.XmlDocument XMLDoc = new XmlDocument();
nsManager = new XmlNamespaceManager(XMLDoc.NameTable);
nsManager.AddNamespace("ns1"... more >>
|