all groups > dotnet xml > august 2005 > threads for august 29 - 31, 2005
Filter by week: 1 2 3 4 5
Transform Method on Demand.
Posted by K riley at 8/31/2005 3:04:49 PM
Hi.
I am using the transform method to create an HTML file using an existing XML Document and an XLST. I need to use XPath to extract
a node from my XML Document and my XLST document will format the node into something readable to my users.
My code works, however, I will be having multiple ... more >>
xmldocument vs. xpathdocument
Posted by Ben R. at 8/31/2005 11:14:03 AM
Hi,
Could someone explain the functional difference between these classes? From
what I understand, xpathdocument is faster in some scenarios, but I'm not
sure why. Further, why is it that the method of getting xml data into these
two classes differs? (xmldocument uses the load method, where... more >>
Remove XML Node
Posted by William at 8/31/2005 6:57:19 AM
Have somebody a brilliant idea how to remove a nodelist in a XML
document? (With C#)
I have this xml file,I want delete the stock nodelist when an user
don't have permissions to see stocklist of that location.
<Respo1>
<From>Test</From>
<To>Test</To>
<MsgType>RESPO1</MsgType>
<MsgVer... more >>
Details about XmlHttp
Posted by Sajid Khan at 8/31/2005 2:09:04 AM
Hi,
This is sajid. I want to use XmlHttp for refreshing a part of the web
page. But i dont know much about XmlHttp.
Any project that is using XmlHttp for doing similar thing will help me
understanding more about that...could you please tell anything about
that..
Thanks,
Sajid
*** ... more >>
XmlDocument.Load() and relative URL
Posted by el.c. - myLittleTools.net at 8/31/2005 12:00:00 AM
Hi all
I'm creating an XmlDocument object and then i need to load its xml
content from an url which returns an xml stream
My problem is that i cannot use absolute URL but *relative* URL
i.e.
oXmlDoc.Load("../xml/genxml.aspx");
I know that
oXmlDoc.Load(http://xx.xx.xx.xx/site/xml/genxml.as... more >>
in C# how do i transform an xml document with an xsl document when my xml document is a string and my xsl document is a string? the msdn examples only
Posted by Daniel at 8/30/2005 5:03:12 PM
in C# how do i transform an xml document with an xsl document when my xml
document is a string and my xsl document is a string? the msdn examples only
show how to do it with steams and files. in my case i have everything in
string
... more >>
how to make sure a xsl document has valid xsl syntax? i tried loading it into an xml document but that doesnt show syntax errors inside attributes suc
Posted by Daniel at 8/30/2005 5:01:54 PM
how to make sure a xsl document has valid xsl syntax? i tried loading it
into an xml document but that doesnt show syntax errors inside attributes
such as "foo/bar" vs "bar\foo"
... more >>
How to use schema validate xml file?
Posted by Knighterrant at 8/30/2005 4:07:47 PM
I have created my schema format(xxx.xsd) for my xml files, but how can I
use it validate my xml files?... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Embedded HTML tags in XML data
Posted by Bryan at 8/30/2005 3:22:02 PM
Hi.
I have queries that bring back recordsets from SQL 2000 that are being
converted to XML for display using XSLT templates.
The issue is that some of the verbose text has embedded <BR> tags. These
tags are being displayed on line. The end user does not want to see these
tags.
I ha... more >>
css style sheet
Posted by 00Eric Clapton at 8/30/2005 2:56:24 PM
How do I add a css style sheet to a HTML? Thanks.
... more >>
Any XML patterns and practices?
Posted by Chris at 8/30/2005 12:24:36 PM
Hi Folks,
Is there a good resource out there with some patterns on flexibly creating
XML documents? Basically, I need to be able to start with an instance of an
XML document, or a DTD, or a XSD, and produce something I can easily
populate with my own data and render as an XMLDocument.
I... more >>
inserting record into an xml doc using datagrid
Posted by Stephen at 8/30/2005 10:12:32 AM
I have the following for a datagrid that inserts a row into an xml
file. It works great, but inserts the data to a new top-level node. I
don't know how to specifiy an existing node for the inserted item:
void DataGrid1_Update(Object Sender, DataGridCommandEventArgs e) {
try {
... more >>
Parameters in XPath Query .
Posted by Speed at 8/29/2005 9:49:01 PM
I have a following xml file :
<Bitmaps>
<BITMAP id="1">
<BITMAP id="2">
<BITMAP id="3">
</Bitmaps>
if i need to go the node BITMAP id = 2 directly can i use the XPath
query as
string query = "/Bitmaps/Bitmap[@id = 2]";
... more >>
ReadOuterXml Locks Up
Posted by TJO at 8/29/2005 5:12:10 PM
The following code snippet seems to successfully read the first
outerxml but on the second time in the loop it locks up. Can anyone
see why?
Thanks
<code snippet>
using (FileStream fs = File.Open(test._LogFileName,
FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.None))
{
reader... more >>
xpath against dataconfiguration.config
Posted by news.microsoft.com at 8/29/2005 4:11:01 PM
Hi
I posted this question earlier today to microsoft.public.dotnet.vb.general
and microsoft.public.enterprise.tools. My apologies if anyone reading this
has seen the message already. I only just came across this forum while
searching again for the right place to post my question.
Oka... more >>
How to add XmlElement with a namespace
Posted by Krzysztof Kazmierczak at 8/29/2005 1:45:57 PM
Hi All!
I have problem with creating xml document with a namespace:
XmlDocument xmlDocument = new XmlDocument();
XmlElement rootElement = xmlDocument.CreateElement("foo");
xmlDocument.AppendChild(rootElement);
XmlElement boo = xmlDocument.CreateElement("boo");
boo.InnerText = "boo";
r... more >>
XML Serialization of CollectionBase and FXcop
Posted by bezel at 8/29/2005 9:12:01 AM
I have an object which has a collection in it which I serialize using the
XmlSerializer. According to FXCop, it is a bad practice to include the set
accessor on the collection because it could result in non-type safe behavior.
Fine. So I remove the set accession. The Collection inherits fr... more >>
need help with xpath query
Posted by Scott.Emick NO[at]SPAM gmail.com at 8/29/2005 6:54:04 AM
In the following XML example I am trying to grab the element that
contains the exchange rate (frbny:OBS_VALUE) using SelectSingleNode &
an expath expression, but none of the ones I've tried seem to work.
Any suggestions? (I'm using VB .Net 2003)
Thanks,
Scott Emick
<?xml version="1.0"?><... more >>
|