all groups > dotnet xml > july 2005 > threads for july 22 - 28, 2005
Filter by week: 1 2 3 4 5
Can't load xml containing \v
Posted by Harry Keck at 7/27/2005 2:35:03 PM
I have an xml document that I am trying to load, which contains RTF text. I
get the error, "{"'\v', hexadecimal value 0x0B, is an invalid character. Line
1, position 24." }" when I call this code.
System.Xml.XmlDocument xmlNewDocument = new System.Xml.XmlDocument();
xmlNewDocument.LoadXml("... more >>
XML validation problem (substitutionGroup)
Posted by Michael Skulsky at 7/27/2005 11:38:40 AM
Hi all,
I've got the following validation problem. There are 2 schemas and a
document:
-----------------------------------------------------------------
bar.xsd
======
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns:bar="urn:bar" targetNamespace="urn:bar"
xmlns="http://www.w3.org... more >>
Finding & Updating nodes within a CDATA section
Posted by Paul J Lay at 7/25/2005 10:25:23 AM
BlankI seem to be able to find and update nodes and attributes fairly =
well using the XmlDocument class thanks the great support I received on =
this newgroup. However, I a can't seem to locate properties contained =
with a CDATA section. Is this possible? I have attached a small =
example. ... more >>
XML for programing
Posted by cynthia helfen at 7/25/2005 8:37:11 AM
How can i use XML in my C++ applications?
cynthia.helfen@livepharm.com... more >>
How to perform xsl Transformation in Memory
Posted by kuangzhang NO[at]SPAM gmail.com at 7/25/2005 8:01:14 AM
I have an database that stores both the XSL and XML data and would like
to transform the two upon request from the user.
I have created a aspx page that takes the XMLDocID and XSLDocID as
parameter.
private void Page_Load(object sender, System.EventArgs e)
{
string XML = dsXML.Tab... more >>
traversing 2 trees at the same time
Posted by alfred at 7/25/2005 5:09:02 AM
Hi
my question is on traversing a tree with DOM. how would I be able to
traverse 2 trees at the same time. I have 2 XML documents, with similar
nodes. I would like to traverse 1 xml document, if I found a node that
matches another node in the other document, I would like to update attrib... more >>
Help with transforming file
Posted by Aaron at 7/24/2005 11:45:09 AM
Hello,
I want to transform html tags with in the xml file when it use the asp:xml
tag, how would I do this?
Here is the example of the xslt file:
<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0" >
<xsl:output method="xml" indent="... more >>
ems
Posted by Javier at 7/23/2005 11:42:02 AM
Hello:
I have a problem with encoding. I get information from a web page, and
sometimes it contains "strange" symbols like "á" and "é", and these come
encoding like "& a a c u t e ;", "& e a c u t e ;" and similar.
The problem is that i use this information in XMLDocument object, I load the... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
deprecated XML technologies?
Posted by ian at 7/23/2005 5:55:49 AM
XML is a huge area with so many related technologies, xpath,xsl, etc,
have any been deprecated or replaced with something better? For example,
I believe that DTD's are no longer popular (although my tiny mind has
already forgotten the new sexier way of specifying a schema).
As you can tell, it'... more >>
attribute names
Posted by ian at 7/23/2005 5:50:52 AM
Hi, I posted this on the general c# newsgroup a while ago and didn't get
a reply, so dug about and found you all here :)
------Original message----------
I'm using VS2005 latest beta, playing around with XML. I wanted a
solution to the question I've seen asked many times which is "How do I
... more >>
simple rdf to html doesn't work
Posted by cody at 7/23/2005 3:30:26 AM
I have the following feed which I want to convert to html:
http://www.heise.de/newsticker/heise.rdf but it does not work, I only see
the html elements empty as if it found no elements in the xml file, whereas
the feed http://www.golem.de/rss.php?feed=RSS1.0 works perfectly although I
annot s... more >>
What am I doing in XML?
Posted by futureofai NO[at]SPAM gmail.com at 7/23/2005 3:28:39 AM
Hi
Sorry to ask this kind of a question. Basically I will be creating a
program in .Net that can obtain instructions from other programs
written in any other language. The instructions will come to me in text
files that are created by the other programs. The text files will all
contain XML ba... more >>
XML Data Islands - use of DSO
Posted by intrader at 7/23/2005 2:34:14 AM
Is it possible to perform two way Data Binding (at the client) using and
XML DSO?
I am interested in dynamic update of a web page (including update of the
data source - the source for the XML).
Thanks... more >>
Any thing like this in .NET?
Posted by smartkid at 7/22/2005 6:37:17 PM
The XML Schema Infoset Model is a reference library that provides an API for
use with any code that examines, creates or modifies W3C XML Schema
(standalone or as part of other artifacts, such as XForms or WSDL
documents).
http://eclipse.org/emf/xsd.php
Thanks
... more >>
SelectNodes starts-with XPath help
Posted by Larry Viezel at 7/22/2005 3:43:23 PM
I have the following XML:
<folder name="global">
<folder name="_images">
<file name="creative_apply_txt.jpg" />
<file name="creative_culture_txt.jpg" />
<file name="push_btn_submit.gif" />
</folder>
<folder name="en">
<folder name="_images">
<file name="creative_apply_txt.j... more >>
|