| Thread | Last Post | Replies |
|
| XML Schema question from a newbie | 26 Oct 2005 18:12 GMT | 1 |
I received an XML Schema in order to create some documents, but inside it there is a definition that looks mistaken: <!-- INFO is a name-value pair --> <xs:element name="INFO">
|
| Baffling READXML problem | 26 Oct 2005 17:43 GMT | 2 |
I have a well-formed XML file that I am trying to load into a dataset using the ReadXML method. It keeps telling me that "there are multiple root elements". I can view the data using XML Designer in Visual Studio 2003 without any problems and the schema and file have been
|
| how to generate xml schema with UTF-8 instead of UTF-16 | 26 Oct 2005 13:24 GMT | 1 |
I am writing code with C# to generate xml schema, however, the following code generate a UTF-16 in the first line. This will create some problems. How can get the code/missing what part of the code in C# to generate a first line with UTF-8 instead of UTF-16? Thanks,
|
| Deserializing xs:choice with xs:sequence problem | 26 Oct 2005 06:29 GMT | 2 |
If I define my schema as <xs:choice> <xs:sequence> <xs:element ref="el_1" />
|
| Xml Versioning Tool | 26 Oct 2005 04:05 GMT | 1 |
I've been tasked by my boss to write a tool that will update an xml (soap) file such that when the structure of the object which we're persisting to the soap file changes, my tool will apply the appropriate updates to bring the soap file up to the version of the code before the ...
|
| How to insert a node at a specific location in XML Doc | 25 Oct 2005 13:51 GMT | 4 |
Let's say I have the following XML document: <ROOT><Element1>Some Text</Element1></ROOT> I want to add a new element after Element1. I tried the following but, naturally, it doesn't work:
|
| problem compiling xsd with xs:choice node | 24 Oct 2005 20:39 GMT | 4 |
As part of my schema I need to ensure that at least one of two fields have values. I defined my schema as follows: ... <xs:choice>
|
| xsd schemas - how to... | 24 Oct 2005 20:21 GMT | 5 |
I have to specify that a person needs to have at least one out of three phone elements: <Phone type="home"/>, <Phone type="work"/>,
|
| Linked Schemas in a SchemaCollection | 24 Oct 2005 03:40 GMT | 4 |
(Posted to microsoft.public.xml originally, then realised this was a better place for it) I've got three schemas I'm trying to add to a schemacollection so that I can validate a series of documents. The schemas are going to be held
|
| Navigating through XML Documents | 23 Oct 2005 16:48 GMT | 4 |
Hi , I use VB.net to work with XML database,I need to use a DocumentNavigator class to navigate in XML document, I need to use MoveToChild/MoveToParent there the problem is that i don't know how to load this DocumentNavigator.
|
| Return DISTINCT ProcessID nodes | 23 Oct 2005 09:34 GMT | 5 |
I have the following XML file. Now I am using the code below to return the number of disticnt ProcessID's in the XML file. The result being returned is the 'System.Xml.XPath.XPathSelectionIterator', while the result should be
|
| XMLDocument.WriteXML question | 23 Oct 2005 08:58 GMT | 1 |
hello i have to know if the writeXML process is a blocking process. Other mean if i write doc.WriteXML(); int i = 0;
|
| There is an error in XML document | 21 Oct 2005 22:26 GMT | 2 |
I am creating a web client in c#. I use the "Add a Web Reference" wizard to read a WSDL file, then I simply call the method for the remote service. I get the floowing error returned when I make the call.:
|
| Write javascript | 21 Oct 2005 21:45 GMT | 2 |
How can I dynamically embed the content of a filename.js into a .aspx page before rendering it to the client? Thanks, ~yamazed
|
| XmlSerializer/XmlTextWriter all data on one line | 21 Oct 2005 21:17 GMT | 2 |
I'm an XML newb. I'm serializing a class and when I inspect the xml file, all the data is on one line rather than being nested and indented Is that normal?
|