| Thread | Last Post | Replies |
|
| But it works without a namespace | 16 Feb 2007 13:07 GMT | 1 |
I have recently come to peace with XML namespaces and have switch to always ripping them out to using them. Has not been too bad but some things I use to do no longer work. Given this XML:
|
| fragment vs. document? | 15 Feb 2007 19:21 GMT | 7 |
I have some C# code that loops through an XMLDocument and needs to apply an XSLT stylesheet to each node in the XML document. My (simplified) code looks like this: XmlDocument xmldoc = new XmlDocument();
|
| Understanding XSD | 14 Feb 2007 10:33 GMT | 3 |
I'm hoping somebody can recommend a good in-depth book which will help me fully understand XSD. A book which is aimed only at entry level will *not* suffice. Does anyone have any suggestions?
|
| Non Default Constructor | 14 Feb 2007 02:21 GMT | 7 |
I'm building a C# application that uses web services. I have a class with a default constructor, an overloaded constructor, and some web methods. When VS creates the asmx file, it doesn't include the overloaded constructor. Plus it doesn't initialize the private objects in the ...
|
| Escape and unescape text for serialization and deserialization? | 12 Feb 2007 19:07 GMT | 2 |
Is it possible to use features from XmlDocument to unescape text back to its original raw text format after it has been escaped to handle non-HTML compliant character strings? I have code that serializes text to an XML file and then deserializes back
|
| Serializing CultureInfo | 12 Feb 2007 15:48 GMT | 2 |
I have a class which has a property of type System.Globalisation.CultureInfo in a class library project based on .NET framework 1.1 (Visual Studio 2003). I want to expose the classes and its functionalities using Web Service but while testing the web service, it throws the ...
|
| How parse XML values from a string? | 12 Feb 2007 13:43 GMT | 1 |
I have a string (see below) that I want to parse out the values. As you can see, some are element-based and some are attribute-based. <METADATA version="Format5"><TITLE value="Adrenaline Rush"/><DESCRIPTION>Take a thrilling look at the world of skydiving and base
|
| .NET/Java double-dimensional (jagged) array interop | 08 Feb 2007 20:54 GMT | 2 |
I've asked this question on the MSDN forums, but I've had no replies. I'm really stuck, so I'm gonna try my luck here. I have a Java web service which contains a simple function; the function returns a double-dimensional array of integers. I ran the wsdl
|
| Evaluation of Microsoft XPath exstensions ms:utc() | 08 Feb 2007 08:44 GMT | 1 |
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 ...
|
| xmltext reader and namespace | 06 Feb 2007 02:17 GMT | 2 |
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();
|
| Saving/restoring strongly-typed DataTable to/from XML | 05 Feb 2007 13:47 GMT | 1 |
I have a strongly-typed DataTable I need to save as XML and later reload it. I thought that all I had to do was: menuDataTable.WriteXml(filename,XmlWriteMode.WriteSchema);
|
| XML Formatting Issue With Elements | 02 Feb 2007 17:54 GMT | 2 |
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">
|
| XML excel file | 02 Feb 2007 15:33 GMT | 1 |
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"?>
|
| Encoding | 02 Feb 2007 13:25 GMT | 3 |
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.
|
| XMLNodeReader question | 02 Feb 2007 13:05 GMT | 1 |
Below is a part of my xml file returned from a webservice. Instead of converting to a datatable and going through it a record at a time checking if ClientCodeType = "Balloon_Type" and ClientCode = "R" to the OurCode of 3, I want to use the XMLNodeReader to get that result back ...
|