| Thread | Last Post | Replies |
|
| Web Service changes return type | 30 Jul 2008 21:16 GMT | 1 |
I've a web service which has been running for some time. The web service retrieves order batches from a database so has quite a deep class structure. The class structure is based on an xsd which generates teh c# classes which
|
| New to XML. Need help reading XML. | 29 Jul 2008 08:26 GMT | 5 |
Here's my XML: <?xml version="1.0" ?> <AppMode Type="Network"> <CurrentFolder Path="c:\tabs">
|
| XML without carriage returns after nodes | 28 Jul 2008 16:52 GMT | 6 |
I'm still feeling my way around XML parsing and have an app that uses XML reader and works fine as long as the XML is pretty but doesn't find all the elements when the XML is all on a single line without the carriage returns after each element. As I understand it XMLReader uses ...
|
| ReadElementContentAs() throws XmlException | 24 Jul 2008 08:29 GMT | 1 |
my code is the following: the Read() method positions the cursor on the <condition> tag (verified with debugger). XmlReaderSettings s = new XmlReaderSettings();
|
| Cannot Switch to Unicode Error | 22 Jul 2008 12:25 GMT | 2 |
I made an XML document "by hand" and wrote it to a file. I then tried to read it with an XmlTextReader wrapping a FileStream. I got an XmlException about "cannot switch to Unicode" or something. Changing the from this:
|
| Why does this XPath not work | 21 Jul 2008 16:55 GMT | 4 |
This XPath works fine: /order/customer[(./address/@zip = 80302) and (starts-with(./name,'J'))] But this XPath :
|
| How to write APOSTROPHE into an XML SelectNodes statement???? | 18 Jul 2008 17:29 GMT | 3 |
Ok, I've looked for an answer for this, because I'm sure it's been asked a thousand times... but no luck... so here goes. Imagine I want to create a NodeList based on an XPath statement. The 'query' portion of that statement wants to search for the following
|
| Add to an XML node | 17 Jul 2008 14:54 GMT | 4 |
I have a web service that returns me an XmlNode ojbect. Here is an example of the outerXML: <?xml version="1.0" encoding="utf-8" ?> <NewDataSet>
|
| Cannot get datagrid to display data | 14 Jul 2008 22:50 GMT | 4 |
Hi, I have an XML file that I was hoping to use as a database Here is the code that I have copied that should display the data namespace File_Generation_System {
|
| XML XSL PDF | 14 Jul 2008 19:55 GMT | 4 |
Hi Can someone give me some general "where to start looking" advice please. I AM : a dot net developer, good knowledge of xml / xsl transformation into html.
|
| xml to serialize a dataset | 14 Jul 2008 12:53 GMT | 2 |
I created a dataset using the DataSet Designer - http://aspnet.4guysfromrolla.com/articles/020806-1.aspx My objective was to serialize the generated dataset. protected void Page_Load(object sender, EventArgs e)
|
| Invalid Name Character | 11 Jul 2008 12:33 GMT | 1 |
I am facing an issue in the XmlTextWriter class in the dotnet 2.0. This is the sample code Actual XML is like this <Name>詳細仕様に</Name>
|
| linq to xml Sum | 08 Jul 2008 17:52 GMT | 2 |
I am just learning linq and am stopped by trying to get a sum of element values. The xml is like this: <LineItems>
|
| Quick DTD syntax question | 08 Jul 2008 17:14 GMT | 1 |
I have a dtd with the declaration: <!ELEMENT BDD (BSR, (AccountX | Agreement | Delivery | DET | Invoice | Part
| Party | PartPres | PriceList)*)> Do I understand this correctly? Given that asterix at the end of the 'OR'
|
| Is this scenario possible? | 04 Jul 2008 12:13 GMT | 3 |
I've included an xml and a dtd file in my Resources folder (This is a Winforms VB project in VS2005.) I'm planning on using the xml in Resources as a 'template', just load it and change values. The beginning code is: Dim xDoc As New XmlDocument
|