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 > march 2006 > threads for march 1 - 7, 2006

Filter by week: 1 2 3 4 5

The best online tutorial on XSLT/XPath you know
Posted by Paolo De Nictolis, Eng. [441410] at 3/7/2006 10:29:51 PM
Hello everybody, from what you know, what is the best online tutorial for this two technologies? ...more >>


XMLtags and WSDL
Posted by JackieB at 3/7/2006 8:21:01 PM
Hello, Can anyone point me a documentation that show what kind of XML-tags are existing when you whan to modify your wsdl file? I understood that the only way to modify .NET Webservice's wsdl is to embed XML tags into code, I'm I rigth? So, any help appraised. ...more >>

Need some help on this xsl, thanks
Posted by davidw at 3/7/2006 7:18:19 PM
Hi, I want a xsl so I can categorize a flat xml, like this: <field name="a1"/> <field name="a2" merge="true"/> <field name="a3"/> <field name="a4"/> <field name="a5" merge="true"/> <field name="a6" merge="true"/> <field name="a7"/> so the outer loop will go through a1, a3,a4,a6,a7, and i...more >>

templates and xpath expr with predicate and first and last functions
Posted by Martin at 3/7/2006 2:57:10 PM
HI, I have some data like: <x> <y Position='Top'/> <y/> <x/> and a template like: <xsl:template match="/x/y[@Position='Top']"> <li> <xsl:if test="position()=last()"> <xsl:attribute name="class">last</xsl:attribute> </xsl:if> </li> </xsl:template> I want to catch the last ...more >>

Creating a document type in C#
Posted by scottl at 3/7/2006 10:13:11 AM
I'm trying to programmatically create a document type using the CreateDocumentType method of XmlDocument. The document type declaration is: <!DOCTYPE procedure PUBLIC "-//LMSSC//DTD XML//CAEWriter Minimal Revisable Units 2.0.2//Vulcan//EN" "vulcan-cae.dtd"> Using the method generates an ...more >>

read and interpret xml string
Posted by Citizen10Bears NO[at]SPAM gmail.com at 3/6/2006 12:44:33 PM
hi all, perhaps a simple question, but some guidance would be great... I have a webservice that churns out XML. I need to create a VB.NET app to call the webservice, read the XML response, and then perhaps iterate through it to display the content in listviews, treeviews and the like. An...more >>

Create simpleType for date format
Posted by ZagrebMike at 3/6/2006 6:56:28 AM
Hi, I want to create a simpleType that will constrain an element to be a date of the form dd/mm/yyyy. I have this at the moment, <xs:simpleType name="newDate"> <xs:restriction base="xs:string"> <xs:pattern value="((0[1-9]|1\d|2[0-9])/([0][1-9]|1[0-2])|30/(0[13-9]|1[0-2...more >>

XML Serialization of Object
Posted by jw56578 NO[at]SPAM gmail.com at 3/4/2006 3:56:53 PM
how would i structure a C# class to properly serialize into the following XML Schema <root> <MainItem> <SubItem/> <SubItem/> </MainItem> </root> If i create a property as an array of SubItem objects, then it will add a parent element name "SubItems" plural,...more >>



XPathNavigator, Attribute predicate evaluation
Posted by SteZgr at 3/3/2006 7:59:50 PM
I have implemented in .NET 2.0 a custom XPathNavigator for Xpath filtering on an object tree. So far it works. While analyzing the performance, I have noticed a lot of MoveToNextAttribute calls. A closer look has shown that there seems to be a none optimal evaluation of attribute predica...more >>

embed xml
Posted by murali.trichy at 3/2/2006 11:08:17 PM
Hi, I'm new to dotnet xml. I want to embed my part of xml to existing xml data using xmldocument. I think there is an option but i'm not getting exactly. eg: DocumentElement.InsertAfter is used to insert the node but reference is problem ie how can i give ? sample : <span> <div a...more >>

Complex XML transformation in a better performance way?
Posted by Tommy at 3/2/2006 8:51:22 PM
The problem is how to achieve the transformation as below: The source xml contains tons of repeating structure like below, each item node contains a person element and a insurance element that correlate to the Person element with the person id. <Item> <Person id=”p123” name=”someon...more >>

Import XML into Word Document
Posted by LundK at 3/2/2006 3:50:27 AM
Hello, today I read an Article on MSDN on how to create Word templates that use XML schemas. The Articel is called "Creating and Applying an XML Resume Template in Microsoft Office Word 2003" (http://msdn.microsoft.com/office/understanding/xmloffice/codesamples/default.aspx?pull=/library/en...more >>

XML Webservice authentication
Posted by GMG at 3/1/2006 10:46:39 PM
Is it possible to use FormAuthentication or do I have to manage my own cookies and if so a sample/URL would be greatly appreciated. ...more >>

Additional properties of attributes in XSD
Posted by Abdullah Kauchali at 3/1/2006 9:23:27 PM
How does one define additional attributes for elements in an XSD? So, I'd like something like this: .... <xs:element name="ClaimNumber" type="xs:string" mycustomproperty="xs:string"/> .... Ideally, I'd like Visual Studio (2005) to allow the entry of these "additional properties" while ...more >>

Confusing Error Using Visual Studio 2005 - Newbie
Posted by Ken Wilson at 3/1/2006 8:33:24 PM
Please bear with me on this as I'm still relatively new to XML technology. I am following some sample code and getting an error that states an attribute has not been declared. The attribute in question is part of an inner namespace as follows: <html:html xmlns:html="http://www.w3.org/1999/xh...more >>

Unable to generate Proxy for web service; multiple typed Dataset p
Posted by Naveen at 3/1/2006 2:10:16 PM
Hi All, I have a web service which accepts three Typed dataset parameters and I return back two of them. The datasets use a secondary schema (the schema is imported using include tag). While generating the proxy, the schema of the dataset generated in clubbed into one and the signature of ...more >>

Help - multiple web service methods map to a single implementation?
Posted by jjouett at 3/1/2006 1:54:17 PM
We are starting to setup some Web Services to provide our customers with a way to programatically interact with our application, and some of our customers have slightly different requirements in the structure, format, and representation of the results for common requests. Of course, we have to ...more >>

How to retreive deepest XPath value from XML using VB.NET
Posted by Goran Djuranovic at 3/1/2006 8:39:09 AM
Hi All, Does anyone know how to retreive deepest XPath value from XML document = by using VB.NET? For example, if I had an XML file like this: <Root> <Customer> <Name>MyName</Name> </Customer> </Root> I would like to retreive "\Root\Customer\Name" out of it. Something = ...more >>


DevelopmentNow Blog