all groups > dotnet xml > may 2006 > threads for may 29 - 31, 2006
Filter by week: 1 2 3 4 5
xsd enumeration and pattern
Posted by news.microsoft.com at 5/31/2006 8:07:15 PM
Hello,
i got this attribute
<xs:attribute name="jour">
<xs:simpleType>
<xs:restriction base="stypeJour">
</xs:restriction>
</xs:simpleType>
</xs:attribute>
where
<xs:simpleType name="stypeJour">
<xs:restriction base="xs:string">
<xs:enumeration value="Lundi"/>
<xs:enum... more >>
Error selecting nodes
Posted by barbaraann at 5/31/2006 2:56:56 PM
I am new to dotnet and I am having trouble reading an xml file.
"The expression passed to this method should result in a NodeSet."
Here is my xml file:
<?xml version="1.0" encoding="Windows-1252" ?>
<root>
<Prov>
<Abrev>AB</Abrev>
<Postals>
<Postal>T</Postal>
</Postals>
... more >>
Cannot resolve the schemaLocation attribute C#
Posted by techie at 5/30/2006 3:56:49 AM
Hi,
I am using an xml schema (Schema1.xsd) which refers to two other
Schemas as follows.
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:plcm-s="http://www.mycompany.com/plcm"
targetNamespace="http://www.mycompany.com/plcm"
elementFormDefault="qualified" attributeFormDefa... more >>
How to save xml file to SQL2000? with c#
Posted by Shuan at 5/30/2006 12:00:00 AM
hi, How to save next xml file to SQL2000? with c#
thanks!
<?xml version="1.0" encoding="gb2312"?>
<MyData>
<CLIENT>
<CLIENTID><![CDATA[2300021923]]></CLIENTID>
<CLIENTNAME><![CDATA[guest1]]></CLIENTNAME>
<LOCALWEBSITE><![CDATA[index.shtml]]></LOCALWEBSITE>
<SOURCEWEBSIT... more >>
Tips and Tricks XML
Posted by JR at 5/29/2006 11:23:31 PM
Hi,
Anybody know where is the best site to learn Tips & Tricks programming for
XML ?
thanks
JR
... more >>
XML document and XML schema
Posted by Mike at 5/29/2006 1:36:37 PM
Greetings,
We have a requirement to utilize some sort of data storage, and XML
strikes as being as viable a technology as the next one.
I have started by using the XMLSchema designer to cook up a minimal
schema to get us started.
Now I'd like to take that schema and start a new XML docume... more >>
Convert Question (From XML to XML) using XSLT?
Posted by Homer at 5/29/2006 12:54:56 PM
Hi All,
I have following XML File:
<Header></Header>
<Category></Category>
<Item1></Item1>
<Item2></Item2>
<Category></Category>
<Item3></Item3>
Could someone please send me an example what is the XSLT text to
convert it to:
<Header>
<Category>
<Item1></Item1>
<Item2></It... more >>
|