| Thread | Last Post | Replies |
|
| Referencing Additional Namespaces XSL | 21 Mar 2007 13:28 GMT | 3 |
I need to use a string replace function in my XSL document. I found a W3 library that has numerous string functions such as fn:replace(). When I try using the namespace, I get an error "Cannot find the script or external object that implements prefix
|
| Looping through XmlNodeList | 21 Mar 2007 13:24 GMT | 6 |
I have the following code, which picks up 43 different nodes from my XML document XmlNodeList amortNodes = amortDoc.SelectNodes("// TValueAmortizationSchedule/AmortizationLine");
|
| how to apply xslt within xml to that using .NET | 21 Mar 2007 10:28 GMT | 2 |
Beginner using xslt... So. I have an XML file which has a link into xslt file like following... <?xml version='1.0' encoding='utf-8' ?> <?xml-stylesheet type="text/xsl" href="transform.xsl"?>
|
| Compare two XML Files and save to One | 21 Mar 2007 07:33 GMT | 1 |
I feel like this question has been asked before but I just cannot seem to find a good answer. Q: Is there a way to have two XML files and compare them and save them to one.
|
| Binding ASP.NET Menu to XML | 20 Mar 2007 21:23 GMT | 1 |
I have created a XmlDocument that contains the exact layout that siteMap uses, and then I bind my Menu object to it: Dim xml As XmlDocument xml = DirectCast(Session("MenuData"), XmlDocument)
|
| XmlReaderSettings ValidationEventHandler Firing Twice | 20 Mar 2007 14:41 GMT | 2 |
I have an issue with the EventHandler for the XmlReaderSettings object being called twice during validation and I'm a little stumpped as to why. The error message being given is the same error message both times. This is an intentional error that I have introduced into the XML ...
|
| Redundant xmlns attribute | 19 Mar 2007 18:02 GMT | 3 |
If I have an XmlDocument with a deep hierarchy of nodes, with a documentElement having an attribute xmlns="http://someurl.com" and all children inheriting that namespace (but not having the xmlns attribute explicitly declared), then why is it that when I perform
|
| Serializing Class with Unqualified Root Element and Default Namespace attribute | 19 Mar 2007 15:47 GMT | 9 |
I'm trying to serialize (using XmlSerializer.Serialize) a class that I generated from an XSD schema using XSD.EXE /c. The problem I'm running into is that the root element needs to be unqualified, and the default namespace needs to be included on it as an attribute. The schema I'm ...
|
| Problem with XmlNode.ChildNodes across different machines | 19 Mar 2007 08:04 GMT | 5 |
I'm having the darndest XML config file problem that I really need help with. I'm supporting a .NET 1.1 desktop application with its own config file, and I implement IConfigurationSectionHandler so I can have a custom config section in my config file. The ...
|
| Saving .csproj files | 17 Mar 2007 06:36 GMT | 2 |
Any help would be appreciated for the following problem. I've already spent a day at this, and enough is enough. I'm writing a ORM program. and in the process of running it against a database, I'm creating dozens of classes. I want to insert these
|
| Trouble with XPath query | 16 Mar 2007 19:03 GMT | 5 |
I have a query where i need to look for a value of a lower level xml element based on the value of a parent element existing first. Here is a simple example of the xml <S3Client>
|
| xsd.exe generating multiple enums for simple type of included schema file | 16 Mar 2007 18:02 GMT | 2 |
I'm just discovering the power of xsd.exe, so maybe I'm doing something wrong.
>From an external provider of a web service I received several xsd schema files describing requests and responses. So there is an extra
|
| what encoding does system.xml.xmldocument.save(string path) use to save the xml document if there is no <?xml... in the front of the xml document? | 16 Mar 2007 08:57 GMT | 2 |
what encoding does system.xml.xmldocument.save(string path) use to save the xml document if there is no <?xml... in the front of the xml document?
|
| Xpath query fails to return a node | 15 Mar 2007 18:36 GMT | 3 |
I am trying to extract a node from the following XML doc <?xml version='1.0' encoding='UTF-8'?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
| Fastest way to load an xml file into an array in .net | 15 Mar 2007 13:42 GMT | 4 |
VS 2005 SP1 (C#, VB.NET) I need the absolut fastest way of loading an xml-file of about 700KB into an array. I need to load about 1500 of those xml-Files into arrays on startup of my
|