| Thread | Last Post | Replies |
|
| Download XML: The underlying connection was closed: Unable to connect to the remote server. | 31 Dec 2007 17:50 GMT | 1 |
We are trying to download an XML document from the internet and are getting the error: The underlying connection was closed: Unable to connect to the remote server.
|
| LINQ to XML and Amazon Webservices | 25 Dec 2007 03:08 GMT | 5 |
Hi, I'm having a hard time in using LINQ on XML returned from Amazon Webservices. I'm using the 2008 beta 2 on an XP machine. the code I'm using is:
|
| How to add prefix to root element? | 23 Dec 2007 14:43 GMT | 2 |
i am receiving following xml from one party: #1 <Request xmlns="http://somens.com"> <SomeElement1>Element data</SomeElement1>
|
| issue with XML and Schema namespace | 19 Dec 2007 12:42 GMT | 1 |
Hi I am having a hard time with validation of my XML file with given schema. Here are the files: roboerrorlog.xsd <robomss:schema xmlns:robomss="http://www.w3.org/2001/XMLSchema"
|
| help - Convert XmlDocument to string | 18 Dec 2007 19:48 GMT | 7 |
what is the best way to convert an XmlDocument object to a string of its XML content? it appears there are a few ways, and im curious what the best one would be.
|
| Unexpected character escaping? | 18 Dec 2007 07:35 GMT | 4 |
I have developed an application where the user edits an XML file. I am trying to add som utility functions to the application, where I need to manipulate the XML content programmatically. ---Code snippet-------------- XmlDocument document = new XmlDocument(); document ...
|
| Read partial xml into dataset | 17 Dec 2007 17:40 GMT | 3 |
I need some help to read only partial nodes of a xml and store it as a dataset. In my example below, I need only the values within the nodes <WorkFlowStepHistory> in a dataset. I'm sure it is pretty simple, but since I'm new to xml not sure how it is done.
|
| Whitespaces inside elements | 17 Dec 2007 07:52 GMT | 3 |
Is there any way of preserving whitespaces inside nodes, e.g. line breaks, when using XmlDocuments? If I for example have a string with the following content: <root>
|
| extracting project path in a csproj -- grrrr!! | 16 Dec 2007 11:22 GMT | 1 |
I'm using FinalBuilder to automate our builds. We've had it working with VS2003 for a long time, now we're upgrading to VS2005 (I'm aware that 2008 is out now. Geroffit.) I'm trying to extract the OutputPath from the appropriate
|
| Formatting XmlSerializer Output | 16 Dec 2007 11:18 GMT | 1 |
I'm using classes generated from xsd.exe. I am serializing them with XmlTextWriter, and everything works fine. Our customer, though, has a silly requirement that dollar amounts (in the .xsd as decimals) be formatted to always include cents (regardless if there are cents or
|
| Xpath For All Values | 14 Dec 2007 11:39 GMT | 1 |
Trying to figure out how to do an xpath that has all values equal to 0. //Record/AccidentIncome[.=0] I know this will find ANY instance where AccidentIncome = 0, but I need to determine if ALL nodes that have //Record/AccidentIncome equal to 0. Stated
|
| Validating Xml document with !DOCTYPE in it? | 13 Dec 2007 19:15 GMT | 3 |
I have a schema (xsd) that I can figure out to validate Xml docs against. The documents however, also contain a DOCTYPE declaration. I would like for my XmlReader to _ignore_ the DOCTYPE declaration. Currently, it throws. If I enabled the Dtd support (ProhibitDtd = false), it tries ...
|
| Error :The root element of a W3C XML Schema should be <schema> | 12 Dec 2007 14:00 GMT | 1 |
I am getting following error while validating xml file with schema using ReaderSettings in .NET 2.0 "Line: 0 - Position: 0 - The root element of a W3C XML Schema should be <schema> and its namespace should be 'http://www.w3.org/2001/XMLSchema'."
|
| Close Tag Error from HTML source for web service WSDL | 12 Dec 2007 12:01 GMT | 1 |
I have developed web services under .net framework 1.1, myWebServ.asmx with methods, getInfo() and getInfo(int). Those are working fine for the clients created by .NET Visual Studio. However, when I used Eclipse to develop Java client to consume the service, I
|
| XQuery Support | 11 Dec 2007 12:17 GMT | 1 |
Is it possible to use XQuery 1.0 in a Windows Forms application to read XML data from local XML document files? I found a help article referencing an XQueryCommand class and a System.Xml.Query namespace but I can't find any other support or
|