all groups > dotnet xml > april 2006 > threads for april 15 - 21, 2006
Filter by week: 1 2 3 4 5
Add XMLNodeList to new XMLDocument
Posted by GCeaser NO[at]SPAM aol.com at 4/21/2006 8:38:23 AM
All,
I have a very large XML document that contains two types of
elements. I want to select all the elements of each type and place
them in separate XML documents.
This is what I have so far:
'Add the Metis namespace so the querys will work
lobj_namespaceMana... more >>
How to create element in namespace
Posted by FabrizioSW NO[at]SPAM gmail.com at 4/21/2006 3:07:17 AM
Hi all i've to create a xml doc like this
<?xml version="1.0" encoding="UTF-8"?>
<Main xmlns:x="http://www.w3.org/1999/XML/xinclude">
<x:include href="one.xml"/>
<x:include href="two.xml"/>
<x:include href="more.xml"/>
</Main>
i tried to use xmlnamespacemanager and also to declare the nam... more >>
XmlElement Move up & Down
Posted by beachboy at 4/21/2006 12:00:00 AM
How I can Move up or down XmlElement?
Please advise. Thanks in advanced.
... more >>
Problem getting node
Posted by John Wilhelm at 4/20/2006 8:44:05 PM
I'm having a problem in by VB.net 2005 application. When i try to get a node
from my app.config file the node come back with "nothing". The xmldocment
loads OK, but I can't retrive a node. The app.config file is listed below
and the code is listed below that, the line with "-->>" is where i tr... more >>
get rid of blank namespaces
Posted by Lore Leunoeg at 4/20/2006 12:03:26 AM
Hello
I'm using c# XmlDocument class to add new XHTML-Nodes to my website.
Unfortunately XmlDocument always adds an unwanted empty namespace attribute
xmlns="" to every new Element.
These empty namespace attributes cause that the elements are'nt found any
more when I'm reparsing the document.... more >>
Where to store schemas and stylesheets?
Posted by Mr Flibble at 4/20/2006 12:00:00 AM
What is the best, or better RECOMMENDED, way of containing any schema or
stylesheet that is needed by an application, in a situation where you
are not sure any other type of access will be allowed. such as file://
or http://.
So far I've put all the XML within a resource file but I see tha... more >>
replace invalid xml characters
Posted by John A Grandy at 4/19/2006 3:52:04 PM
I know that System.Security.SecurityElement.Escape() will replace invalid
xml chars with valid equivalent ...
But is there another method to accomplish same that is "closer to home" ?
... more >>
"the uri scheme is not valid" error when working with XslTransform load method
Posted by Mr Flibble at 4/19/2006 12:58:00 PM
Hi All
I've decided to put my stylesheets in a base64 .resource file for
deployment and versioning reasons. I dont know if it's a great idea to
do this but I couldn't think of another way of doing this other than
making them available via www which may or may not be accessible (so
this is a ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
RSS <channel><link> element
Posted by John A Grandy at 4/19/2006 9:43:58 AM
When constructing an RSS 2.0 XML doc , should the <channel><link> element's
value be
1. the url of the page the displays the content that the RSS feed describes
:
fox example: http://www.myecommerce.com/results.aspx/?keywords=mens+dress
2. the url of the page which generates an up-to-da... more >>
is there any limit to how long of a string SqlDataReader.GetString() can return?
Posted by Daniel at 4/18/2006 8:41:48 PM
is there any limit to how long of a string SqlDataReader.GetString() can
return?
... more >>
performance difference when using XmlDocument or XmlElement.
Posted by RK at 4/18/2006 12:46:11 PM
What is the difference in performance if using XmlDocument or
XmlElement as parameter in C# class method.
thanks in advance.
--RK
... more >>
xml file data source
Posted by Dirk at 4/18/2006 11:27:36 AM
I would like to run SELECT SQL queries against DataTable's in my DataSet
which has been initialized with ReadXml. Has anyone done this? What is the
connect string, provider, etc? How?
... more >>
Error Http 413: entity too large calling web service on Win2003 Sr
Posted by Pablo at 4/18/2006 7:50:02 AM
We are calling a web service running in IIS 6.0 (Windows 2003 Server)
When we call a web service method to send a large xml document (2Mb) obtain
an http error 413 (entity too large)
We have increase the web service reception size limit to 10Mb and still fails.
Is there any limitation in ... more >>
XML and & character as data
Posted by BenI at 4/17/2006 4:33:26 PM
Hello,
I have a XML file using Iso 8859-1 encoding.
Every time when I try to put & character as Tag's value
XMLDocument Reader throws Exception.
How should I code & character as an ordinary data character
in XML file?
Cheers!
... more >>
Storage methods
Posted by imago at 4/17/2006 11:04:58 AM
Hi,
What will be the solution and explanation for the following query? Pls
suggest me w/ description...
You have created an ASP.Net application using C# for ABC, Inc. The
application must ensure that all flight bookings can be shared and
displayed quickly among all users of the application.... more >>
XmlDocument: "connection was closed" exception reading local file???
Posted by Lore Leunoeg at 4/17/2006 12:01:32 AM
Hello
I want to load a local file into the XmlDocument cache. But when I'm not
connected to the internet I get this exeption: "The underlying connection
was closed: The remote name could not be solved."
Has anyone an idea how I can avoid this exception?
Thank you
Sincerely Lore
********... more >>
Replace all instances of an element
Posted by Yourself at 4/15/2006 4:46:34 PM
Hi, say I have the following XHTML document:
<div id="Fred">
<div id="Bert">
<div id="Jim">
<p>Hello</p>
<p>etc</p>
</div>
<div id="Bob">
<p>Goodbye</p>
<img src="arg.gif" />
</div>
</div>
</div>
Say I want to replace all <div> elements wi... more >>
|