| Thread | Last Post | Replies |
|
| populate dataset fk value using xmlschema xsd | 14 Mar 2007 21:46 GMT | 1 |
I am trying to use xml shema to load xml file to a dataset. Here are two tables: Table Item: Item_ID (key)
|
| Problem serializing type System.Xml.XmlElement | 14 Mar 2007 12:22 GMT | 3 |
I have written a little application that can grab part of a page from a web site. I then want to take this result and be able to serialize it so that it can be stored as XML. I am storing these "ResultNodes" as System.Xml.XmlElements but when I try and serialize (serialise) my
|
| Can't get encoding="iso-8859-1" | 13 Mar 2007 17:15 GMT | 4 |
I do the following: StringBuilder xml = new StringBuilder(); XmlWriterSettings xws = new XmlWriterSettings(); xws.Encoding = Encoding.GetEncoding("iso-8859-1");
|
| "Root element is missing" xml stream problem | 09 Mar 2007 14:11 GMT | 3 |
I am getting a "Root element is missing" error when I try to load a stream into and XmlDocument. Can anyone help me with what I am doing wrong??? Dim xmlTextWriter As XmlTextWriter = Nothing
|
| Performance issues with XMLTextReader | 09 Mar 2007 11:01 GMT | 2 |
I need to parse a lot of html-files from wikipedia, and I need to do it as fast as possible. So I started a little testing with XMLTextReader, but the results I get confuse me. It seems that the Reader ALWAYS needs about 1 second for the first textReader.Read()
|
| Validate xml instance against schema | 09 Mar 2007 01:49 GMT | 1 |
I am using XMLValidatingReader to validate xml instance against schema. Now my question is: in the schema, it has the target name space. In the instance, it doesn't have the name space. I can not add the name space into the instance, if I could do that I won't
|
| Still one question! | 08 Mar 2007 12:58 GMT | 1 |
Hello again! I wrote a small Windows App that converts characters to XML. Code below:
|
| Regular Expressions to XML | 07 Mar 2007 20:02 GMT | 5 |
Does anyone of you know any tool that would convert regular expressions to XML compatible form? I mean tool that would convert e.g. & to & etc. I have written an ASP.NET C# application that uses regular expressions
|
| Reading XML Webpage Without XSLT | 07 Mar 2007 19:08 GMT | 7 |
i'm trying to programatically read the xml that is used to create a webpage through xslt transformations. I can view the XML when i go to "View Source" in internet explorer, but whenever i try to download the webpage programmatically i can't
|
| Read XML using XSD | 07 Mar 2007 06:02 GMT | 2 |
Somebody gave me an XSD file to read a XML file. Can somebody give me an idea how to use this XSD file in C# to start reading XML files? Thanks, Ben
|
| Closing a file with XmlDocument? | 06 Mar 2007 22:55 GMT | 1 |
I am storing some small amounts of data in an xml file using XmlDocument. I basically do a .Load(filename), processing, then .Save(filename). However, once and awhile on the .Load it will say the file is in use by another process. This is the only program
|
| Is this a problem with / or . within the data values? | 06 Mar 2007 12:34 GMT | 1 |
Does anyone know why this code works in example A but not in example B ? Is this a problem with special characters within the data values? A) Set xmlNodeList = xmlParentNode.selectNodes("//PredecessorLink[CrossProjectName='A5']")
|
| XML , text, from xmlwriter. | 06 Mar 2007 12:25 GMT | 1 |
Is there a simple way to get the text, xml, from an xmlwriter. I have a XML writer that writes to a file, and I want another function to return the text that the xml writer is produced. Any suggestions?
|
| Error in proxy class generation when using WSDL.exe of 2.0 | 06 Mar 2007 08:48 GMT | 5 |
We were using .Net Framework 1.1 version of wsdl utility to generate proxy classes for our ASP.Net 1.1 version. But now if I try to create proxy classes for .Net Framework 2.0 version the classes are created but when I try to consume the web service some extra events are being ...
|
| Storing EndElements as XmlNodes | 05 Mar 2007 19:57 GMT | 6 |
How can I check for end elements in a XmlNodeList that consists of all the children nodes in my XML document? Can I avoid using XmlReader or XPath Navigator? Thanks for any help! I'm using Visual Studio 2005 and my application is in C#.
|