| Thread | Last Post | Replies |
|
| Converting an XML documentation file to a help file | 23 May 2004 14:52 GMT | 1 |
This may seem like an obvious question. How do I convert the XML documentation file that the C# compiler emits from my XML comments into a help file for the Microsoft Document Explorer? Is there a tool program or something that I am missing? I cannot find
|
| XPath contains() function | 22 May 2004 21:51 GMT | 2 |
My goal is to select some XPath nodes based on whether their values (text) contain a string passed as argument. To achieve this I use the contains() function of XPath in an XpathExpression. For example, given the following fragment...
|
| XMLDocument character encoding | 22 May 2004 00:08 GMT | 2 |
We are encoding strings using XMLElement: private string XMLEncode(string val) { if(val.Length == 0)
|
| param syntax help | 21 May 2004 23:50 GMT | 2 |
Why does this work: <xsl:for-each select="//page[@subSite='monkey']"> but this does not?: <xsl:param name="subSite">monkey</xsl:param>
|
| Problem using XmlTextReader and XmlTextWriter. | 21 May 2004 19:21 GMT | 3 |
I'm trying to read an XML document and write out a slightly modified version using the XmlTextWriter. I'm basically trying to copy all the nodes exactly as they are read and do some text manipulation on #text nodes of only certain named elements.
|
| Creating XML DataSet from scratch | 21 May 2004 18:42 GMT | 1 |
How do create a dataset from scratch based on an XML schema. This will not be filled by a dataadapter. It will be a dataset which I add rows to and then save as an XML file. All the example depend on filling the dataset. I have also tried creating it from the XML schema but I am ...
|
| XPath: Is there a better way to do this... | 21 May 2004 00:16 GMT | 1 |
I am retrieving XmlSchema from a database and need to find the nodes that represent the Table and Column names. I have included a sample Xml Schema and the code I used to find the information. As this is the first time I have even attempted to use XPath, I was wondering if the ...
|
| Weird Characters at beginning of Transformed file. | 19 May 2004 19:04 GMT | 2 |
I'm using XSLT to transform my XML to a text file. When I view this file in notepad, it comes out fine, but when I view it in DOS (using type), or in unix, there are 3 strange characters at the beginning of the file. Does anyone know what these are, or how to get rid of
|
| how to write XDR | 19 May 2004 19:03 GMT | 6 |
My dream XML will look like as follows: <?xml version="1.0"?> <bk:bookList xmlns:bk="urn:BookSampleSchema.xdr"> <book>
|
| Help with XPath | 19 May 2004 13:39 GMT | 3 |
I am in the process of creating an application to scrape databases in order to create typed DataSets. One of the last pieces that I need to do is to remap database fields to something more pleasant. In order to do this I have created a static map that will perform the ...
|
| Did I miss something here ? | 19 May 2004 01:42 GMT | 1 |
Ok guys, I could bang my head on the laptop, cause I dont get this to work. The scanrio: I am tryting to pass an parameter with the help of XslTransform to the xsl file. But whenever I run the code, I got the error:
|
| Does XmlValidatingReader check key and keyref constrains? | 18 May 2004 21:20 GMT | 1 |
I have a question whether XmlValidatingReader doesn't check keyref constrain (the same with key constraint) or I do smth wrong. I have the following schema
|
| XSLT HTML Validation | 18 May 2004 14:21 GMT | 12 |
I am producing HTML from XslTransform (C#) and the HTML does not validate, see http://www.redburg.co.uk/mira/mira415_ev_wh_ch.html as an example. I am using the following XSLT code:
|
| Using xpath with xslt ? | 18 May 2004 10:39 GMT | 1 |
I would like to use xpath with xslt. I know that this should be possible, but I dont get it ! Here is what I have tried so far: ====================================
|
| Simple problem | 18 May 2004 06:52 GMT | 2 |
I'm using the "&" char in the XML file (a field of a table of a serialized DataSet contain it). The Internet Explorer parser show error, like: ---------------------------------------------------------------------
|