| Thread | Last Post | Replies |
|
| problems with encoding for different locales | 27 Jul 2006 05:01 GMT | 3 |
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.
|
| What is the quickest way to get an xml based dataset to add entries to SQL Server? | 26 Jul 2006 21:12 GMT | 3 |
Because there is no 'datareader' involved, what is the most efficient way to get an XML based dataset to be added to an SQL server dataset? I would hate to have to create a new SQL connection and iterate through making "executenonquery" for each row in the dataset. That seems
|
| How to create nested nodes in XML in C# | 26 Jul 2006 20:00 GMT | 2 |
I have to create an XML in the following syntax: <RESPONSE> <QueueItems> <Node1>.....
|
| How to generate xsd file using <xsd: and not <xs: | 26 Jul 2006 18:03 GMT | 2 |
When I generate an xsd *schema* I get something like : <?xml version="1.0" encoding="utf-16"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="AccountsReceivable">
|
| Why can I not XPath to this element in a schema | 26 Jul 2006 17:38 GMT | 4 |
I've tried to find the simplest demonstration of my issue. I have source XML that looks like this (not a real XSD schema, but it doesn't matter at this point): (in var xmlStr:)
|
| XmlSchemaImport and XmlSchema.Write | 26 Jul 2006 14:00 GMT | 2 |
I create a schema in memory and then I can write to a file fine. But as soon as I add an import element I get an error when it goes to write to the file. The error message is:
|
| XML Serialization | 26 Jul 2006 12:25 GMT | 3 |
I have a class which I am using XML Serialization with, something like: public class MyObj { [XmlAttributeAttribute(DataType="string", AttributeName="Text")]
|
| XmlReader and LineNumber | 26 Jul 2006 04:17 GMT | 2 |
According to the MSDN documentation within the XmlTextReader class for .NET 2.0, the recommended practice to create XmlReader instances is using the XmlReaderSettings class and the XmlReader.Create() method. However, the problem is, the XmlReader class does not expose certain
|
| The custom tool 'MSDataSetGenerator' failed while processing the f | 26 Jul 2006 01:29 GMT | 2 |
I get this message when trying to create a schema from an xml file. I am looking to see if the xml file is malformed, but just in case it isn't, has anyone come across this problem before?
|
| Embarrasingly easy question | 25 Jul 2006 12:07 GMT | 2 |
I need to process a very simple xml document, but as it contains a namespace I am finding this very difficult. The xml is structured as follows: <results xmlns="http://fictional.namespace.com/md">
|
| inserting a text into xml file | 25 Jul 2006 04:37 GMT | 2 |
Hi friends, I am new to csharp and XML : fp=File.OpenText(server.mappath(".\\upload\\")+"test.txt"); string info=fp.readtoend(); string[] arinfo =new string[4];
|
| Qu | 24 Jul 2006 19:34 GMT | 1 |
I generated a .cs class from a .xsd schema using the xsd.exe tool from Visual Studio 2005 and noticed that is generating duplicate class declarations. This happens because of my schema structure. I have an element, <QuestionList>, that is a set of <Question> elements that is ...
|
| New to xml - what's wrong with my transform | 24 Jul 2006 17:43 GMT | 5 |
I'm trying to write my xsl to display an unordered list fromt the xml file where location is equal to top: <siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" > <siteMapNode url="~/index.aspx" title="Home" location="top">
|
| Read xml from a password protected site | 22 Jul 2006 00:35 GMT | 9 |
Hi; If I need to parse an xml file from a password protected site - like: XmlReader xmlReader = XmlReader.Create("http://www.cia.gov/AgentList.xml", readerSettings);
|
| Xpath equivalent to select in for sql server?? | 21 Jul 2006 22:53 GMT | 2 |
What I am trying to do is filter on some attributes and I could have a list of values, so instead of doing where attribute = value or attribute = value, I am wondering if there is something equivalent to the IN statement in sql, so attribute in (value1, value2) etc..
|