| Thread | Last Post | Replies |
|
| XSL - to insert a node | 10 Sep 2004 17:54 GMT | 2 |
I have an xml : <DataRecords> <Point Alias='A' Value='1' Status='0' /> <Point Alias='B' Value='2' Status='0' />
|
| Error deserializing previously serialized object | 10 Sep 2004 16:09 GMT | 2 |
I've used XMLSerializer before to store user settings with great success, but this is the first time I've tried to serialize an Array. It serializes fine, but when I try to deserialize it, I get the following error:
|
| xml serialization of a class and adding qualified namespace | 10 Sep 2004 05:28 GMT | 1 |
I am successfully serializing to XML from a class like this: private static void CreateXML() { testClass c = new testClass();
|
| XML problems | 09 Sep 2004 23:27 GMT | 2 |
considering the following xml example <?xml version="1.0" encoding="ISO8859-1"?> <results> <interaction>
|
| Xml Schema: won't validate | 09 Sep 2004 17:56 GMT | 2 |
Can someone help me with this? I keep double checking my schema layout and it looks like my implementation is correct... yet it must not be. I have the following schema which is invalid (Says: C:\Work\WIMAR XML\WIMARKeyedText.xsd(7): Type 'ImageHeaderType' is not declared. An
|
| Help with XPathExpression, please. | 09 Sep 2004 14:40 GMT | 4 |
Hi, from an XML beginner.. I have an XML like the one below: <root> <vendor name="Microsoft">
|
| XmlSchemaElement.SchemaType returns null - bug? | 09 Sep 2004 07:39 GMT | 2 |
I wrote some generator of classes from XSD files but encountred unexpected (for me) values in parsed DOM. First I load XSD with XmlSchema.Read() method, then iterate through XmlSchemaElements. I have a function IsComplex() which return bool value if it has simple content (e.g. type ...
|
| XmlValidatingReader: continue parsing after XmlException | 09 Sep 2004 00:55 GMT | 1 |
When attempting to validate an XML file, If the file is valid, it validates correctly, and it will catch most ValidationEvents without problem. However, I keep getting the following Exception: System.Xml.XmlException: The 'RDaaaa' start tag on line '4' doesn't
|
| Write XML | 08 Sep 2004 08:18 GMT | 2 |
I'm new to XML and have a big problem. I should write a program that can show any XML-File in a TreeView. Thats no problem. Furthermore I should be able to change any entry in the Treeview and write the changes back into the XML-File. And thats the problem. It would be easy if I ...
|
| Serializing a class with a string[] array | 07 Sep 2004 21:35 GMT | 3 |
I have a class that contains a string array. However, I can't get this object to serialize in the xml output. Is there a trick to get a string[] to serialize? Thanks
|
| Error in output from transformation when output exceeds 16040 byte | 07 Sep 2004 20:39 GMT | 3 |
I have written an XSLT transformation on an ASP.NET page. The resulting HTML is primarily a table of links. I have found that when the resulting HTML is less than or equal to 16040 bytes, the output display is normal, but when the resulting HTML exceeds 16040 bytes, the output ...
|
| Serializing a class and not get the "?xml version" | 07 Sep 2004 20:01 GMT | 3 |
I am using the xml serializer to serialize the objects out of a collection into a file. The object that is being serialized is a class in my application. When I serialize my class it produces the following line.
|
| problem with retrieving xml document | 07 Sep 2004 17:22 GMT | 1 |
Hi, I am writing an application to retrieve RSS feeds from websites. While doing so I get the following error, Unhandled Exception: System.Net.WebException: The remote server returned an error: (407) Proxy Authe ntication Required.
|
| Xslt problem | 07 Sep 2004 11:04 GMT | 2 |
I have a xlst and xml file and i am trying to recreate this line of html <td height="127" background="images/greggs/montages/montage_final_2.jpg"></td> the xml is <Montage>images/greggs/montages/montage_final_2.jpg</Montage>
|
| Transforming a typed dataset | 07 Sep 2004 10:02 GMT | 1 |
I need to reorder a Typed DataSet in memory using an Xsl Transform. Most of the examples use stream which write to the hard disk or xml file. I want to do this in memory and then write the resulting Typed Dataset into a Session object which will be reused on multiple
|