| Thread | Last Post | Replies |
|
| vs2003 & xsd:extension | 29 Oct 2004 16:44 GMT | 3 |
I have already read several existing posts about xsd:extension, but do not find something useful to my test case. I have one xml file and one xsd file. I can use a simple command line (C#) program to validate the xml file against the xsd file without any error. The problem is ...
|
| problem with <restriction> | 29 Oct 2004 15:56 GMT | 1 |
Below is the schema snippet I am trying to explore attributegroups and attribute's use property. However I am getting a validation error saying "undefined value for base encountered", pointing to <xs:restriction>. Please help. <?xml version="1.0" encoding="UTF-8"?> <xs:schema ...
|
| Polymorphism in XSD | 28 Oct 2004 19:35 GMT | 3 |
I'm trying to mirror some classes in an XML Schema: abstract class EndPoint class FileEndPoint: EndPoint class FtpEndPoint: EndPoint
|
| defaul namespace when serialize | 28 Oct 2004 14:51 GMT | 2 |
I'm serializing a class instance to xml file, but keep getting default namespace decleration, even I don't declare these namespace in my class: <cXML xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" otherAttri.. />
|
| AddNamespace where uri is not a http address and where there is no prefix | 28 Oct 2004 14:43 GMT | 3 |
I'm having a problem attaching a name space. I'm getting an xml string of information as a result of a third party web service. I can't change the format of the string. The xml file looks like the following
|
| XPath-Navigable-Document from Nodelist | 28 Oct 2004 13:29 GMT | 1 |
I would like to select some nodes from a very large XML document and then apply a stylesheet to the dom fragment / nodelist that is the result of my XPath-Query. It seems to me now that I have to build a new XMLDocument from the Nodelist
|
| How import some xml file to database (sql server 2000) using .NET ? | 27 Oct 2004 22:27 GMT | 2 |
I have a some xml file and database. How import this file to database? I must do aplication in VB .NET whose show imports some xml file to database SQL SERVER 2000? Do you have any idea?
|
| Problems Navigator Select | 27 Oct 2004 14:22 GMT | 1 |
Is it possible to filter an XML document twice? I have filter 1, and later in the code I want to apply filter 2. Filter 2 should be based on the results from filter 1. I have tried using an XPathNavigator: XPathDocument xpDocument = new XPathDocument(MyXMLFile);
|
| xml schema, restrict value of the element by name of the element? | 27 Oct 2004 12:27 GMT | 1 |
Trying to find out a way how to restrict value of the element by name of an element, it might be not even possible, but anyhow. Let's consider following snippet:
|
| CSV to XML | 27 Oct 2004 05:17 GMT | 1 |
I got string like this. New South Wales(NSW), Victoria(VIC), Queensland(QLD), South Australia(SA), Western Australia(WA), Tasmania(TAS), Australian Capital Territory(ACT), Northern Territory(NT)
|
| How do I populate a DataSet from a XML string? | 26 Oct 2004 19:45 GMT | 2 |
I have a string containing valid XML. How do I populate a dataset based on the string, without reference to an XML schema or writing the XML to file and reading it back in again?
|
| XML Declaration is missing when I convert a dataset to xml | 26 Oct 2004 16:14 GMT | 1 |
This is my first time trying to take the results of a query that reside in a Dataset and convert the dataset into an xml file. Everything works great, except that my resulting XML file is missing the xml declaration (the first line): <?xml version="1.0"
|
| Adding parent tag by XSLT | 26 Oct 2004 11:46 GMT | 1 |
hi I got xml file as <root>
|
| Grouping over multiple nodes - possible? | 26 Oct 2004 09:00 GMT | 2 |
Seeing how my previous post seem to have fallen between the cracks, I thought I would have a second, more direct, go at it. So my question is "Is it possible to group (Muenchian method) over multiple nodes?" I will use an example to try to explain what
|
| Looking for good examples of XPath queries | 25 Oct 2004 22:37 GMT | 2 |
Anyone care to recommend a web site that has some really good examples of XPath queries utilizing attributes? My XML books, and the web sites that I've looked at, don't really utilize attributes. So, their samples on the subject is weak. I tried looking at a
|