<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>XML</title>
        <link>http://www.drowningintechnicaldebt.com/DennisBottjer/category/23.aspx</link>
        <description>XML Parsing, Schema, etc.</description>
        <language>en-US</language>
        <copyright>Dennis Bottjer</copyright>
        <generator>Subtext Version 2.1.2.2</generator>
        <item>
            <title>IBM's Web Service Definition</title>
            <link>http://www.drowningintechnicaldebt.com/DennisBottjer/archive/2006/10/11/web-service-definition.aspx</link>
            <description>&lt;p&gt;&lt;span class="586461902-09102006"&gt;IBM's Definition of Web Service: (A Web Service is a Web Application)&lt;/span&gt;&lt;/p&gt;&lt;span class="586461902-09102006"&gt;
&lt;blockquote&gt;
&lt;div&gt;&lt;i&gt;Web services are a new breed of Web application. They are self-contained, self-describing, modular applications that can be published, located, and invoked across the Web. Web services perform functions, which can be anything from simple requests to complicated business processes...Once a Web service is deployed, other applications (and other Web services) can discover and invoke the deployed service.&lt;/i&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/span&gt;&lt;img src="http://www.drowningintechnicaldebt.com/DennisBottjer/aggbug/34.aspx" width="1" height="1" /&gt;</description>
            <guid>http://www.drowningintechnicaldebt.com/DennisBottjer/archive/2006/10/11/web-service-definition.aspx</guid>
            <pubDate>Wed, 11 Oct 2006 15:13:00 GMT</pubDate>
            <comments>http://www.drowningintechnicaldebt.com/DennisBottjer/archive/2006/10/11/web-service-definition.aspx#feedback</comments>
            <wfw:commentRss>http://www.drowningintechnicaldebt.com/DennisBottjer/comments/commentRss/34.aspx</wfw:commentRss>
        </item>
        <item>
            <title>XmlDocument to Byte[]</title>
            <link>http://www.drowningintechnicaldebt.com/DennisBottjer/archive/2006/10/11/xmldocument-to-byte-array.aspx</link>
            <description>&lt;font size="2"&gt;
&lt;p /&gt;&lt;/font&gt;
&lt;table style="BORDER-RIGHT: #e5e5e5 1px solid; BORDER-TOP: #e5e5e5 1px solid; BORDER-LEFT: #e5e5e5 1px solid; BORDER-BOTTOM: #e5e5e5 1px solid; BACKGROUND-COLOR: #f2f2f2" cellspacing="0" cellpadding="0" width="100%" border="0"&gt;
&lt;tbody&gt;
&lt;tr style="VERTICAL-ALIGN: top; LINE-HEIGHT: normal"&gt;
&lt;td style="WIDTH: 40px; TEXT-ALIGN: right"&gt;&lt;pre style="BORDER-RIGHT: #e7e7e7 1px solid; PADDING-RIGHT: 2px; PADDING-LEFT: 2px; FONT-SIZE: 11px; PADDING-BOTTOM: 2px; MARGIN: 0px; COLOR: gray; PADDING-TOP: 2px; FONT-FAMILY: courier new"&gt;1&lt;br /&gt;2&lt;br /&gt;3&lt;br /&gt;4&lt;br /&gt;5&lt;br /&gt;6&lt;br /&gt;7&lt;br /&gt;8&lt;br /&gt;9&lt;br /&gt; &lt;/pre&gt;&lt;/td&gt;
&lt;td&gt;&lt;pre style="PADDING-RIGHT: 2px; PADDING-LEFT: 8px; PADDING-BOTTOM: 2px; MARGIN: 0px; PADDING-TOP: 2px"&gt;&lt;span style="FONT-WEIGHT: normal; FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;StringWriter sw &lt;span style="FONT-WEIGHT: normal; FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; &lt;span style="FONT-WEIGHT: normal; FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;new&lt;/span&gt; StringWriter();&lt;br /&gt;XmlTextWriter xw &lt;span style="FONT-WEIGHT: normal; FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; &lt;span style="FONT-WEIGHT: normal; FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;new&lt;/span&gt; XmlTextWriter(sw);&lt;br /&gt;                        &lt;br /&gt;/&lt;span style="FONT-WEIGHT: normal; FONT-SIZE: 11px; COLOR: green; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;/ Save Xml Document to Text Writter.&lt;/span&gt;&lt;br /&gt;doc.WriteTo(xw);&lt;br /&gt;System.Text.ASCIIEncoding encoding &lt;span style="FONT-WEIGHT: normal; FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; &lt;span style="FONT-WEIGHT: normal; FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;new&lt;/span&gt; System.Text.ASCIIEncoding();&lt;br /&gt;                        &lt;br /&gt;&lt;span style="FONT-WEIGHT: normal; FONT-SIZE: 11px; COLOR: green; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;// Convert Xml Document To Byte Array.&lt;/span&gt;&lt;br /&gt;&lt;span style="FONT-WEIGHT: normal; FONT-SIZE: 11px; COLOR: blue; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;byte&lt;/span&gt;[] docAsBytes &lt;span style="FONT-WEIGHT: normal; FONT-SIZE: 11px; COLOR: red; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"&gt;=&lt;/span&gt; encoding.GetBytes(sw.ToString());&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;font size="2" /&gt;&lt;img src="http://www.drowningintechnicaldebt.com/DennisBottjer/aggbug/33.aspx" width="1" height="1" /&gt;</description>
            <guid>http://www.drowningintechnicaldebt.com/DennisBottjer/archive/2006/10/11/xmldocument-to-byte-array.aspx</guid>
            <pubDate>Wed, 11 Oct 2006 08:01:00 GMT</pubDate>
            <comments>http://www.drowningintechnicaldebt.com/DennisBottjer/archive/2006/10/11/xmldocument-to-byte-array.aspx#feedback</comments>
            <wfw:commentRss>http://www.drowningintechnicaldebt.com/DennisBottjer/comments/commentRss/33.aspx</wfw:commentRss>
        </item>
        <item>
            <title>RSS Event Logs</title>
            <link>http://www.drowningintechnicaldebt.com/DennisBottjer/archive/2005/06/30/rss-event-logs.aspx</link>
            <description>I saw [RSSEventLogs] on Code Project and thought it was a really cool idea. The author has created a solution for exposing a server's event log via an RSS Feed.  As the author mentions it is important to consider security.  I really like this concept b/c so much information seems to gets trapped within the logs of a server.  Sure we mean to login and review this information but when do we get the chance.  By exposing this information via RSS people that need to review it can easily do so via an RSS Agregator.&lt;img src="http://www.drowningintechnicaldebt.com/DennisBottjer/aggbug/6.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>dbottjer</dc:creator>
            <guid>http://www.drowningintechnicaldebt.com/DennisBottjer/archive/2005/06/30/rss-event-logs.aspx</guid>
            <pubDate>Thu, 30 Jun 2005 07:21:00 GMT</pubDate>
            <comments>http://www.drowningintechnicaldebt.com/DennisBottjer/archive/2005/06/30/rss-event-logs.aspx#feedback</comments>
            <wfw:commentRss>http://www.drowningintechnicaldebt.com/DennisBottjer/comments/commentRss/6.aspx</wfw:commentRss>
        </item>
    </channel>
</rss>
