all groups > dotnet xml > july 2006 > threads for july 1 - 7, 2006
Filter by week: 1 2 3 4 5
A Simple Schema : What is wrong?
Posted by Ganesh Muthuvelu at 7/7/2006 11:16:02 AM
Hello,
I have a simple schema as shown below. When I validate it, I get the error
"Type 'http://www.w3.org/2001/XMLSchema:emptype' is not declared. An error
occurred at , (6, 12)."
***************
<?xml version="1.0" encoding="utf-16"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSc... more >>
Unable to populate RadioButtonList in a Repeater using an XmlDataSource
Posted by Brian at 7/7/2006 9:14:40 AM
Using external XML, I'm trying to build a quiz, but I can't seem to specify the DataSource for the
RadioButtonList within a Repeater ItemTemplate.
I've tried a number of approaches, but I haven't really had any success. I'm pretty sure I should be
casting my XPathSelect() call to something so... more >>
Get XSD from ASMX
Posted by Ganesh Muthuvelu at 7/7/2006 7:32:01 AM
Hello,
I have web service written in .NET and if I go the browser and type in the
..asmx file I get to see all the methods/routines. Now, is there a way I can
get a XSD of every web method/routine?. The consumer of my web service (third
party) requires me to give a XSD file of every request ... more >>
Keys and references
Posted by Peter Morris [Droopy eyes software] at 7/6/2006 12:52:46 PM
I have an element named "vendingMachine". This may appear in one of two
places
<customerSite>
<vendingMachines>
or
<plannedVisit>
<installationTask>
Because of this I made an element named vendingMachine and simply referred
to it when needed <xs:element ref="vendingMachine"/... more >>
Get valid elements using XmlSchema - .NET
Posted by merdaf at 7/6/2006 8:03:56 AM
Hallo all,
I am looking for a funcion in the .Net framework that returns a list of
all the valid elements, for a specific element, accrording to the xml
schema restrictions.
I will try to be more accurate using this example:
if this is the xml
<a>
<b>
</b>
</a>
and this is the x... more >>
" and ' is not XML-ified
Posted by Johnny Ljunggren at 7/6/2006 12:00:00 AM
Hello all
Just noticed that a testprogram I've made creates a non-conforming XML
file. Here's the code (C#) and output:
XmlWriterSettings settings = new XmlWriterSettings();
settings.Indent = true;
using(XmlWriter writer = XmlWriter.Create("xmltest.xml",settings))
{
// Write XML dat... more >>
Problem when Loading XSL file using XslCompiledTransform
Posted by Jon at 7/5/2006 11:34:02 AM
Hi,
I am testing the scenario to migrate from MSMXL4 to .NET2.0 system.xml. I
experienced xsl file loading problem whenever the xsl file have a user
defined script in it. The error message is as follow:
"Objects of type 'Script2' do not have such a member"
The above error only happens whe... more >>
help! Error: The XML element is already in the current scope...
Posted by namewitheldbyrequest NO[at]SPAM gmail.com at 7/5/2006 10:53:57 AM
"The XML element 'EnableTheming' from namespace 'http://tempuri.org/'
is
already present in the current scope"
I created a Web Service: I imported System.Data.SqlClient so I could
access SQL server tables programmatically. The web service builds and
deploys with no problems. When I try to add... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
problems with encoding for different locales
Posted by Joshua Stewart at 7/4/2006 3:41:10 PM
Hi,
I am trying to characterise a problem I am seeing on our C#/C++ xml
driven application. We have recently added some basic Spanish language
support to our application, but it seems that there is an issue with
certain locale settings.
Under Regional and Language Options -> Standards and ... more >>
XmlResolver.Credentials
Posted by cashdeskmac at 7/4/2006 3:58:02 AM
I have this code from an example on the MSDN site:
Dim rdr As New XmlTextReader("http://localhost/bookstore/book.xml")
rdr.XmlResolver.Credentials = CredentialCache.DefaultCredentials
Dim doc As New XmlDocument
doc.Load(rdr)
However, I get an error under rdr.XmlResol... more >>
Invalid carachter loading xml
Posted by Fabri at 7/3/2006 12:02:08 PM
I'm trying to parse a xml source.
1) I query via webservices one table and obtain this output
================================================================
<?xml version="1.0" encoding="utf-8"?>
<ExecuteReaderResult
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http... more >>
|