| Thread | Last Post | Replies |
|
| Problem with .NET Beta2 upgrade, with XSD traversal (LocalElements issue!!) :-( | 20 May 2005 02:07 GMT | 2 |
I had a program in .NET Beta1, where in I was programmatically traversing the Xml Schema using the given code snippet. However today with migration to Beta2, I am facing a compilation issue that LocalElements property on XmlSchemaComplexType not found. I now dont know
|
| XmlSchemaImport, XmlSchema's and derived type | 19 May 2005 20:22 GMT | 1 |
Have somebody had already the problem of having to write more than one XmlSchema, where some of these schemas have imports to others and respectively derived types? The imports cannot be resolved until I dont save all schemas to disk, but I cannot do this because I get an error for ...
|
| [XmlInclude(typeof(System.Drawing.Font))] | 19 May 2005 18:15 GMT | 1 |
I am learning how to use the XmlSerializer. I have a class that has a member of type System.Drawing.Font such as: [XmlInclude(typeof(System.Drawing.Font))]
|
| Converting escape characters for xml (C++) | 19 May 2005 12:12 GMT | 1 |
How do I convert escape characters (">", "&" etc.) in a string that I would like to save in an xml (in C++)? How do I convert the string back, to include the special characters? I prefer using a function that converts all relevant characters rather than
|
| XML Document | 19 May 2005 12:12 GMT | 1 |
I have a list of products in an xml file I want to modify the document by adding, removing and editing items. I'm developing on the Compact Framework and as a result memory is an issue. I don't really want to build a DOM of the XML using XML Document, since it
|
| in .NET, how to manipulate xml like this? thanks! | 19 May 2005 12:06 GMT | 1 |
<?xml version="1.0"?> <a:multistatus xmlns:b="urn:uuid:c2f4010-65b3-11d1-a29f-00aa00c14882/" xmlns:c="xml:" xmlns:a="DAV:"> <a:response>
|
| Help with reading from XML file... | 19 May 2005 12:06 GMT | 1 |
I'm using the following to pull a string from an XML Log file: Public Sub ReadXMLFile() Dim xmlDoc As New XmlDocument xmlDoc.Load("d:\test.xml")
|
| newbie needs help | 19 May 2005 11:48 GMT | 1 |
Hey my child elements look like this: <MessageElement> <User value="Tadek" /> <Message value="hello helo" />
|
| XML The data at the root level is invalid. Line 1, position 1. | 19 May 2005 02:59 GMT | 3 |
Im getting this error while trying to read a xml file that i receive from a POST heres the code: Dim MyXmlReader As XmlTextReader
|
| How to safeguard losing XML file content? | 18 May 2005 21:58 GMT | 6 |
I need some help with this: I am trying to update some data using XmlTextWriter. I instantiate first and then do some validation and then copy data into the dataset. Finally I commit the changes. As the following excerpt:
|
| Problem with XML file? | 18 May 2005 06:49 GMT | 3 |
I'm using the following code to create an Xml document to be saved by the browser (IE): MemoryStream stream = new MemoryStream(); OrderManager.ExportToXml(stream); // Creates Xml
|
| Transforming part of the XML | 17 May 2005 21:48 GMT | 4 |
I am trying to transform part of the XML in a file using XSLT. I select my node by a XPathNavigator and pass it to an XslTranform to Transform that. But unfortunately it transforms the whole XML document instead of part of it. Is there any way that I can transform only the part ...
|
| XSLT question | 17 May 2005 18:52 GMT | 2 |
Can XSLT be applied for transforming .txt files or are they applicable only for xml to xml transformation. Currently all the clients send file to a server in one particular format. The format of the file which the server accepts is going to
|
| Finding out the default namespace of an XML document | 17 May 2005 17:43 GMT | 1 |
I'm reading in an XML file with might be in either a 'new' format which defines a default namespace, like this : <rootElement xmlns:some-url> <otherstuff/>
|
| Convert XmlDocument to XpathDocument | 17 May 2005 14:25 GMT | 5 |
I've an object of XmlDocument, I need to pass it to some function which takes XpathDocument object, How could I convert? There is not Conversion Operator overload like that. Your reply might help me a lot.
|