Skip to content

XML / XSL

Discussions on XML and related technologies

This category can be followed from the open social web via the handle xml-xsl@forum.codeproject.com

2.6k Topics 6.8k Posts
  • XML ASP to ASP.net with url parameters [modified]

    database xml question csharp asp-net
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Specification for Data Transfer in XML format?

    csharp com business xml question
    2
    0 Votes
    2 Posts
    0 Views
    D
    anuj_mca wrote: Anuj Chauhan 0091 9313499294 anuj.mca@gmail.com http://in.linkedin.com/in/anujchauhan Wow! a treat for spammers. Yes there are XML standards which are followed when you are sending/recieving XML data. Although they depend on the kind of industry you are working on. I would suggest to search "[your indusrty domain] xml standards". I am sure it would give you a lot of useful results. 50-50-90 rule: Anytime I have a 50-50 chance of getting something right, there's a 90% probability I'll get it wrong...!!
  • Storing XML data into SQL database

    database xml tutorial announcement
    2
    0 Votes
    2 Posts
    0 Views
    A
    Use an xml datatype for the column and just do an insert, the same as any other data. Bob Ashfield Consultants Ltd Proud to be a 2009 Code Project MVP
  • Example modal popup in XSL

    xml tutorial question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • How to embed images in to xml file?

    xml help tutorial question
    6
    0 Votes
    6 Posts
    0 Views
    G
    Are you trying to insert images into an Excel (XML Spreadsheet) file? I don't know how to do it, try to look at the documentation[^].
  • Procedure for sending XML between Web Computers without Web Services

    wcf xml
    2
    0 Votes
    2 Posts
    0 Views
    L
    FJJCENTU wrote: Please lwt me know if is there any way for sending and collecting Xml files between computers in order to be inmediately processed by the receptor at the arrival. The most basic communication method is direct TCP or UDP using sockets. If this is between Windows systems you should be able to use WCF.
  • 0 Votes
    3 Posts
    0 Views
    V
    i found the Problem. The name of the Attribute was Desks_&_Chairs Thanks Vuyiswa Maseko, Spoted in Daniweb-- Sorry to rant. I hate websites. They are just wierd. They don't behave like normal code. C#/VB.NET/ASP.NET/SQL7/2000/2005/2008 http://www.vuyiswamaseko.com vuyiswa@its.co.za http://www.itsabacus.co.za/itsabacus/
  • XQuery / multiple conditions

    database xml tutorial question announcement
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • MS-SOAP TK & SSL/HTTPS problem

    help wcf security cryptography
    2
    0 Votes
    2 Posts
    0 Views
    E
    You resolve the problem? I am with the same problem
  • Xml to RDBMS table data transgformation

    java xml question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Xml File Problems

    csharp database sql-server sysadmin xml
    2
    0 Votes
    2 Posts
    0 Views
    T
    Not to put to fine a point on it, what is stopping you? I'm not seeing a question or a problem here, just a task you have to do. If you are having problems with your code post the problem code and errors and we can help. If you have knowledge, let others light their candles at it. Margaret Fuller (1810 - 1850) www.JacksonSoft.co.uk
  • Space in attribute name

    xml question
    3
    0 Votes
    3 Posts
    0 Views
    T
    Aniruddha, Just check the spec, there is no such thing as attribute names with spaces. Validation of a corresponding document should fail. Best regrads, Stefan
  • XSL group [modified]

    xml question com regex announcement
    2
    0 Votes
    2 Posts
    0 Views
    T
    Clas, can you use XSLT 2.0 instead 1.0? (If you can control the XSLT engine you use, then switch to SAXON by M. Kaye, from the web-site, you can also download all you need for .NET reuse.) If so, and the so-called Muenchian method is your friend. All you need to know you will find here: http://www.jenitennison.com/xslt/grouping/muenchian.html[^] Best regards, Stefan
  • 0 Votes
    2 Posts
    0 Views
    S
    XPath? Here's some VBscript that uses XPath to select the nodes you want Dim attrValue, child1, child2, gChild1 zone = "Zone0" dfgw = """192.168.25.1""" WScript.Echo "Zone is: " & zone WScript.Echo "dfgw is: " & dfgw Set xDoc = CreateObject("Microsoft.XMLDOM") 'CreateObject("Msxml.DOMDocument") CreateObject("Microsoft.XMLDOM") xDoc.async = False xDoc.load ("a.xml") 'Load XML document xpathString = "//" & zone & "/DFGW[text() = '" & dfgw & "']/Company" WScript.Echo xpathString Set CompanyNodeList = xDoc.selectNodes(xpathString) WScript.Echo CompanyNodeList.Length You just need to be sure that the string values are correctly escaped when building the query. Also - why the quotes around the string values? Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
  • XSD Unique Implementation and XPath

    xml help tutorial question
    5
    0 Votes
    5 Posts
    0 Views
    S
    Schematron is supported by libxml2, so (therefore) is accessible to C or C++ or anything else that exposes that part of libxml2 through a binding. The Schematron website describes the steps needed to perform Schaematron validation: xslt -stylesheet iso_dsdl_include.xsl theSchema.sch > theSchema1.sch xslt -stylesheet iso_abstract_expand.xsl theSchema1.sch > theSchema2.sch xslt -stylesheet iso_svrl_for_xsltn.xsl theSchema2.sch > theSchema.xsl xslt -stylesheet theSchema.xsl myDocument.xml > myResult.xml Basically, generate an XSLT file from your Schematron schema (the first three steps). Then process the input XML file using your XSLT processor and the generated XSLT file to output something that tells you if the XML is valid per the Schematron schema. Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
  • Sorted xml element while serialising

    question csharp xml tutorial
    2
    0 Votes
    2 Posts
    0 Views
    S
    Fixed it. It turns out, fields are serialised before properties and my code was actually like this: [Serializable] public class Request { [XmlElement("Type")] public string Type { get; set; } [XmlElement("Id")] public int Id; // <<<--- Note this is a field, not a property }
  • How to Password Protect a XML SpreadSheet

    xml tutorial question
    2
    0 Votes
    2 Posts
    0 Views
    C
    It's as if you understand XSLT, and yet somehow have no idea what XML is. How is that possible ? XML is a string. You can write external code to encode the entire string ( meaning it won't be XML anymore ), or to encode the contents of the nodes. You'd then need corresponding code to decode the information. You can invent a 'password protect tag', but it's plainly not going to alter the fact that all you have is a plain text file. Christian Graus Driven to the arms of OSX by Vista. Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
  • attribute centric

    database tutorial csharp linq xml
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Comparing two xml files

    question com sysadmin xml
    2
    0 Votes
    2 Posts
    0 Views
    S
    Can you explain it more.may be i can help.
  • C# XML datagridview delete row

    csharp xml tutorial question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied