all groups > dotnet xml > december 2005 > threads for december 15 - 21, 2005
Filter by week: 1 2 3 4 5
XML Validation: required attributes
Posted by uttara at 12/21/2005 4:31:44 PM
Hello All,
I was trying to validate an XML document against a XSD which works
fine. Then I tried to put in a version attribute on the root element and
set it to a fixed value of '1.0' in the schema. Guess what? The
validator completely ignores the attribute inspite of the fact that I
have... more >>
Optimizing searches in readonly XML
Posted by Melgin at 12/21/2005 3:29:51 PM
Hi,
I try to optimize a high loaded site ... the site needs to store in memory,
a 400 tags XML that will be queried many times by many users (it have some
biz rules)...
I wonder if exists something like "compiled XML" or "binary XML" and clases
in dotnet that optimize this queries by time ... more >>
Trouble validating XML w/ XSD.
Posted by Jonas Bush at 12/20/2005 12:16:31 PM
I've got the some code to try and validate some xml. Against my schema,
the "Good" xml (below) produces a couple of warnings, which I don't
care about. The "Bad" xml (also below), produces warnings as well, but
*should* be producing errors. The XML validator at
http://apps.gotdotnet.com/xmltool... more >>
How to validate an Xml doc with XSD
Posted by Gilles Lambert at 12/20/2005 6:11:06 AM
Hi, i'm trying to validate a doc.xml against a schema XSD this way, but
it doesn't validate anithing :
Dim xrs As New XmlReaderSettings
xrs.Schemas.Add("urn:mediatheque-lrvb8", "schema.xsd")
xrs.ValidationType = ValidationType.Schema
AddHandler xrs.ValidationEventHandler, AddressOf Validati... more >>
question about using the correct schema namespace
Posted by Jay at 12/20/2005 5:56:02 AM
I have a Access/VBA client that exports xml to the local drive, then posts it
over http to an aspx page. The aspx page consumes it, then builds itself
based on the xml data.
This works find only if I first mannually change the root entry's namespace
url as shown below. Does anyone know how ... more >>
XML Validation in .NET
Posted by Francois Malan at 12/19/2005 11:28:07 PM
Hi
In a schema, I have an element definition as follow:
<xs:element name="XDateTime" nillable="true" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:dateTime">
<xs:pattern value="\p{Nd}{4}-\p{Nd}{2}-\p{Nd}{2}
\p{Nd}{2}:\p{Nd}{2}:\p{Nd}{2}"/>
</xs:restriction>
</xs:simp... more >>
reading large xml files...
Posted by bongoo at 12/19/2005 9:47:18 PM
I'm reading a 20Mb xml file in vb.net using .net framework 1.1
But when I'm opening that file for the second time, memory consuption goes
wild...
Do I need to take newer .net framework, or to close XMLDocument on another
way?
(I'm accessing data using XMLDocument & XMLElement)
Is it bett... more >>
Help needed with XPathNav
Posted by jainamber NO[at]SPAM gmail.com at 12/19/2005 1:29:14 PM
Hi,
I am using this code to search on the id attribute of the
Report element in this XML fragment. If I find a match for the id, then
I need to return the value of the attributes of the child column for
each column.
The code I have written is not working and I do not have a clue about
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
soap binding
Posted by RJ at 12/17/2005 11:13:51 PM
Folks, I need some help. I have a webservice that needs to be consumed by a
Java app in Websphere(our customer's partner). Unfortunately, we don't
know much on the Java side. The question is that they are requiring
that the <soap:binding transport="http://schemas.xmlsoap.org/soap/http"... more >>
Testfiles
Posted by MG at 12/16/2005 5:57:02 AM
Hi,
I need to verify a XML parser and need test files.
Is there anyone out there that has .net XML file with a corresponding .xsd?
that you can pass on to me?
Thanks in advance!
Sincerely Mats
... more >>
VS.net 2005 broke my client code that posts xml over http to asp.n
Posted by Jay at 12/15/2005 7:41:02 PM
After upgrading from VS 2003 to VS 2005, my stable VB client code that posts
xml over http to an aspx page stopped working. Somehow, asp.net (or IIS) is
expecting the root url to be http://www.w3.org/2001/XMLSchema, not
http://www.w3.org/2000/10/XMLSchema as shown below.
<root xmlns:xsd="htt... more >>
|