| Thread | Last Post | Replies |
|
| XslCompiledTransform? possible problem with html decoding | 29 Feb 2008 13:05 GMT | 5 |
I have an XmlException being thrown trying to use XslCompiledTransform while using the google api. My suspicion is there is some html decoding happening that I want to prevent... something like this
|
| Set Element Prefix when serializing a class | 29 Feb 2008 09:13 GMT | 2 |
I am serializing a class and want to set the prefix on the elements. This is the element I am getting when I serialize the class. <d1p1:Header> and I would like to set the prefix "d1p1" to someting else. How do I do this.
|
| now to set line endings with XSLT | 28 Feb 2008 13:38 GMT | 3 |
I am using .Net 2.0 XslCompiledTransform with output method=text. it seems to be converting all the line endings in the output to cr/lf regardless of how I generate them. for instance, this fragment <xsl:text>|
|
|
|<xsl:text>
|
| On the Fly XML Validation | 28 Feb 2008 13:04 GMT | 5 |
In my Project i am using a Charting tool called Fusion Charts. The charts are rendered as Flash objects (.swf files) and it uses XML as the data source. However in my Project the XML is generated at run time based on the search criteria specified by the user, now my problem is ...
|
| DOMDocument to XslCompiledTransform | 28 Feb 2008 08:33 GMT | 9 |
I am trying to convert C# project from .NET 1.1 to .NET 2.0. I am using the XML Document Object Model to display an XML string in a webbrowser control and would like to covert to XslCompiledTransform. I am having problems finding a stylesheet to use with XslCompiledTransform.
|
| Using the classes created with xsd.exe | 26 Feb 2008 10:11 GMT | 2 |
I have created classes from several xsd files. These files create about 150 classes and spot checking them they do represent types in the xsd files. the question is how do I use these files. How do I load data into them and create xml from them. Is there some articles about this ...
|
| Root Element is missing | 25 Feb 2008 14:58 GMT | 3 |
i am getting the error "root element is missing in the below code at line xdoc.LoadXml(Trim(sxp_message))..Kinldy help me if i need to chnage this code...This code is giving me correct xml (i checked in quickwatch) and it seems that it has every thing corrrect then why this ...
|
| Serializing and transforming data in a class | 24 Feb 2008 23:51 GMT | 2 |
I have some classes that I have configured for XML serialization. I have been able to write the files to the hard drive and then load them in and transform them into the HTML that I want. What I would like to do is skip the file on the hard drive and serialize the class ...
|
| ParentNode doesn't work | 23 Feb 2008 12:49 GMT | 1 |
I am trying to retrieve title of the parent (post) by the id of the comment, Why doesn't this work? XML <root>
|
| Adding newline hex character to XmlText node in XmlDocument | 22 Feb 2008 15:13 GMT | 5 |
When I create a XmlText node containing the new line hex character " " it is masked to "
" when I save the document object to a file. I guess this is due to the fact that the "&" character is reserved. How can I write a "
"?
|
| Create tables from xsd | 21 Feb 2008 22:58 GMT | 4 |
I have some xsd files and I want to create tables from them. Is there a utility to do this. I have used the xsd.exe to create the classes from the xsd files and that worked. I am new to xml programming. Thank you
|
| Can't Access XML from VB6 dll | 21 Feb 2008 22:30 GMT | 1 |
How to I get access to a MSXML2.FreeThreadedDOMDocument60 document in a Microsoft Visual C# 2005 dot net project? I'm writing a dot net executable that needs to access a by ref XML dom from a Visual Basic 6 dll. The dll returns XML but I'm not sure how to
|
| Given xsd files, need to send XML with data | 21 Feb 2008 18:03 GMT | 1 |
I have been given a set of xsd files which I need to use to generate XML files with my data added. I am using the DataSet.ReadXmlSchema() but get the error: System.InvalidOperationException: Nested table 'Contact-Address' which
|
| Save XmlDocument with hierarchical line breaks / indentation | 20 Feb 2008 14:05 GMT | 3 |
I am creating a Xsl file programmatically with a XmlDocument object. I save the document with XmlDocument(string Path). All Nodes added to the document root are idented nicely. But any child nodes to them are just written in the same line. Is there a possibility to modify
|
| Flatten XML file | 14 Feb 2008 09:26 GMT | 3 |
I have a large xml file that contains many nested nodes that I want to convert into a flat structure so I can read it into a single database table. I am using VB.Net / SQL Server 2000.
|