all groups > dotnet xml > december 2005 > threads for december 22 - 28, 2005
Filter by week: 1 2 3 4 5
Valid xml to read from an xml file?
Posted by Chumley Walrus at 12/28/2005 1:30:20 PM
I'm using vb.net, i get an error at the reader line saying the remote
server can't be found. Is the below even valid?
dim reader as XmlTextReader
reader = new XmlTextReader ("http://www.mysite.com/my.xml")
do while (reader.Read())
'do some action here
response.write(reader)
loop
thanx
... more >>
Topics in XML
Posted by Intermediate at 12/27/2005 8:52:27 PM
Hi,
I am a .NET Software Developer but I really have a hard time
in understanding XML and its use in my applications so
if anyone can tell me what are the important topics in .NET
related to XML and any online material or books I can find.
Thanks in advance.
... more >>
Array/NameValue Collection Serialization
Posted by parag.gadkari NO[at]SPAM gmail.com at 12/27/2005 8:22:54 AM
Can a name value collection be serialized as attributes to the Xml
element of class containing this name value collection?
For eg.
if a class pControl:
[XmlRoot("Control")]
public class pControl {
.....
NameValueCollection _dynamicProperties;
.....
}
if the _dynamicProperti... more >>
How to code <A> target attribute
Posted by Aaron at 12/27/2005 7:19:29 AM
<a>
<xsl:attribute name="href">
http://<xsl:value-of select="name" />
</xsl:attribute>
<xsl:value-of select="thelink" />
</a>
Here above is the code for <a> links getting transformed--I would like to
know how code in target=_blank?
TIA
... more >>
XML Parsing with SAX
Posted by Sam at 12/24/2005 11:08:38 PM
Hi, Do anyone know if SAX can be used to parse XML using dotnet framework?
If yes any sample will be greatly appreciated. Thanks.
... more >>
Newbie in XML
Posted by Curious at 12/24/2005 1:34:02 AM
Hi,
I am using the following code, and the xml being generated is shown
below:
XmlNode root = Rdf.document.DocumentElement;
XmlElement element = Rdf.document.CreateElement("rdf", "Stadium",
Rdf.RDF_PATH);
element.SetAttribute("about", null, Rdf.STADIUM_PATH+"/"+stadium.Name);
root.AppendC... more >>
Multiple namespaces
Posted by Curious at 12/23/2005 6:04:55 AM
Hi,
Is it possible to write the following with the use of XML? How?
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cd="http://www.recshop.fake/cd#">
Can someone help me out.
Thanks in Advance
... more >>
Editing root name using XmlDocument
Posted by sridev at 12/22/2005 5:15:34 AM
hi,
i am new to xml can any one plz tell me how to change the root name in
a xml.
<NewDataSet>
- <PersonInfo>
<ID>3123</ID>
<Person>Mohan</Person>
</PersonInfo>
- <PersonInfo>
<ID>3124</ID>
<Person>Ram</Person>
</PersonInfo>
</NewDataSet>
how to change <NewDataSet>... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
|