| Thread | Last Post | Replies |
|
| DataSet.ReadXml fails when a percentage (%) sign is in the filename followed by 2 hex characters | 21 Oct 2005 20:28 GMT | 1 |
Using C# in .Net 2003, DataSet.ReadXml fails when a percentage (%) sign is in the filename followed by 2 hex characters. Seems that the % sign is likely encoding the following 2 hex characters. So c:\test%ab.xml fails for ReadXml since %ab is interpreted as 171 and
|
| REdering Javascript from an XML file | 21 Oct 2005 20:15 GMT | 1 |
I have 20 javascript files I would like to dynamically write to my rendered web page. What I would like to do is instead of saving them into a database table save them into a XML file then retrieve them according to user selection. The question is how do I do that?
|
| Transform Xml to DataSet | 21 Oct 2005 09:41 GMT | 5 |
I am working on a problem which requires me to take a String variable containing some Xml, transform it using Xslt, and dump the result into a DataSet. What would be the quickest way to do this? - I don't want to use any files
|
| am I misunderstanding readxmlschema ? | 21 Oct 2005 07:05 GMT | 1 |
I am writing an xml file from a dataset. I don't want the xml file to use the table names, I don't want the schema inferred from the dataset. Because of this I created an xsd to provide an explicit schema. I create my dataset object, I set it's readxmlschema to my xsd file, then ...
|
| streaming random filetypes from .aspx | 20 Oct 2005 20:42 GMT | 1 |
streaming random filetypes from .aspx how to stream a file from inside a .aspx? e.g. so one could go href="./foo.aspx?file=bar.mp3" or href="./foo.aspx?foo.dat" etc. preferabley i would like all file types to open with "save as" when href clicked
|
| problems compiling xsd in .Net 2003 | 20 Oct 2005 17:52 GMT | 5 |
I have an .xsd document (Inc_B.xsd) that "includes" two more from the same folder: <xs:include schemaLocation="Inc.xsd" /> <xs:include schemaLocation="Inc_A.xsd" />
|
| XSLT, XML to XML | 20 Oct 2005 02:20 GMT | 5 |
I would like to transform this; <?xml version="1.0" encoding="utf-8" ?> <ProductList> <Product>
|
| Schemas, choice and max occurence | 20 Oct 2005 02:04 GMT | 3 |
One of the nice features of XML is that it is order independent i.e. <a>1</a><b>2</b> works as well as ><b>2</b><a>1</a>. Unfortunately, the schema system in .NET doesn't seem to be happy with this. It is constantly throwing in <xs:sequence> tags. I can replace this with a <xs ...
|
| XSLT Optimization | 19 Oct 2005 16:18 GMT | 2 |
Hopefully, someone could point me in the right direction. I have we services that takes a DataSet object and Transforms it into pre-defined XSD (outside of my organization's control). I hav successfully done everything, now I am at a point where I want t
|
| Xslt transform in code yields nothing | 19 Oct 2005 13:27 GMT | 3 |
I'm having a problem doing an Xslt transform in code. I've done it before, so I'm not really sure why its not working. The problem is that the result of the transform is an empty string. I expected the xml to be transformed into a plain text document. Everything works
|
| CDATA string? | 19 Oct 2005 06:24 GMT | 8 |
I have a string that is returned from a web service that is XML so the string is enclosed in CDATA[![ . . . ]]. The string/data enclosed in the CDATA section is real XML. If I try to LoadXml into an XmlDocument I get an exception. Does anyone have suggestions on how I can strip ...
|
| Pretty print XML? | 18 Oct 2005 23:50 GMT | 5 |
I am sure this has been asked enough to warrant an FAQ but I could not find it. Does anyone have some code and maybe an XSLT stylesheet that would allow me to transform an XML string to a "pretty" version (nodes indented on separate
|
| Two Deep XML? | 18 Oct 2005 23:11 GMT | 2 |
I have some code which creates an XML output like this: < Product> <Product ID>1</ProductID <ProductValue>5.00</ProductVaue>
|
| Need XPath examples for following-sibling | 18 Oct 2005 17:55 GMT | 3 |
I have the following xml. I need to use XPath to get the year when ever the style is pickup. Both year and style are siblings. <?xml version="1.0" encoding="UTF-8"?> <automobiles>
|
| Newbie - how do I post XML from c#? | 18 Oct 2005 17:13 GMT | 1 |
I want to programatically create a small xml doc in memory, post it to another site then capture the resultant xml response into another xml doc for parsing. I don;t want to save the file to disk, I want in all done in memory and automatically. eg, this is what I have so far;
|