| Thread | Last Post | Replies |
|
| want to set properties in C# | 13 May 2005 03:21 GMT | 2 |
If I have an xml file and want to set some properties in it (read and write it I guess), what is the best alternative? I don't want to use xlst - this seems like I should be able to just specify the node and replace the parameter similar to what I am doing now in
|
| Generating XML files from a database | 12 May 2005 23:24 GMT | 3 |
Here is the situation. I've looked all day about this subject over the net and I'm kinda confused... I was ask to generate, on a daily basis, some XML files from a SQL Server 2000 database.
|
| Documents w/o namespaces | 12 May 2005 18:51 GMT | 1 |
I've developed a web service whose output is an XML document that conforms to a schema. Is it bad practice / unacceptable not to have a namespace associated with my document?
|
| XmlDocument Trouble | 12 May 2005 14:30 GMT | 4 |
I don't know why, but I can't seem to get this to work: Public Sub DoSomething() Dim sb as New StringBuilder() sb.Append("http://webservices.amazon.com/onca/xml?")
|
| Ignoring Elements in XSD | 11 May 2005 17:32 GMT | 3 |
How do I write a schema that is only validating elements: 1,4,7,8,9 and ignores every other element? I also need to not to care about the order of the elements or how many are in between elements that I am trying to validate.
|
| Restructure XML | 11 May 2005 12:43 GMT | 5 |
I would like to restructure my xml with a generic style sheet to perform the following. I want to be able to inspect a group of nodes then place them into a collection node if there are more than one at the same level with the same name. This should occur as well if sub-levels ...
|
| Can't get a declaration | 11 May 2005 02:31 GMT | 1 |
Background: I have taken an excel spreadsheet with the formatting I want, saved it as XML, then converted it to an XSL document to use it as a sort of template. Added some for-each select functionality and am able to populate it with data from good old Northwind.
|
| XmlValidatingReader invalid xsi:type | 10 May 2005 21:42 GMT | 2 |
I have an abstract base class and two derived classes that I want to serialize and deserialize with schema validation. When I serialize instances of the derived classes the XmlSerializer adds the xsi:type="DerivedClass" attribute and the Instance Namespace. When I
|
| Change NameSpace Value on Selected Node | 10 May 2005 18:12 GMT | 2 |
I have an XML document that is generated from Infopath, I need to change the value of a namespace that is defined in a node in the form: <xsf:xDocumentClass "xmlns:my=valuehere">. when i navigate to the namespace value it is read only and cannot be
|
| Difference in encoding? - Confused | 10 May 2005 17:27 GMT | 4 |
I'm working on a .NET application that requests an XML document, in string form, from a legacy COM component, then deserializes it. In order to deserialize the document, the string needs to be placed into a stream. AFAIK, .NET strings are UTF-16 encoded, but the COM component
|
| XmlDocument Question | 10 May 2005 16:45 GMT | 2 |
Is there any way to disable the data validation the the XmlDocument class performs? Thanks, Roshawn
|
| Setting a reference to a schema doesn't work? | 10 May 2005 11:34 GMT | 1 |
Hello NG! Using the System.Xml.XmlDocument I want to create such a xml-file: <?xml version="1.0" encoding="utf-8"?> <RootElement xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| Question about web service | 09 May 2005 01:43 GMT | 1 |
I have to decide on the appropriate wire protocoal to use when designing an XML web service. the web service i have developed will be deployed inside the corporate firewall, while the clients will be located on both sides of the perimeter. But no additional ports can be opened in ...
|
| Serializing a StringBuilder | 07 May 2005 13:26 GMT | 1 |
I have a simple class with a StringBuilder as a property. When I serialize it, I get this: <?xml version="1.0" encoding="utf-8"?> <TestMe>
|
| .NET equivalent to XSLT value-of select | 06 May 2005 16:58 GMT | 2 |
This seems like it should be really easy, but I cannot seem to make it work. I am trying to retrieve the text value of an element named "child2Element" from an XML file in a .NET (v 1.1) with an XPath expression. In an XSLT document I would use <xsl:value-of
|