| Thread | Last Post | Replies |
|
| Have Node want Element | 14 Oct 2003 20:02 GMT | 2 |
I am cycling through a NodeList and find the node I want. How do I turn this into a node element so I can set the attributes to the values I need. Thanks in advance.
|
| XML transformation | 14 Oct 2003 18:10 GMT | 1 |
There is any way to transforming XML using XSL according with Schema? I need to add arguments to the certain tags according with their datatype. Thanks, Lenny
|
| Soap client | 14 Oct 2003 17:51 GMT | 2 |
How could I consume Web services created using c# with soap client written on c++6.0 ? I can't use .net on client app. Thanks in advance.
|
| how to transform escaped xml contents in xmlnode | 14 Oct 2003 15:18 GMT | 4 |
I have an XML document, created from ADO DataSet, which contains XML data in some nodes shown below: <NewDataSet> <Table>
|
| generating UPDATEGRAMs | 14 Oct 2003 12:42 GMT | 5 |
Does anyone know of a component or class that available for generating updategrams from custom business objects? Ideally I need something that parses a mapping schema, interrogates an object, and produces an updategram. Any suggestions are welcome.
|
| problems creating xml documents with vb.net | 14 Oct 2003 12:40 GMT | 2 |
OK.. I am creating an XML document (Fedex Tracking). And one of my attributes on an element is supposed to have an "xsi:" before the attribute name. It is in my code below.. but the output does not have the "xsi:" The area to look at is the "noNamespaceSchemaLocation" Any ideas ...
|
| error getting the encoding name from an XmlTextReader | 14 Oct 2003 12:32 GMT | 4 |
XmlTextReader myXmlReader = new XmlTextReader(args[0]); string en = myXmlReader.Encoding.EncodingName; //Console.WriteLine(x); Error:
|
| Condition-clause in XSLT using .Net System.Xml | 14 Oct 2003 11:55 GMT | 4 |
I'm trying to execute a simple <xsl:if>-clause with a condition that reads: a<1 In MSXML 4 the clause <xsl:if test="a < 1">do something...</xsl:if> works fine.
|
| reading xml from MemoryStream causes exception | 14 Oct 2003 10:01 GMT | 1 |
PREVIOUS BACKGROUND POST: I am trying to reuse a Memory Stream for loading and transforming the xml it contains Basically I have defined following interfaces:
|
| Auto change in Encoding - XmlReader, XmlDocument, StringWriter | 14 Oct 2003 01:09 GMT | 2 |
This is part of the application that reads XML from file (that has UTF-8) into an XmlTextReader XmlTextReader myXmlReader = new XmlTextReader(args[0]); It then instantiates an object/class instance Render where
|
| Getting nodes with or without namespaces. | 13 Oct 2003 21:44 GMT | 2 |
I'm having trouble trying to write a generic solution for parsing xml files. The xml-files I recieve can have namespaces or not, depending on the source - however, the treestructure is the same for all. An extra difficulty is
|
| Need help with XSLT for DATES in DataSet for XMLSS | 13 Oct 2003 16:43 GMT | 3 |
I am using an XSLT file to convert data in a DataSet to XMLSS format for opening in Excel. Excel doesn't like the way Dates in the DataSet are being ouput. It appears that a timezone offset is being appended to the datetime; e.g., instead of "2003-08-26T00:00:00.0000000" I am
|
| Read & Write To XML | 13 Oct 2003 11:28 GMT | 8 |
i like to read an existing xml file which has a schema defined to it, and then write or add data to the existing xml file using vb.net/c#. May be this Question has been answered earlier. Pls if anyone knows the link or example let me know
|
| Reading an XML file with " and ' as attribute value quotes | 13 Oct 2003 11:16 GMT | 2 |
I am currently working on a build solution for multiple c#/vb projects and I'm nearly done. There is one single problem remaining: In case one of the project settings contains a " (double quote ;-), the attribute's value within the project file will automatically be
|
| NameTable question | 13 Oct 2003 10:41 GMT | 4 |
In my C# application I have an object model which can be loaded and saved into xml, not using serialization. When changes are made to the object model by the user interface, I use another thread to read the xml from the object model and run a transform on that xml. I have added ...
|