M
Mr. M
Hi!
I Have de following problem...
I must call a web service, which returns a xml string, that i must to
process it and create a DataSet, using the readXml function:
myDataSet.ReadXml(strReader, XmlReadMode.InferSchema).
the xml have the following format:
<Results>
<Document relevance="56" xmlns="urn:Microsoft.Search.Response.Document">
<Title>XXX</Title>
<Action>
<LinkUrl fileExt="doc" size="204800">HTTP://xxx</LinkUrl>
</Action>
<Description>DESCRIPTION X</Description>
<Date>2003-09-26T19:33:08</Date>
<Properties xmlns="urn:Microsoft.MSSearch.Response.Document.Document">
<Property>
<Name>DAV:href</Name>
<Type>String</Type>
<Value>HTTP://yyyyy</Value>
</Property>
<Property>
<Name>DAV:displayname</Name>
<Type>String</Type>
<Value>HOLA</Value>
</Property>
</Properties>
</Document>
</Result>
The problem is that after I've created the DataSet, when i search in
DataTables for columns "DAV:displayname", or "DAV:href", these are not
found.
Anyone could give me any pointers???
Thanks!
M.-
I Have de following problem...
I must call a web service, which returns a xml string, that i must to
process it and create a DataSet, using the readXml function:
myDataSet.ReadXml(strReader, XmlReadMode.InferSchema).
the xml have the following format:
<Results>
<Document relevance="56" xmlns="urn:Microsoft.Search.Response.Document">
<Title>XXX</Title>
<Action>
<LinkUrl fileExt="doc" size="204800">HTTP://xxx</LinkUrl>
</Action>
<Description>DESCRIPTION X</Description>
<Date>2003-09-26T19:33:08</Date>
<Properties xmlns="urn:Microsoft.MSSearch.Response.Document.Document">
<Property>
<Name>DAV:href</Name>
<Type>String</Type>
<Value>HTTP://yyyyy</Value>
</Property>
<Property>
<Name>DAV:displayname</Name>
<Type>String</Type>
<Value>HOLA</Value>
</Property>
</Properties>
</Document>
</Result>
The problem is that after I've created the DataSet, when i search in
DataTables for columns "DAV:displayname", or "DAV:href", these are not
found.
Anyone could give me any pointers???
Thanks!
M.-