| Thread | Last Post | Replies |
|
| problem with XmlDocument.Load Method (Stream) | 14 Nov 2005 20:27 GMT | 4 |
I have a problem, while retrieving xml data through network. I use Load(Stream) method for this, but this doesn't work: NetworkStream ns = client.GetStream(); StreamReader sreader = new StreamReader(ns);
|
| passing param to xslt styleseet problem | 14 Nov 2005 15:03 GMT | 7 |
The code below worked in VS 2003 & dotnet framework 1.1 but now in VS 2005 the pmID is evaluated to "" instead of what the value is set to: ... xmlItems.Document = pmXML
|
| Best wa to Read, Write/Create XML-Files | 14 Nov 2005 12:18 GMT | 1 |
I have to solve the following task: - create an editor-application in c# to read, modify and create xml-files - .xsd-schema-file is available and can be used
|
| Decreasing size of XMLSerilaized Payload | 14 Nov 2005 12:14 GMT | 1 |
Does anyone have any tips/hints for reducing the size of the XML produced? I can think of a couple: 1. Use XmlAttributeAttribute to save space 2. Used XmlIgnore for properties that are calculated rather than reference
|
| XmlDocument Performace & XmlWriter namespace oddity | 13 Nov 2005 21:01 GMT | 4 |
Hi, 2 questions.... 1. I'm parsing an XHTML document that contains both the default namespace (xmlns="http://www.w3.org/1999/xhtml") and a custom one (xmlns:r="...") - both of these being attributes of <html>. When I then insert new XmlNodes
|
| XslTransform - Receiving 'System.Xml.Xsl.XsltException: Missing mandatory attribute 'version' | 13 Nov 2005 19:09 GMT | 2 |
I'm receiving: 'System.Xml.Xsl.XsltException: Missing mandatory attribute 'version' After I try and run my transformation. I spent a good few days coming up with the appropriate (I think) methods, and overrides for this task.
|
| Migrating XSL stylsheets with msxsl:script from MSXML4 to System.X | 13 Nov 2005 08:48 GMT | 3 |
I am having problems trying to migrate our MSXML4-compatible stylesheets containing large msxsl:script blocks to a formate understandable by System.Xml:Xsl.XslTransform. I keep getting JS1135 errors saying that some variable was not declared. This scripts worked perfectly with ...
|
| Etherreal not capturing calls to localhost | 13 Nov 2005 01:09 GMT | 2 |
I have been using Ethereal to capture and view the XML messages being passed back and forth from my web service client to my web service. When calling the service over the internet, I choose my network card connection to the internet in Ethereal and it captures all the traffic
|
| XmlReader to XmlTextWriter without XmlDocument | 12 Nov 2005 00:36 GMT | 8 |
Im currently using the following code.. XmlDocument xmlData = new XmlDocument(); XmlTextWriter xmlwriter = new XmlTextWriter(Response.OutputStream,System.Text.Encoding.UTF8);
|
| RemoveNode | 12 Nov 2005 00:25 GMT | 1 |
What is the fastest way to do the following, using System.xml v2.0? System.Xml.XmlDocument document = new System.Xml.XmlDocument(); document.Load(@"test.xml"); System.Xml.XmlNodeList Nodes = document.SelectNodes("xml/foo/bar");
|
| xpath | 11 Nov 2005 16:02 GMT | 1 |
Here is my xml: <?xml version="1.0" encoding="utf-8" ?> <course id="2555" title="Developing Microsoft .NET Applications for Windows (Visual C# .NET)" length="5 days"
|
| XmlSerializer and ISerializable | 11 Nov 2005 04:47 GMT | 1 |
Can I control XmlSerializer's serialization/deserialization process by implementing ISerializable on the class I'm serializing? I'm doing exactly this with the SoapFormatter and I was wondering if it is the same for the XmlSerializer.
|
| Request.InputStream to multiple xmlreaders | 10 Nov 2005 19:00 GMT | 1 |
XmlTextReader requestdata = new XmlTextReader(Request.InputStream); XmlTextWriter xmltextwriter = new XmlTextWriter(somefile,someencoding); XmlTextWriter xmltextwriter2 = new XmlTextWriter(somefile2,someencoding);
|
| Deleting XML Record from Dataset removing table? | 10 Nov 2005 01:39 GMT | 1 |
When I delete the last record from my dataset and then WriteXML() to the file; the Table itself, in the xml file, is removed. I need to prevent the table structure from being deleted if there are no more records to be written to the XML file from the Dataset.
|
| Getting to an attribute. | 09 Nov 2005 15:28 GMT | 4 |
I have a service that I call that returns back a XmlNode type. I need to get to an attribute value and would like to use the GetAttribute method (because it takes a string). However, XmlNode (or XmlElement) does not have that method. They have the attributes collection with the ...
|