Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
all groups > dotnet xml > february 2006 > threads for february 1 - 7, 2006

Filter by week: 1 2 3 4

XML DSIG Question
Posted by Markus Strobl at 2/7/2006 1:22:42 PM
Hi! I have a general question concerning xml digital signatures. Is XML-DSIG verifying that the content of the XML document isn't modified or does XML-DSIG really signs the binary representation of some data (mostly xml i guess). To make my question more clearly i have an example: Ar...more >>


ReadXml to read recurring occurences of same tag?
Posted by Vinit at 2/7/2006 10:26:27 AM
Hello, I have an xml file with the following snippet: ....... some tags <ListItems> <item> 1 </item> <item> 2 </item> <item> 3 </item> </ListItems> I need to populate a dataset containing a table with one column "Item" with rows containin...more >>

escaped xml?
Posted by bg at 2/6/2006 5:26:06 PM
Hi all, I need to get from an XmlNode the XML in an escaped form i.e. the angly bits as &lt; and &gt; And I also need to do the reverse, put escaped text back into an XMlNode, is this posible? ...more >>

Deserialize and Serialize InfoPath data?
Posted by Jeff Richardson at 2/6/2006 12:09:58 PM
This is a repost from the InfoPath news group. Hi, I am writing a SharePoint application that works with InfoPath forms. When a user submits a completed InfoPath form to a forms library my code processes the posted xml file by reading the data into a C# class object that was generated by XSD...more >>

Multiple parent nodes
Posted by tomk10 NO[at]SPAM gmail.com at 2/6/2006 9:51:35 AM
I'm creating an xml file from some data and I'm geting repeating parent nodes in the xml file. Not sure where I'm going wrong? <?xml version="1.0" standalone="yes"?> <MyTestData xmlns="http://www.mytestdata.com/list_data.xsd"> <Wigets> <Wiget>Muffler Bearing</Wiget> </Wigets> <Wi...more >>

Implement sorting in an XML file?
Posted by Cerebrus99 at 2/6/2006 12:01:16 AM
Hi all, I am confused about how to sort an XML file. I mean how to *actually* sort the data in the physical file, not how to display sorted data. I am using a large XML file as a back-end database, and am making many inserts and updates using the XmlDocument class. But I need to make the XML ...more >>

Problem with URL characters to be saved in XML formatted doc.
Posted by Joe at 2/4/2006 10:52:53 PM
I want to save some URLs into a XML formatted document. > > I find out that its having some problems due to some of the characters > used > in the URL. > > Is there a quick way to get around that? Thanks. > > Here are some of the URL characters in the parameters > > www.site.com/='N+Ss+V...more >>

XML data entry for given XML schema
Posted by Stephan (Germany) at 2/4/2006 11:39:40 AM
Hello, maybe this qustion sounds silly but in VS2005, I'm looking for the same possibilty to entry data for a predefined XML schema in grid view. In VS2003, you were able to do it if you simply set the target schema of your new XML file (which contains nothing besides the xml version line)...more >>



DTDs and xsl transforming
Posted by Jon at 2/3/2006 8:30:32 AM
I am getting the following message when I try to transform an xml file that specifies a DTD. I know how to allow DTDs when using an xmlreader, but not when using the xsl transform. Can someone enlighten me, please. System.Xml.XmlException was unhandled Message="For security reasons DTD is ...more >>

Different namespace on attribute
Posted by Karine Bosch at 2/3/2006 7:58:05 AM
Hi, My xml document uses different namespaces: <x:root xmlns:x="x:ns:meta/"> <element1 xmlns:adam="http://ns.alfaprint.be/"> </root> This gives problems when using an XPath query. I already created 2 namespace managers XmlNamespaceManager mgr1 = new XmlNamespaceManager(oXmlDocument...more >>

Help with Soap
Posted by star at 2/3/2006 7:32:29 AM
Hi I am new to SOAP infact I know nothing abt it. We have a web service and Soap calls are made to it. I have the custom code to it but I don't even know how to run it or how to make connection to it. What I did is I saved the code as an XML file but when I open with IE it gives me following ...more >>

XmlXml() or XmlRaw() or XmlText(typeof(PCDATA)) or ??
Posted by junk NO[at]SPAM EveryBody-Fits.com at 2/3/2006 4:35:07 AM
This seems something that should be easy and not uncommon... but hours of searching have yielded nothing! I am using XmlSerializer to map some XML (not defined by me) into some class objects (defined by me). And it is working great for most cases. Just have one more to handle... One of th...more >>

vb.net xsltransform hangs with fxsl randomizeList template
Posted by rmgalante NO[at]SPAM yahoo.com at 2/2/2006 1:49:07 PM
Hello, I have a VB.Net component that uses the XslTransform object. I am using the FXSL randomizeList function in my XSL template. When I transform the XML in the VB.Net component, my application hangs. When I load the XML in a browser with a reference to the XSL template, it works fine. ...more >>

Create XML coforming to a XSD
Posted by Ganesh Muthuvelu at 2/2/2006 9:47:27 AM
Hello, I have data contained in different tables in the SQL Server database. Now I need to pull data from these tables (using a SP or a simple query) and then create a XML file that conforms to a particular XSD. I was just wondering if I could get any pointers on how I can use the .NET XML li...more >>

Using Xpath to get name with same name at different depths
Posted by nick_tucker NO[at]SPAM hotmail.com at 2/2/2006 12:44:02 AM
Hi, I am very new to XML and XPATH. I have made a sample XML fileto ask my question. <?xml version="1.0" encoding="utf-8"?> <Test> <A> <B> <C> <D> <NAME>Jack</NAME> </D> </C> </B> </A> <J> <NAME>James</NAME> </J> <X> ...more >>

Iterating through child elements with XmlTextReader?
Posted by Gustaf at 2/1/2006 10:37:57 PM
I got a case where an element may contain a list of unknown elements. I don't know the name of the children, and it matters which parent they belong to: <reference id="ref1"> <e1></e1> <e2></e2> ... </reference> I read the doc with XmlTextReader, so I think I need a way to swi...more >>

XSD.EXE Question
Posted by probashi at 2/1/2006 12:41:24 PM
I am getting xml like this from our vendor: <XXX> <XXXDATASET ROWS="00005"> <XXXROW> <XXXColum ID="CustomerName">John Smith</XXXColum > <XXXColum ID="AddressLine1">Road One</XXXColum > <XXXColum ID="Zip">123456</XXXColum > ...more >>

XML Trouble Moving to .Net
Posted by DouglasABaker NO[at]SPAM gmail.com at 2/1/2006 8:42:02 AM
I'm having problems getting this to return a response in .Net, any ideas? I've been playing around with WebRequest/WebResponse, is that what I should use? Thanks sXMLMessage = "<?xml version=" & Chr(34) & "1.0" & Chr(34) & "?>" & vbCrLf sXMLMessage = sXMLMessage & "<transaction>" sXMLMessa...more >>

XML Elements have the same attributes
Posted by lltaylor2000 NO[at]SPAM yahoo.com at 2/1/2006 5:24:02 AM
Hello, I am creating an XML Document using XmlDocument. I can create my top node no problem However when I add child nodes they seem to inherit the xmlns="" attribute (see xml below). How can I stop this? ------------------------- Code snippet ------------------------- n = xmlDoc.Cr...more >>


DevelopmentNow Blog