| Thread | Last Post | Replies |
|
| Need XSLT to throw Runtime Exception | 28 Feb 2007 23:52 GMT | 3 |
Hi there - Can somebody give me some pointers on how I can create a XSLT which will compile fine but will thow a runtime exception during runtime. I tried to do the following but it doesn't throw any runtime
|
| Passing Static Text Between Client and Server | 28 Feb 2007 17:10 GMT | 3 |
I have a list of static text that I want the client and server to be able to share such that I don't have to hard-code the text on both sides. The client communicates with the server via web services. How do I set this up so that both sides can simply refer to the the same text?
|
| XmlNode.SelectNodes, order of nodes | 27 Feb 2007 18:37 GMT | 8 |
If I execute XmlNode.SelectNodes("some xpath query") and then use foreach to iterate over it. Will it guaratee that the order of nodes I get will be same as the order of nodes in the original xml document?
|
| DataSet/XmlSchema/DataGrid Framework 1.1 - 2.0 Problem | 27 Feb 2007 09:21 GMT | 2 |
I have a problem with reading an XmlSchema with Frameowk 2.0 and an own DataType. I found no example (searching two days). What I do is:
|
| XML and XSL translation | 25 Feb 2007 22:45 GMT | 2 |
I am trying to do an XML translation. I have not done much with XML apart from generating a few RSS feeds or saving from datasets. I have found numerous example on the net about it, all of them very similar. However, when I use them, they go into response.output rather than a label
|
| xml schema: elements with unique attribute values. | 24 Feb 2007 13:23 GMT | 1 |
I´m a bit newbie writing xml schemas. Is it possible to define xml element that must have unique attribute values in same level. For example if i have a xml - document: <list>
|
| Removing xmlns:xsd and xmlns:xsi when using ImportNode | 23 Feb 2007 15:53 GMT | 3 |
I'm doing some document merging where I want to bring in an XmlDocument and import its document element into another document deeper in its tree. However, when serializing my underlying objects, .Net likes to add these namespaces:
|
| XML Serialization with of a sub-class of DataTable. | 23 Feb 2007 13:06 GMT | 2 |
I have a very weird problem regarding the serialization of a class that I wrote (named DummyClass in my exemple). My class inherits from DataTable. Then I just try a dummy XMLSerialization and then Deserialize it into
|
| Translate() doesn't work | 23 Feb 2007 12:57 GMT | 1 |
I am using the Translate() function in one of the .XSLT file to remove the spaces, like this: <xsl:for-each select=".//Illustration"> <xsl:value-of select="translate(./@illusName, ' ', '')"/>
|
| xs:element name in xsd file for int. | 23 Feb 2007 12:45 GMT | 1 |
I am having table in database with say name as '1company'. when i generate strongly typed dataset for this table in xsd file i am getting entry as below:- <xs:element name="_x0031_company" type="xs:string" minOccurs="0" />
|
| vb.net xml namespace xmlns xmldocument | 22 Feb 2007 13:23 GMT | 1 |
I am using XMLDocument to create my xml. How do I remove the namespace information ? It is being put on all my xml nodes: <MyServ xmlns="http://www....../XInclude> <Timeout xmlns="">100</Timeout
|
| xpath match text question | 22 Feb 2007 12:21 GMT | 2 |
I am trying to retrieve the @AnswerCount Attribute for the @QuestionID=1 AND the Answer element text =3 I successfully can pass the variables QuestionID and Answer but can't pull out the
|
| retaining leading whitespace in text of an xml node | 21 Feb 2007 06:11 GMT | 1 |
when I run the following code the leading spaces of the "data" node are removed. How do I retain whitespace? private void CreateBasicXmlDocument() {
|
| attribute not declared for validating schema init | 18 Feb 2007 12:50 GMT | 5 |
I get the following error when instanciating an XmlReader that performs validation: "The 'http://tenbase2.com/DVDTimestamps:schemaLocation' attribute is not declared." My beginning XML tag starts as follows: <DVDTimestamps xmlns:tb2="http://tenbase2.com/DVDTimestamps" tb2 ...
|
| Converting XML with CDATA -> HTML | 17 Feb 2007 10:58 GMT | 6 |
I'm defining a report layout using an XML document, plugging data values into fields before outputting the whole doc as an HTML page. I wrap each of the data fields in CDATA section (in case the data contains reserved chars like "&").
|