The first question youhave to ask yourself is how dynamic your content really is? I tend to store data in XML but then I generate static XHTML from it, so the server is not burdened by the XML processing each time a page is served. Of course you can also put a cache in front of it and then it is dynamic for you but mostly static for the users.

If you want a truly dynamic site you might want to look into AxKit, and read the XML application servers thread. AxKit will let you define stylesheets applied to your XML data and it will take care of the caching. Be ready to learn XSLT or XPathScript though.

As for resources on Perl and XML, Data Munging with Perl by Davorg has a section on XML that describes XML::Parser and XML::DOM, the Module Reviews section here has got a bunch of reviews of XML modules, xml.com has got a number of articles on Perl and XML, look for Kip Hapmton's column, and I have a list of articles, mostly about Perl and XML, all linked from here. Generic info on XML can be found on The XML Cover Page which has a (short) section on XML and Perl.


In reply to Re: XML/Perl integration and experience? by mirod
in thread XML/Perl integration and experience? by r.joseph

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.