| Thread | Last Post | Replies |
|
| Sending XML Image | 24 Jun 2004 20:03 GMT | 1 |
Hi, I'm trying to send an image over XML. My routine gets the name, then gets the image out of a SQL database. This part works fine... but the XML returns the object, I get the following error: "System.Drawing.Bitmap cannot be serialized because it does not have a default public ...
|
| Error loading XML into DataSet | 24 Jun 2004 16:45 GMT | 2 |
When I try to load this xml file (see below) into an asp.net dataset using the following code: ds.ReadXml("xmlfilepath\xmlfile.xml", XmlReadMode.Auto) I get the following error:
|
| DocBooks | 24 Jun 2004 15:11 GMT | 3 |
Hi, all! I would like to seek your advice/answers about docBooks in Visual Studio.NET. Here are my questions:
|
| Looping through XML in asp.net | 24 Jun 2004 13:20 GMT | 1 |
I'm trying to extract data from a simple XML document that holds the data in 2 levels by looping through the levels. Simplified code is: Dim doc As New XmlDataDocument Dim strngs As String, strng1 As String, strng2 As String Dim Node1 As XmlNode, Node2 As XmlNode
|
| Strange behaviour with identical XmlNode.SelectSingleNode(xpathQuery) queries | 24 Jun 2004 09:28 GMT | 2 |
I have two queries that appear to be exactly the same, but one of them returns null while the other one returns a valid result! Can anyone provide an explanation to why this is so? Below is an nunit test that exposes the problem. I have run the test under both the 1.0
|
| Problem with Schema Validations using XmlValidatingReade--HELP | 23 Jun 2004 20:18 GMT | 1 |
I Have 2 separate schemas. --------------Schema 1 is defined as below----------- <xs:schema targetNamespace="http://Schemas/1" xmlns="http://Schemas/1" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xs:element ...
|
| remove nodes that belong to a namespace | 23 Jun 2004 15:43 GMT | 3 |
Following is a portion of an XML document. I need to remove all nodes that belong to ns0 without deleting their child nodes. So in the following example , I want to delete "ns0:Proposal" and "ns0:Company" but I do not want to delete their child nodes("w:p","w:r","w:t"). How can I ...
|
| Schema Valdiation error | 23 Jun 2004 12:03 GMT | 1 |
I try to validate a complex schema using XSD and I get a series of errors of the following format: Validation Error:'http://xml.msdw.com/ns/mdco/data/1.0:tradeSymbol' cannot be a member of substitution group with head element 'http://xml.msdw.com/ns/mdco/xml/2.0 ...
|
| Ignore DocType | 23 Jun 2004 10:38 GMT | 4 |
I am reading data from an XML document with xmlDoc.load(fullname). Unfortunately, in my xml file there is the definition of a doctype file that is not available and so, it buggs. I would like to ignore it, to remove this line, or I don?t know? my language is Visual C#.
|
| Using XmlSecureResolver.CreateEvidenceForUrl? | 23 Jun 2004 10:35 GMT | 1 |
I am having trouble getting a transformation to work. Basic transformation works locally - i.e. if I have the XSL on a local system it all works as it
|
| Parse/convert "True" or "False" to boolean? | 23 Jun 2004 10:31 GMT | 2 |
I have what should be a trivial problem. I am using XMLSerializer to serialize an object. It serializes boolean values as "True" and "False". I then want to use an XSLT on this XML, and I want to use one of these booleans in a test. How do I convert one of these to a
|
| Flat File To XML Roundtrip | 23 Jun 2004 07:13 GMT | 3 |
OK I'm on a steep learning curve with XML et.al. and need some advice. I'm writing a B2B front door for a new application. I have multiple data suppliers all sending various formats of flat files. Most of the inbound files are CSV (but a couple are tab-delimitted and one is an
|
| replacing nodes | 23 Jun 2004 06:59 GMT | 1 |
Following in a portion of an xml document. I would like to replace "nso:Proposal" node with its child "w:p" node programmatically. How can I do this? Thanks.
|
| xsd.exe errors with schemas importing other schemas | 23 Jun 2004 06:24 GMT | 1 |
I am working with XSD.exe vs.net command line util. I have an XSD that I am trying to use to generate classes with. However, the XSD references another schema and the XSD.exe is having trouble finding the referenced schema. Does anyone have an example of what the command line ...
|
| Flags style enum? | 22 Jun 2004 17:53 GMT | 2 |
Is there a way to represent a [Flags] style enum in XML Schema? Say I have a flags enum like so: [Flags] public enum dayOfWeek {
|