all groups > dotnet xml > april 2007 > threads for april 15 - 21, 2007
Filter by week: 1 2 3 4 5
Validation errors in xml file
Posted by Doug at 4/20/2007 12:53:26 PM
Hi,
I am trying to use a validation method against this xml and keep
getting 'The 'name' attribute is not declared' and I can't figure out
why.
Here is my XML:
<XmlCommand xmlns="http://intranet/hstServices/Schemas/XmlCommand.xsd"
connectionKey="SomeKey" commandTimeout="60" appId="122"
ap... more >>
Reading the XSD to get the Elements and Attributes for the XML
Posted by tdpriya1984 NO[at]SPAM gmail.com at 4/19/2007 9:39:57 PM
Hi,
Is it possible to fetch the Elements and Attributes in XML by reading
the XSD??
I want to develop a application whose Elements and Attributes changes
when i change my Schema. The Elements and Attributes will be displayed
in the Form to fetch the user input and the new node will be appended
... more >>
how to write this out using xmlwriter
Posted by Paul at 4/19/2007 12:46:01 PM
Hi I have a .net application and am using the xml writer class to create an
xml file that opens as an excel file. I am trying to write out the following
but am having difficulty.
<Row>
<Cell ss:StyleID="s87">
<ss:Data ss: Type = "String">
<Font html:Color="#FF0... more >>
.NET and XMLSchemaSet
Posted by Christopher at 4/19/2007 6:54:01 AM
Hello,
Using .NET 2.0 and the System.XML.Schema.XMLSchema class. I am adding some
schemas into the XMLSchemaSet object using XmlSchemaSet.Add.
The schemas I am adding have circular imports, and therefore I have
implimented a custom XMLResolver class to help filter out duplicate schemas.
Now ... more >>
Accessing an XSD file
Posted by Doug at 4/18/2007 5:22:34 AM
I'm trying to access a schema file as such:
Dim settings As XmlReaderSettings = New
XmlReaderSettings()
settings.Schemas.Add(webServiceNamespace, schemaFileName)
settings.ValidationType = ValidationType.Schema
Even though the webServiceNamespace value abo... more >>
XPath help
Posted by JHD at 4/17/2007 11:19:18 PM
Hi,
I'm trying to use the XMLDataSource and DataList controls in Visual Web
Developer Express (VB.Net) to present the following rss file in a web
application. The problem lies in that I want to just select items (title,
description and link) that are in the 'april' category. Can anyone help... more >>
Data display issues
Posted by Richard at 4/17/2007 5:23:29 PM
I am new to XML so pardon my ignorance. I have an XML file that is used to
layout an invoice from a program. The problem I am having is I need more
data than the program puts out so is it possible to use a script or
something to query an MS SQL Server database for the additional data. I so
h... more >>
specify DTD location?
Posted by Stephen Falken at 4/17/2007 3:58:51 PM
I need to validate incoming XML files in a VB.Net 2005 application that
must adhere to a DTD. This DTD is the only schema these XML files need to
validate against.
How can I specify/load the DTD, either as a file in the application path
(installed with the application), or better yet as an ... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Urgent problem with System.Xml.Schema.XmlSchema
Posted by JMD at 4/17/2007 1:28:18 PM
A set of xsd files has been working fine for us at this site, but now
it gives *intermittent* errors for someone at a different cite (who is
consuming the code we are producing). Most of the time it works
fine. Occasionally it gives an error in the schema compiler:
"System.Xml.Schema.XmlSc... more >>
XML reader issues....
Posted by Lloyd Dupont at 4/17/2007 12:00:00 AM
I have a XML document (not of my making) which starts like that:
==========
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
.........................
=========... more >>
Can I extract the xpath to all elements within a XSD schema?
Posted by Maxwell at 4/16/2007 7:32:01 PM
Hi,
Is there any tool or API call that extracts the xpath for all elements
within an XSD schema?
Here are some examples:
Order/OrdrItems/ProductID
Order/Customer/Address
Any help would be appreciated,
Max
... more >>
How many times does a control trigger a "MODIFIEDCHANGED" event???
Posted by Alan Mailer at 4/15/2007 8:44:32 PM
Ok, I'm pretty new to VB.Net, so please bear with me. Imagine the
Load event of one of my forms includes the following:
Dim ctrl as Control
Dim txtbox As TextBox
For Each ctrl In Me.Controls
If TypeOf ctrl Is TextBox Then
txtbox = CType(ctrl, TextBox)
AddHandler txtbox.ModifiedCha... more >>
|