Dotnet Viewers
Fri, 4 Jul 2008 05:57:11 -0700 (PDT)
http://ganesh-freedotnetbooks1.blogspot.com
http://ganesh-freedotnetbooks.blogspot.com
http://freefreedownloadsoftwares.blogspot.com ...
|
Is this scenario possible?
Thu, 3 Jul 2008 07:33:02 -0700
I've included an xml and a dtd file in my Resources folder (This is a
Winforms VB project in VS2005.) I'm planning on using the xml in Resources
as a 'template', just load it and change values. The beginning code is:
Dim xDoc As New XmlDocument
xDoc.LoadXml(My.Resources.NameOfXMLFile)
... do some st ...
|
Namespaces & Atom feeds
Tue, 1 Jul 2008 00:15:54 -0700 (PDT)
I'm new to XML namespaces, and I seem to be missing something obvious
in this code snippet, which is trying to retrieve the feed/entry nodes
from an XPathNavigator document:
XmlNamespaceManager mgr = new
XmlNamespaceManager(xpNav.NameTable);
mgr.AddNamespace("atom", "http://www.w3.org/2005/Ato ...
|
Big picture questions - cleanest method for creating an XML file
Mon, 30 Jun 2008 13:45:00 -0700
I am not accustomed to creating xml files programmatically. The big picture
is this: This will be in VB/VS 2005/ winforms. I have a DTD, a sample XML,
and an outside data source I will use to populate the XML. In general I
think I know how to create elements and attributes and I'm sure I can hack
somethin ...
|
New Fourm on dotnet
Mon, 30 Jun 2008 02:58:29 -0700 (PDT)
HI
thank you all
here is a new fourm on dotnet
can post your queries here and get the answers as soon as possible
www.dotnettunnel.com ...
|
Breaking larger xml document into smaller ones
Fri, 27 Jun 2008 22:29:57 +0530
Hi All,
I have a problem which I think is sure easy enough that it would have been
solved already. I am looking for some pointers here -
I have an XML document like this:
<root>
<child>
<element1>value1</element1>
<element2>value2</element2>
</child>
<child>
<element1>value1</element ...
|
Count Nodes
Thu, 26 Jun 2008 17:42:07 -0700
I wish to get a count of nodes in an xml file in vb.net, so I am using the
following, as a simple example:
MyCount = xmlNodePart.Current.Select.//MyNode/Record[*]).Count
I saw in some xml specs that instead of [*] it should be [@*], but that does
not work. Why would the @ symbol be needed?
D ...
|
|
|
How do I set the utf
Thu, 26 Jun 2008 10:49:32 -0400
The following is what I have :
XmlWriterSettings xmlSettings = new XmlWriterSettings();
xmlSettings.Indent = true;
xmlSettings.IndentChars = " ";
xmlSettings.Encoding = System.Text.Encoding.UTF8;
StringBuilder sb = new StringBuilder();
using (XmlWriter writer = XmlWriter.Create(sb, xmlSettings))
====== ...
|
XMLSPY Question
Thu, 26 Jun 2008 07:10:30 -0700 (PDT)
Altova posted an announcement regarding XMLSPY 2008 stating it can
handle much larger files.
So how large is large?
Does it load the entire XML document into memory, or does it stream,
like xmlreader?
I read it has spyware so am reluctant to download the trial version. I
did download Stylus Studio and it ...
|
Encrypt Content In XML
Tue, 24 Jun 2008 18:28:07 -0700
I will have security rights stored in XML data, and I just need the content
of elements and/or attributes to be encrypted. When the dotnet application
reads in the information, it would run a simple decryption on the data. I
have one routine that does this, except is uses hexadecimal characters, so I
need it ...
|