<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Songhay System Funky KB: XML Technologies</title>
        <link>http://www.songhaysystem.com/kb/subject/xml</link>
        <description>The Funky Knowledge Base at songhaysystem.com. The subject of this channel is XML Technologies.</description>
        <lastBuildDate>Tue, 02 Dec 2008 20:53:46 GMT</lastBuildDate>
        <item>
<title>Flex/ActionScript3: Run-Time Errors; Adobe® Flex™ 2 Language Reference</title>
<link>http://www.songhaysystem.com/kb/number/2076072072/subject/xml</link>
<description><strong>Article Excerpt: </strong>Code    Message    Description:

     1000    The system is out of memory.     Flash Player needs more memory to compile your code than your system has available. Close some of the applications or processes running on your system.

     1001    The method…</description>
<pubDate>Tue, 02 Dec 2008 20:53:46 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>OpenXML: “What is the Difference Between the System.IO.Packaging and Microsoft.Office.DocumentFormat.OpenXml.Packaging Namespaces?”; Eric White</title>
<link>http://www.songhaysystem.com/kb/number/2076072068/subject/xml</link>
<description><strong>Article Excerpt: </strong>There are two separate namespaces, each containing a number of classes, which you can use to open and get at the contents of Open XML documents.

* System.IO.Packaging is part of the .NET Framework 3.0 and 3.5. The classes are in the WindowsBase assembly.…</description>
<pubDate>Sat, 29 Nov 2008 04:45:53 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>XSLT 1.0: Flippant Remarks about xsl:template match=&quot;node()|@*&quot;; Copying All Nodes to Edit One Node; Understanding xsl:template priority; Doug Tidwell</title>
<link>http://www.songhaysystem.com/kb/number/2076072067/subject/xml</link>
<description><strong>Article Excerpt: </strong>This declaration

    xsl:template match=&quot;node()|@*&quot;

comes to me in this move:

    &amp;lt;xsl:template match=&quot;node()|@*&quot;&amp;gt;
    &amp;lt;xsl:copy&amp;gt;
        &amp;lt;xsl:apply-templates select=&quot;node()|@*&quot;/&amp;gt;
    &amp;lt;/xsl:copy&amp;gt;
    &amp;lt;/xsl:template&amp;gt;

It is an error to assume that xsl:t…</description>
<pubDate>Mon, 10 Nov 2008 19:48:46 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>XSD Markup: SqlResultStream; Raw XML; http://schemas.microsoft.com/sqlserver/2004/SOAP/types/SqlResultStream/SqlResultStream.xsd</title>
<link>http://www.songhaysystem.com/kb/number/2076072065/subject/xml</link>
<description><strong>Article Excerpt: </strong>&amp;lt;xsd:schema xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:sqlsoaptypes=&quot;http://schemas.microsoft.com/sqlserver/2004/SOAP/types&quot; xmlns:sqlmessage=&quot;http://schemas.microsoft.com/sqlserver/2004/SOAP/types/SqlMessage&quot; xmlns:sqlrowcount=&quot;http://schemas.mic…</description>
<pubDate>Tue, 28 Oct 2008 19:56:33 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>XML Data Modification Language (XML DML)</title>
<link>http://www.songhaysystem.com/kb/number/2076072001/subject/xml</link>
<description><strong>Article Excerpt: </strong>The XML Data Modification Language (XML DML) is an extension of the XQuery language. As defined by W3C, the XQuery language lacks the Data Manipulation (DML) part. The XML DML introduced in this topic, and also the XQuery language, provides a fully functi…</description>
<pubDate>Mon, 25 Aug 2008 00:41:35 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>OpenXML: Flippant Remarks about OpenXML</title>
<link>http://www.songhaysystem.com/kb/number/2076071990/subject/xml</link>
<description><strong>Article Excerpt: </strong>No more shall the SDK for OpenXML be confused with the Word 2007 Content Control Toolkit.

The strong word “Part” used throughout the OpenXML API, starting with the abstraction OpenXmlPart, represents a location in the ZIP OpenXmlPackage. In the same …</description>
<pubDate>Tue, 19 Aug 2008 23:14:36 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>Flex/ActionScript 3: “Common E4X pitfalls ”; mikemo</title>
<link>http://www.songhaysystem.com/kb/number/2076071981/subject/xml</link>
<description><strong>Article Excerpt: </strong>1. Set resultFormat=&quot;e4x&quot; on your HTTPService
2. E4X expressions don't reference the topmost tag of the XML
3. Use for each, not for
4. Use for each (child in parent.*), not for each (child in parent)
5. E4X intentionally blurs the distinction between XML…</description>
<pubDate>Thu, 03 Jul 2008 20:27:40 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>Adobe Flex 2 and Fireworks CS3: Fireworks Only Supports mx:Image Elements</title>
<link>http://www.songhaysystem.com/kb/number/2076071915/subject/xml</link>
<description><strong>Article Excerpt: </strong>&amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&amp;gt;
&amp;lt;mx:Application
    x­mlns:mx=&quot;http://www.adobe.com/2006/mxml&quot;
    width=&quot;128&quot; height=&quot;128&quot;
    layout=&quot;absolute&quot;&amp;gt;

&amp;lt;!--
    The Adobe Fireworks CS3 File &amp;gt; Export command
    has an export type called “MXML and Im…</description>
<pubDate>Thu, 22 Nov 2007 07:06:42 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>Adobe Flex 2: The Minimal MXML Application with an ActionScript3 Package</title>
<link>http://www.songhaysystem.com/kb/number/2076071914/subject/xml</link>
<description><strong>Article Excerpt: </strong>This is the MXML in a file called Client.mxml:

&amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&amp;gt;
&amp;lt;mx:Application
    x­mlns:mx=&quot;http://www.adobe.com/2006/mxml&quot;
    horizontalAlign=&quot;center&quot; verticalAlign=&quot;center&quot;
    initialize=&quot;ClientAction.Initialize()&quot;
    &amp;gt;

&amp;lt;/…</description>
<pubDate>Wed, 14 Nov 2007 05:08:56 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>WordProcessingML: Flippant remarks about the run element</title>
<link>http://www.songhaysystem.com/kb/number/2076071633/subject/xml</link>
<description><strong>Article Excerpt: </strong>A run is an arbitrary sequence of characters in an Office System Word 2003 document. In Visual Basic for Applications for Word, this would probably be called a Range. The run element, &amp;lt;r /&amp;gt; is documented here:

    http://msdn.microsoft.com/library/en-us/…</description>
<pubDate>Tue, 15 May 2007 19:32:58 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>WPF XAML: Reading Properties.Settings Data</title>
<link>http://www.songhaysystem.com/kb/number/2076071827/subject/xml</link>
<description><strong>Article Excerpt: </strong>&amp;lt;Window
    x­mlns=&quot;http://schemas.microsoft.com/winfx/2006/xaml/presentation&quot;
    x­mlns:x=&quot;http://schemas.microsoft.com/winfx/2006/xaml&quot;

    x­mlns:c=&quot;clr-namespace:My.WpfApp&quot;

    x:Class=&quot;My.WpfApp.Client&quot;

    Name=&quot;MyWindow&quot;
&amp;gt;
    &amp;lt;Window.Resour…</description>
<pubDate>Tue, 15 May 2007 19:36:01 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>XSLT in .NET: Default Security Used for xsl:include Element; XmlUrlResolver</title>
<link>http://www.songhaysystem.com/kb/number/2076071824/subject/xml</link>
<description><strong>Article Excerpt: </strong>The xsl:include include element needs no special security procedure associated with it. It should behave as expected when an XSLT file is including another file on the same server---especially one in the same application domain.

'No special security proc…</description>
<pubDate>Thu, 03 May 2007 23:34:01 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>XSLT Problem: The String &quot;x­mlns&quot; Can Mangle Output</title>
<link>http://www.songhaysystem.com/kb/number/2076071823/subject/xml</link>
<description><strong>Article Excerpt: </strong>By simply typing the string &quot;x­mlns&quot; in an XSLT file, or inserting this string into an XSLT source XML file, XSL processing can mangle output in the PHP environments and on the .NET 2.x platform (and below).

The string &quot;x­mlns&quot; refers to declaring/regi…</description>
<pubDate>Thu, 03 May 2007 06:37:57 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>XSLT Snippet: Degrading XHTML for Macromedia/Adobe Flash; inner_xhtml Template</title>
<link>http://www.songhaysystem.com/kb/number/2076071792/subject/xml</link>
<description><strong>Article Excerpt: </strong>&amp;lt;xsl:template name=&quot;inner_xhtml&quot;&amp;gt;
    &amp;lt;xsl:param name=&quot;p_class_name&quot; select=&quot;''&quot;/&amp;gt;

    &amp;lt;xsl:for-each select=&quot;text()|*&quot;&amp;gt;
        &amp;lt;xsl:choose&amp;gt;
            &amp;lt;xsl:when test=&quot;local-name(.) = 'a'&quot;&amp;gt;
                &amp;lt;a href=&quot;{./@href}&quot;&amp;gt;&amp;lt;xsl:call-template name=&quot;in…</description>
<pubDate>Fri, 02 Mar 2007 21:27:23 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>Default XSLT File for PHP REST Framework</title>
<link>http://www.songhaysystem.com/kb/number/2076071758/subject/xml</link>
<description><strong>Article Excerpt: </strong>&amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&amp;gt;
&amp;lt;xsl:stylesheet
    version=&quot;1.0&quot;
    xmlns=&quot;http://www.w3.org/1999/xhtml&quot;
    xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;
    &amp;gt;

    &amp;lt;xsl:output
        encoding=&quot;utf-8&quot;
        indent=&quot;yes&quot;
        media-type=…</description>
<pubDate>Thu, 14 Sep 2006 22:34:32 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>XSLT Markup: The importance of the XPath Boolean functions false() and true()</title>
<link>http://www.songhaysystem.com/kb/number/2076071714/subject/xml</link>
<description><strong>Article Excerpt: </strong>The strings 'true' and 'false' have no meaning for XPath functions. Please note that the following two lines are both true:

    boolean('true')

    boolean('false')

Moreover, the following is a node test for a node called &quot;true&quot;:

    boolean(true)

Th…</description>
<pubDate>Tue, 27 Sep 2005 21:21:24 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>ASP and XML/XSL: Flippant Remarks About XML-Based Designs</title>
<link>http://www.songhaysystem.com/kb/number/2076071404/subject/xml</link>
<description><strong>Article Excerpt: </strong>The main idea behind incorporating XML into ASP solutions (besides vacuous fashion trends labeled &quot;cool&quot;) is to reduce dependency on Microsoft-specific components (while simultaneously being vendor-compliant). In keeping with this realistic goal, the firs…</description>
<pubDate>Fri, 16 Sep 2005 21:37:00 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>Visual Studio .NET: xsi:noNamespaceSchemaLocation and xsi:schemaLocation Attributes is not supported in VS.NET 2003</title>
<link>http://www.songhaysystem.com/kb/number/2076071702/subject/xml</link>
<description><strong>Article Excerpt: </strong>Many an experienced Visual Studio .NET user who is an inexperienced XSD designer will be wont to take advantage of this path:

    %ProgramFiles%\Microsoft Visual Studio .NET 2003\Common7\Packages\schemas\xml\

This path is involved in adding Intellisense…</description>
<pubDate>Wed, 31 Aug 2005 04:36:26 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>Extensible Markup: Flippant Remarks about Typographic Representations in XML</title>
<link>http://www.songhaysystem.com/kb/number/2076071698/subject/xml</link>
<description><strong>Article Excerpt: </strong>&amp;gt;&amp;gt;&amp;gt;The number one rule:
The number one rule for me is to trust in glyphs. I used to depend on entities back the HTML 4.x days, but now it's all about Unicode glyphs.

&amp;gt;&amp;gt;&amp;gt;No-break space:
XML (namely XHTML) will collapse spaces (entered by the spacebar). To…</description>
<pubDate>Thu, 04 Aug 2005 17:06:34 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>XSLT Markup: Flippant Remarks for Procedural Developers Writing XSL Templates; XSLT variables</title>
<link>http://www.songhaysystem.com/kb/number/2076071692/subject/xml</link>
<description><strong>Article Excerpt: </strong>An XSL transformation is an XML document of declarations about how to rearrange the elements and attribute of another, source XML document. An XSL transformation might be seen as a &quot;type&quot; that derives from XML in the same way that any class definition ult…</description>
<pubDate>Thu, 21 Jul 2005 19:43:11 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>XSLT Markup: Flippant Remarks about Passing External Parameters to Style Sheets; MSXML</title>
<link>http://www.songhaysystem.com/kb/number/2076071691/subject/xml</link>
<description><strong>Article Excerpt: </strong>Make sure to pass scalar values as external parameters to style sheets. Don't send XPath queries as parameters---especially an XPath query with a predicate like this:

   /plays/playwright[last_name='Shakespeare']

It is better to just send the scalar tex…</description>
<pubDate>Thu, 21 Jul 2005 03:41:34 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>XSLT Markup: The Default Markup for HTML Output for an XSL Style Sheet Used in Visual Studio.net for HTML Intellisense Support</title>
<link>http://www.songhaysystem.com/kb/number/2076071647/subject/xml</link>
<description><strong>Article Excerpt: </strong>&amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; ?&amp;gt;
&amp;lt;xsl:stylesheet
    version=&quot;1.0&quot;
    xmlns=&quot;http://schemas.microsoft.com/intellisense/ie5&quot;
    xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;&amp;gt;

    &amp;lt;xsl:output method=&quot;html&quot; /&amp;gt;

    &amp;lt;xsl:template match=&quot;/&quot;&amp;gt;
     …</description>
<pubDate>Wed, 23 Feb 2005 22:53:45 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>WordPress PROBLEM: Backslashes Stripped from Posts</title>
<link>http://www.songhaysystem.com/kb/number/2076071636/subject/xml</link>
<description><strong>Article Excerpt: </strong>WordPress strips backslashes out of posts. Escape to &amp;#092;. For more info check out this:

    http://blog.carthik.net/vault/2004/06/19/bob-bemer-is-to-blame/</description>
<pubDate>Wed, 26 Jan 2005 23:53:59 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>WordPress PROBLEM: &quot;Sorry, you need to enable sending referrers, for this feature to work&quot; error; Enabling Referrers</title>
<link>http://www.songhaysystem.com/kb/number/2076071637/subject/xml</link>
<description><strong>Article Excerpt: </strong>This is security issue: &quot;Your WordPress installation checks 'sending referrers' as a basic form of security to protect your admin area from unauthorized users; disabling it in your WP install would be a bad idea.&quot; For the details please see:

    http://c…</description>
<pubDate>Wed, 26 Jan 2005 23:57:44 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>Rockford Lhotka Remoting Terminology: Layer, Tier, Application, Service; SOA; Service Oriented Architecture</title>
<link>http://www.songhaysystem.com/kb/number/2076071630/subject/xml</link>
<description><strong>Article Excerpt: </strong>Rockford Lhotka, his Blog entry &quot;Middle-tier hosting: Enterprise Services, IIS, DCOM, Web services and Remoting&quot; makes the effort to clearly define terminology used in &quot;remoting&quot; which is something that has to do with SOA---which is something that ultimat…</description>
<pubDate>Wed, 12 Jan 2005 02:57:16 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>Microsoft Word to XML Converters, Flippant Remarks</title>
<link>http://www.songhaysystem.com/kb/number/2076071621/subject/xml</link>
<description><strong>Article Excerpt: </strong>Don Box stopped working on an XSL transform of WordML to XHTML.

Microsoft WordML to HTML XSL Transformation appears to have vanished from the Download Center and is probably buried in the MSIE-only Word 2003: XML Viewer (wmlview.exe). However, this guy, …</description>
<pubDate>Thu, 18 Nov 2004 09:14:44 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>Flippant Remarks about XHTML Editors; XHTML Editing Components for Enterprise Data Solutions</title>
<link>http://www.songhaysystem.com/kb/number/2076071603/subject/xml</link>
<description><strong>Article Excerpt: </strong>* CuteEditor for .NET from CuteSoft.net is a full blown ASP.NET application with several tens of files. I was expecting a little over one file---a compiled assembly or two. I can't see myself maintaining this stuff. The real killer is that this supports I…</description>
<pubDate>Thu, 29 Jul 2004 04:19:48 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>ASP, VBScript and ADO: &quot;Updating&quot; an ADO-Generated XML File</title>
<link>http://www.songhaysystem.com/kb/number/2076071480/subject/xml</link>
<description><strong>Article Excerpt: </strong>&amp;lt;%@ EnableSessionState=False LANGUAGE=VBScript %&amp;gt;
&amp;lt;%Option Explicit%&amp;gt;
&amp;lt;!--#include virtual=&quot;./INC/ADOVBS.asp&quot;--&amp;gt;
&amp;lt;!--#include virtual=&quot;./INC/Classes/HTMLPage.asp&quot;--&amp;gt;
&amp;lt;%
    Dim objFileSys,vPath
    Dim objRS,vFieldArray,vArray

    'Get root folder.    
 …</description>
<pubDate>Tue, 28 May 2002 18:02:52 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>VBScript, JScript and XML: Flippant Remarks about the XML Features of Internet Explorer 5.x; XMLHTTP; XMLDOM; XML Data Islands</title>
<link>http://www.songhaysystem.com/kb/number/2076071406/subject/xml</link>
<description><strong>Article Excerpt: </strong>RDS and Data Binding in Internet Explorer (IE) have been replaced by Microsoft's implementation of XML for IE 5.x. The only time I get interested in this stuff is when I say, Wouldn't be cool to have a progress bar in a web page that does not need to refr…</description>
<pubDate>Sat, 05 Jan 2002 17:24:59 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>SQL Server 2000 and XML: Projecting XML Streams Dynamically from SQL Server</title>
<link>http://www.songhaysystem.com/kb/number/2076071402/subject/xml</link>
<description><strong>Article Excerpt: </strong>Projecting XML on the fly out of a DBMS is useful. With SQL Server 2000, the Microsoft way of providing this functionality depends on constructing a &quot;Universal Table&quot; out of a SELECT statement featuring the new FOR XML clause. For an overview of this func…</description>
<pubDate>Sat, 05 Jan 2002 17:25:31 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>SQL Server 2000 and XML: Flippant Remarks about XML-Based Data Management</title>
<link>http://www.songhaysystem.com/kb/number/2076071403/subject/xml</link>
<description><strong>Article Excerpt: </strong>Projecting data out of SQL Server 2000 with SELECT statements is not that difficult once one appreciates the &quot;Universal Table.&quot; Things become hairy and beta-like when we deal with INSERT and UPDATE procedures using XML. I do not like what I see. Here is w…</description>
<pubDate>Sat, 05 Jan 2002 17:25:16 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>
<item>
<title>ASP JScript and XML/XSL Code: Rendering HTML from Static XML/XSL Files</title>
<link>http://www.songhaysystem.com/kb/number/2076071405/subject/xml</link>
<description><strong>Article Excerpt: </strong>&amp;lt;%@ LANGUAGE = JScript %&amp;gt;
&amp;lt;%
    // Set the source and style sheet locations here
    var sourceFile = Server.MapPath(&quot;simple.xml&quot;);
    var styleFile = Server.MapPath(&quot;simple.xsl&quot;);
  
    // Load the XML 
    var source = Server.CreateObject(&quot;Microsoft.…</description>
<pubDate>Sat, 05 Jan 2002 17:24:42 GMT</pubDate>
<dc:creator>Bryan Wilhite</dc:creator>
</item>

    </channel>
</rss>