473,386 Members | 1,908 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Reading the value of an "xsi:type" attribute [unfortunate, but necessary cross-posting]

*Cross-posting from microsoft.public.dotnet.languages.csharp, since I
believe the question is better suited in this XML group*

Hello all,

I'm having some problems understanding all the ins and outs with datasets
and datatables (and navigating through the filled datatable)...

Just when I thought I had gotten the hang of it, another problem arose:
I can't seem to access the "xsi:type" attribute. That is, the XML file looks
something like this:
....
<situation>
<objectID>123</objectId>
<situationElement xsi:type="td:roadWorksType">
...
</situationElement>
</situation>

But when I try and filter the contents of the file (after I've read all
"situation" tags into a datatable) I can't seem to access the attribute
"xsi:type" - which I need to do to distinguish between different types.

When I change the XML and write "xsi_type" instead of "xsi:type", I'm able
to access this attribute by going to the right row and write
'rowname["xsi_type"]', but the files I will have to work on use the
attribute "xsi:type" and I haven't been able to access that attribute. Can
anyone help me read the value of the xsi:type attribute? Any pointers?
Thanks in advance!

Sincerely,
Carl
Nov 12 '05 #1
3 9325


Carl Lindmark wrote:

Just when I thought I had gotten the hang of it, another problem arose:
I can't seem to access the "xsi:type" attribute. That is, the XML file looks
something like this:
...
<situation>
<objectID>123</objectId>
<situationElement xsi:type="td:roadWorksType">


That attribute has a qualified name with the prefix xsi and the local
name type where the prefix xsi is usually bound to the namespace URI
http://www.w3.org/2001/XMLSchema-instance.
If you want to read that attribute value then you need to do
xmlElement.GetAttribute("type",
"http://www.w3.org/2001/XMLSchema-instance")
If that does not help then show your code currently reading attributes
so that we can suggest how to improve it.

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Nov 12 '05 #2

"Martin Honnen" <ma*******@yahoo.de> wrote in message
news:On**************@TK2MSFTNGP09.phx.gbl...


Carl Lindmark wrote:

Just when I thought I had gotten the hang of it, another problem arose:
I can't seem to access the "xsi:type" attribute. That is, the XML file
looks
something like this:
...
<situation>
<objectID>123</objectId>
<situationElement xsi:type="td:roadWorksType">


That attribute has a qualified name with the prefix xsi and the local name
type where the prefix xsi is usually bound to the namespace URI
http://www.w3.org/2001/XMLSchema-instance.
If you want to read that attribute value then you need to do
xmlElement.GetAttribute("type",
"http://www.w3.org/2001/XMLSchema-instance")
If that does not help then show your code currently reading attributes so
that we can suggest how to improve it.

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/

Thank you very much for the reply, Martin!
If I've understood this correctly, though, the "GetAttribute()" solution is
something you use when you've created a new "XmlDocument" instance into
which you've read the XML file in question. Myself, however, I have read the
XML file into a DataSet (which I've been told to do).

If I had used the approach of reading the XML file into an XmlDocument in
the code and then stepped through the nodes, I could have used your
solution, or something like the following VB code, right?

tempNode = situation.SelectSingleNode("td:situationElement", nameSpcManager)
If Not IsNothing(tempNode) Then xsiType(i) = tempNode.Attributes(0).Value
xsiType(i) = Replace(xsiType(i), "td:", "")

But, since I've been told to do my solution with DataSet, I don't know how
I should get the xsi:type attribute value. This is the code I currently
have, but trying to read the "xsi:type" value by doing
'childRow["xsi:type"]', as I have done in the following C# code, does not
work:

DataTable myTable = myDataSet.Tables["situation"]; // get the proper table
foreach (DataRow myRow in myTable.Rows)
{
string objectId = "" + myRow["objectId"];
foreach(DataRelation myRelation in myRow.Table.ChildRelations)
{
DataRow[] childRows = myRow.GetChildRows(myRelation);
foreach (DataRow childRow in childRows)
{
if (childRow.Table.TableName.CompareTo("validityPerio d") == 0)
{
foreach (DataRow myRow2 in childRow.Table.Rows)
{
validityPeriodStart = "" + myRow2["start"];
validityPeriodEnd = "" + myRow2["end"];
}
}
if (childRow.Table.TableName.CompareTo("situationElem ent") == 0)
{
if (childRow["xsi:type"].ToString().CompareTo("td:RoadWorksType") ==
0)
{
foreach (DataRow myRow2 in childRow.Table.Rows)
{
elementObjectId = "" + myRow2["objectId"];
elementCodedDuration = "" + myRow2["codedDuration"];
}
}
}
}
}
}
Sincerely,
Carl
Nov 12 '05 #3

"Carl Lindmark" <RepliesInNewsGroupOnly@Thanks> skrev i meddelandet
news:eS**************@TK2MSFTNGP09.phx.gbl...

"Martin Honnen" <ma*******@yahoo.de> wrote in message
news:On**************@TK2MSFTNGP09.phx.gbl...


Carl Lindmark wrote:

Just when I thought I had gotten the hang of it, another problem arose:
I can't seem to access the "xsi:type" attribute. That is, the XML file
looks
something like this:
...
<situation>
<objectID>123</objectId>
<situationElement xsi:type="td:roadWorksType">
That attribute has a qualified name with the prefix xsi and the local name type where the prefix xsi is usually bound to the namespace URI
http://www.w3.org/2001/XMLSchema-instance.
If you want to read that attribute value then you need to do
xmlElement.GetAttribute("type",
"http://www.w3.org/2001/XMLSchema-instance")
If that does not help then show your code currently reading attributes so that we can suggest how to improve it.

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/

Thank you very much for the reply, Martin!
If I've understood this correctly, though, the "GetAttribute()" solution

is something you use when you've created a new "XmlDocument" instance into
which you've read the XML file in question. Myself, however, I have read the XML file into a DataSet (which I've been told to do).

If I had used the approach of reading the XML file into an XmlDocument in
the code and then stepped through the nodes, I could have used your
solution, or something like the following VB code, right?

tempNode = situation.SelectSingleNode("td:situationElement", nameSpcManager) If Not IsNothing(tempNode) Then xsiType(i) = tempNode.Attributes(0).Value
xsiType(i) = Replace(xsiType(i), "td:", "")

But, since I've been told to do my solution with DataSet, I don't know how I should get the xsi:type attribute value. This is the code I currently
have, but trying to read the "xsi:type" value by doing
'childRow["xsi:type"]', as I have done in the following C# code, does not
work:

DataTable myTable = myDataSet.Tables["situation"]; // get the proper table foreach (DataRow myRow in myTable.Rows)
{
string objectId = "" + myRow["objectId"];
foreach(DataRelation myRelation in myRow.Table.ChildRelations)
{
DataRow[] childRows = myRow.GetChildRows(myRelation);
foreach (DataRow childRow in childRows)
{
if (childRow.Table.TableName.CompareTo("validityPerio d") == 0)
{
foreach (DataRow myRow2 in childRow.Table.Rows)
{
validityPeriodStart = "" + myRow2["start"];
validityPeriodEnd = "" + myRow2["end"];
}
}
if (childRow.Table.TableName.CompareTo("situationElem ent") == 0)
{
if (childRow["xsi:type"].ToString().CompareTo("td:RoadWorksType") == 0)
{
foreach (DataRow myRow2 in childRow.Table.Rows)
{
elementObjectId = "" + myRow2["objectId"];
elementCodedDuration = "" + myRow2["codedDuration"];
}
}
}
}
}
}
Sincerely,
Carl


I know the code looks a bit complicated (and maybe not totally correct?),
but I'm not COMPLETELY off the mark, now am I? One IS supposed to be able
to work with datasets & tables this way, isn't one? And shouldn't one also
be able to read the value of attributes as I described?

Any input would be greatly appreciated!
/Carl
Nov 12 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: johnsocs | last post by:
How do you validate the following XML document, I'm having problems with element 'one' with the attribute xsi:type="xsd:string" <?xml version="1.0" encoding="UTF-8"?> <zero...
2
by: Jason Cartwright | last post by:
I have an abstract base class and two derived classes that I want to serialize and deserialize with schema validation. When I serialize instances of the derived classes the XmlSerializer adds the...
0
by: Carl Lindmark | last post by:
Hello all, I'm having some problems understanding all the ins and outs with datasets and datatables (and navigating through the filled datatable)... Just when I thought I had gotten the hang...
7
by: stephan querengaesser | last post by:
hi ng, i try to invoke a webservice-method with an filter-object, that contains value types. if i don´t want to filter the return value of the method, i have to pass a new instance of the...
0
by: Kaimar Seljamäe | last post by:
Hi, I have to create a web service client which uses SOAP encoding but does not use "multi-reference" values (see http://www.w3.org/TR/2000/NOTE-SOAP-20000508/#_Toc478383513 item 10). If I...
6
by: geoffrobinson | last post by:
Hi, I'm serializing an object using XmlSerializer. It is serializing, but we are getting errors upon deserialization. We use the following code to serialize: FileStream fs = new...
1
by: Ganesh Muthuvelu | last post by:
Hello, Is it possible to make the dataset give the "xsi:type" data as well?. I need result from the dataset.GetXML method something like this for the column "a": <a xsi:type="int">12</a> Is...
1
by: tankbattle | last post by:
That is, what's the difference between <complexType name="Address" final="restriction"> <sequence> <element name="name" type="string"/> <element name="street" type="string"/> <element...
0
by: lamagra | last post by:
Hello all, I first wanted to say that this is my first post and thank you for taking a look at it. My question: I am trying to write an XML Parser using the Lib:XML package. The problem that...
2
by: motorpage | last post by:
Hi, I am a newbie to schema definitions so forgive me if this is a simple question. I am trying to create a schema for a complex type that allows instances of either of the two forms: ...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.