all groups > dotnet xml > february 2007 > threads for february 8 - 14, 2007
Filter by week: 1 2 3 4
fragment vs. document?
Posted by Jan Eliasen at 2/14/2007 2:51:28 PM
Hi
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();
xmldoc.Load(filename);
XmlNodeList nodeliste =
xmldoc.SelectNodes("/*[local-name... more >>
Escape and unescape text for serialization and deserialization?
Posted by Richard Lewis Haggard at 2/12/2007 1:13:48 PM
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
to text. If the user enters XML illegal tex... more >>
Non Default Constructor
Posted by Mike at 2/12/2007 12:35:00 PM
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 class.
Is ... more >>
How parse XML values from a string?
Posted by Ronald S. Cook at 2/11/2007 5:19:59 PM
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
jumping - parachuting from... more >>
Serializing CultureInfo
Posted by Nahom Tijnam at 2/11/2007 1:26:11 AM
Hi,
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 following er... more >>
Understanding XSD
Posted by Andrew Brook at 2/8/2007 3:35:31 PM
Hi Everyone,
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?
thanks,
Andrew
... more >>
|