all groups > dotnet xml > march 2007 > threads for march 15 - 21, 2007
Filter by week: 1 2 3 4 5
MSXML6 C++ VS2005: parsing "set" of nodes (& child nodes)??
Posted by j.a. harriman at 3/21/2007 11:09:15 AM
Hi,
I've looked at a number of examples in the MSXML6 help, but haven't been
able to find exactly what I'm looking for.
I have the following loaded into a "IXMLDOMDocument2" object.
I have a CString sString that I would like to check to see if it matches one
of the "Descriptions" below. ... more >>
Compare two XML Files and save to One
Posted by lewis76 NO[at]SPAM gmail.com at 3/20/2007 10:57:53 PM
Hi all,
I feel like this question has been asked before but I just cannot seem
to find a good answer.
Q: Is there a way to have two XML files and compare them and save them
to one.
Example:
XML-A:
<Season>
<Fruit>Orange</Fruit>
<Fruit>Strawberry</Fruit>
</Season>
XML-B:
<Seaso... more >>
Referencing Additional Namespaces XSL
Posted by SR at 3/20/2007 12:09:56 PM
I need to use a string replace function in my XSL document. I found a W3
library that has numerous string functions such as fn:replace(). When I try
using the namespace, I get an error
"Cannot find the script or external object that implements prefix
'http://www.w3.org/2005/02/xpath-funct... more >>
Looping through XmlNodeList
Posted by Raul at 3/20/2007 10:22:12 AM
Hi,
I have the following code, which picks up 43 different nodes from my
XML document
XmlNodeList amortNodes = amortDoc.SelectNodes("//
TValueAmortizationSchedule/AmortizationLine");
each node looks like this:
<AmortizationLineType>8</AmortizationLineType>
<Date>09/01/2006</Date>
<Lo... more >>
how to apply xslt within xml to that using .NET
Posted by RccH at 3/20/2007 4:57:04 AM
Beginner using xslt... So. I have an XML file which has a link into
xslt file like following...
<?xml version='1.0' encoding='utf-8' ?>
<?xml-stylesheet type="text/xsl" href="transform.xsl"?>
<customers> rest of the xml....
So How, using C# or VB.NET do I apply that xsl file into this same
... more >>
XmlReaderSettings ValidationEventHandler Firing Twice
Posted by Techno_Dex at 3/19/2007 4:19:45 PM
I have an issue with the EventHandler for the XmlReaderSettings object being
called twice during validation and I'm a little stumpped as to why. The
error message being given is the same error message both times. This is an
intentional error that I have introduced into the XML file to test m... more >>
Binding ASP.NET Menu to XML
Posted by dvomsaal NO[at]SPAM ddrtech.com at 3/19/2007 2:04:45 PM
I have created a XmlDocument that contains the exact layout that
siteMap uses, and then I bind my Menu object to it:
Dim xml As XmlDocument
xml = DirectCast(Session("MenuData"), XmlDocument)
Dim xmlDS As New XmlDataSource()
xmlDS.Data = xml.OuterXml
... more >>
Web 2.0 List
Posted by Anoop M at 3/19/2007 12:00:00 AM
Here is a comprehensive list of web 2.0 sites -
http://web2trends.blogspot.com/search/label/Web%202.0%20Directory
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Node Type both Element and Text
Posted by Kevin at 3/18/2007 5:09:06 PM
I have an XML node that has both attributes and text. I am having difficulty
getting the xmlreader to deal with this.
Sample XML Node:
<HomePhoneNumber Attribute1="Y" Attribute2="Y" Attribute3="Y">(425)
555-1212</HomePhoneNumber>
I'd like to iterate on this and output the node's path, na... more >>
Saving .csproj files
Posted by Al Pilon at 3/16/2007 10:03:03 PM
Any help would be appreciated for the following problem. I've already
spent a day at this, and enough is enough.
I'm writing a ORM program. and in the process of running it against a
database, I'm creating dozens of classes. I want to insert these
classes into the .csproj file automatically. ... more >>
XML file loaded and stored as cached dataset?
Posted by doug at 3/15/2007 3:59:08 PM
Have loaded balanced web servers that we do not allow to connect to our
database. Content is created and pushed to these sites. I want to add a web
service that may get multiple requests a second depending on peak access. I
have built an XML file from SQL DB and pushed this file to web serv... more >>
Redundant xmlns attribute
Posted by Greg at 3/15/2007 1:51:19 PM
If I have an XmlDocument with a deep hierarchy of nodes, with a
documentElement having an attribute xmlns="http://someurl.com" and all
children inheriting that namespace (but not having the xmlns attribute
explicitly declared), then why is it that when I perform
appendChild(someNode) on an e... more >>
Trouble with XPath query
Posted by tschulken at 3/15/2007 12:14:36 PM
I have a query where i need to look for a value of a lower level xml
element based on the value of a parent element existing first. Here is
a simple example of the xml
<S3Client>
<Buttons>
<Button>Activity
<RestrictedClientType>
<ClientType>... more >>
Xpath query fails to return a node
Posted by Amir at 3/15/2007 9:32:23 AM
Hi
I am trying to extract a node from the following XML doc
<?xml version='1.0' encoding='UTF-8'?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Body>
... more >>
xsd.exe generating multiple enums for simple type of included schema file
Posted by olympus_mons NO[at]SPAM gmx.de at 3/15/2007 9:18:44 AM
Hi,
I'm just discovering the power of xsd.exe, so maybe I'm doing
something wrong.
>From an external provider of a web service I received several xsd
schema files describing requests and responses. So there is an extra
xsd file for each response and each request as well as some base
schema... more >>
|