| Thread | Last Post | Replies |
|
| ServerXMLHTTP.3.0 parsing problem | 31 May 2007 17:40 GMT | 4 |
I'm using an ASP 3.0 page to query the USPS site for shipping rate info using the ServerXMLHTTP.3.0 object. The code is as follows: set objSrvHTTP = Server.CreateObject("Msxml2.ServerXMLHTTP.3.0") objSrvHTTP.open "GET",
|
| XML Validation Test | 31 May 2007 08:33 GMT | 4 |
I have a DataContract from a WCF service that exists in a proxy assembly. I want to create a test client for calling this service, so I thought I would create an instance of the contract through Reflection, serialize to an XmlDocument and then walk through the Xml creating ...
|
| Bizarre XSD File Format Changes with Web Developer? | 30 May 2007 23:08 GMT | 3 |
I have a bizarre problem when I try to validate XML documents and their schemas once they have been opened and transfered to a Visual Web Developer 2005 Express project. I receive validation errors for XML/XSDs that worked fine when first created in another environment (XMLSpy ...
|
| performance of XslTransform vs XslCompiledTransform | 29 May 2007 02:16 GMT | 3 |
From reading the documentation, I get the impression that XslCompiledTransform should be faster than XslTransform on my test with a large complex document and a large complex XSLT, the transform took 4 minutes with XslTransform but 7 minutes with
|
| XML AND apostrophe | 28 May 2007 17:18 GMT | 8 |
I need to make some search in a XML file to get element and/or attributes of element from my ASP.NET web application (in C#) My problem is that the value that I search can have an a postrophe and that could generate an error. Here a sempliefied code:
|
| deserialize CDATA section in XML | 28 May 2007 12:10 GMT | 1 |
I have got xml document with CDATA sections containing special characters like links to images. All Iwant is to display the content withing my div section. Can you provide me a snippet of a code. Thank you in advance.
|
| XmlDataDocument problem | 25 May 2007 14:10 GMT | 3 |
I have a problem reading xml into a dataset using the XmlDataDocument. In a test project, I created the following xml file: <?xml version="1.0" standalone="yes"?> <Customer>
|
| XSD and xs:union? | 25 May 2007 12:17 GMT | 4 |
It seems that the XSD tool supplied with VS2005 does not handle "xs:union". Am I doing something wrong? Is there a work-around? Here is a simple sample file: --------------------------------------------------
|
| Is there XmlDecode/XmlEncode? | 24 May 2007 18:21 GMT | 3 |
I have a string containing XML embedded withing another XML document as an attribute value. This is what the string looks like: <message>quick brown fox<message/> I want to convert this to: <message>quick brown fox</message>
|
| how to locate where an xslt stylesheet failed | 24 May 2007 09:26 GMT | 2 |
Dear experts, After converting some .net code from using XslTransform to XslCompiledTransform, one of my XSLs no longer runs. it fails with: Attribute and namespace nodes cannot be added to the parent element after a
|
| Newbie question: Loading an XML document into an object | 22 May 2007 16:13 GMT | 2 |
I'm new to XML. I've searched for an answer to this question, but haven't found the right one, so I'm posting here. I've created a class named Order, which contains some data columns (CustName, CustAddr, etc).
|
| XML newbie: How to add/replace an attribute | 19 May 2007 00:44 GMT | 1 |
Whenever I need to deal with XML I kind of stumble around in the XML namespace until I find the class that seems to do what I'm trying to do. This time around, I've been trying to find a reasonably straightforward way to do something that should be very simple, and I've gotten to ...
|
| Getting error 'The underlying connection was closed: The server committed an HTTP protocol violation' | 18 May 2007 20:20 GMT | 5 |
I am having application where i am downloading xml content using webrequest. my code is as below HttpWebRequest lWebRequest = (HttpWebRequest) WebRequest.Create(URL); HttpWebResponse lWebResponse = (HttpWebResponse)
|
| XPath Validation using xsd Schema | 18 May 2007 06:12 GMT | 4 |
Does anyone know how can I validate XPath expressions using xsd schema? Thanks
|
| Document.Save with indents | 18 May 2007 00:21 GMT | 2 |
is it possible to write an XML document into a file, which has a readable structure by using indents? By doubleclicking the xml file, you see a readable XML structure in IE, but if you open the file in a text editor, you get an unformatted structure of the XML.
|