<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Extensible Development</title>
	<atom:link href="http://blog.itwarlocks.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.itwarlocks.com</link>
	<description>Profession blog about Software Engineering, Web, *nix, Processes, Tools, Open Source and more.</description>
	<lastBuildDate>Tue, 07 Dec 2010 11:37:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Comment on Accessing WebDAV in Microsoft Word Visual Basic by reena cutie</title>
		<link>http://blog.itwarlocks.com/2009/04/28/accessing-webdav-in-microsoft-word-visual-basic/#comment-595</link>
		<dc:creator>reena cutie</dc:creator>
		<pubDate>Tue, 07 Dec 2010 11:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=45#comment-595</guid>
		<description>Hi
thats for the wonderful post
Just 1 question, is the password encrypted while sending the data to the WEBDAV server.Koz the password is written in plain text in the VBA code.</description>
		<content:encoded><![CDATA[<p>Hi<br />
thats for the wonderful post<br />
Just 1 question, is the password encrypted while sending the data to the WEBDAV server.Koz the password is written in plain text in the VBA code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTTPS Virtual Hosts on Ubuntu 8.04 LTS Server by Pete</title>
		<link>http://blog.itwarlocks.com/2009/06/18/https-virtual-hosts-on-ubuntu-8-04-lts-server/#comment-558</link>
		<dc:creator>Pete</dc:creator>
		<pubDate>Fri, 19 Nov 2010 15:53:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=167#comment-558</guid>
		<description>Thanks for this post, trying to get this working under native Ubuntu 8.04. Everything seems to work ok for me, except that when I configure seperate self signed certificates for both vhosts when I connect to them my browser shows the same certificate is being used for vhost1 and vhost2.</description>
		<content:encoded><![CDATA[<p>Thanks for this post, trying to get this working under native Ubuntu 8.04. Everything seems to work ok for me, except that when I configure seperate self signed certificates for both vhosts when I connect to them my browser shows the same certificate is being used for vhost1 and vhost2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing WebDAV in Microsoft Word Visual Basic by Kevin</title>
		<link>http://blog.itwarlocks.com/2009/04/28/accessing-webdav-in-microsoft-word-visual-basic/#comment-196</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Thu, 28 Oct 2010 16:44:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=45#comment-196</guid>
		<description>Hi, this has been most helpful!
Is it possible to open files returned that use another program, powerpoints, pdfs, excel files etc?</description>
		<content:encoded><![CDATA[<p>Hi, this has been most helpful!<br />
Is it possible to open files returned that use another program, powerpoints, pdfs, excel files etc?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing WebDAV in Microsoft Word Visual Basic by Adam</title>
		<link>http://blog.itwarlocks.com/2009/04/28/accessing-webdav-in-microsoft-word-visual-basic/#comment-321</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Thu, 28 Oct 2010 16:44:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=45#comment-321</guid>
		<description>Hello,
just wanted to say that you&#039;re a life-saver ! No other place on the web to find this info. Such a gem !</description>
		<content:encoded><![CDATA[<p>Hello,<br />
just wanted to say that you&#8217;re a life-saver ! No other place on the web to find this info. Such a gem !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing WebDAV in Microsoft Word Visual Basic by steve</title>
		<link>http://blog.itwarlocks.com/2009/04/28/accessing-webdav-in-microsoft-word-visual-basic/#comment-244</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Thu, 19 Aug 2010 19:39:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=45#comment-244</guid>
		<description>I was able to figure out how to rename files/directories using WebDav.  Here is some sample code.

origName is the original name that should be renamed.
parentPage is the full WebDAV path to where origName should be moved/renamed
newName is the new name for the file/folder
davFiles is an ADODB.RecordSet
davFile is an ADODB.Record

    Do While Not davFiles.EOF
        davFile.Open davFiles, , adModeReadWrite
            If origName = davFile.Fields(&quot;RESOURCE_PARSENAME&quot;).Value Then
                davFile.MoveRecord , parentPage &amp; newName
                davFile.Close
                davFiles.MoveLast
            Else
                davFile.Close       &#039; Always remember to Close the file!
                davFiles.MoveNext   &#039; Move the index to the next Record.
            End If
    Loop</description>
		<content:encoded><![CDATA[<p>I was able to figure out how to rename files/directories using WebDav.  Here is some sample code.</p>
<p>origName is the original name that should be renamed.<br />
parentPage is the full WebDAV path to where origName should be moved/renamed<br />
newName is the new name for the file/folder<br />
davFiles is an ADODB.RecordSet<br />
davFile is an ADODB.Record</p>
<p>    Do While Not davFiles.EOF<br />
        davFile.Open davFiles, , adModeReadWrite<br />
            If origName = davFile.Fields(&#8220;RESOURCE_PARSENAME&#8221;).Value Then<br />
                davFile.MoveRecord , parentPage &amp; newName<br />
                davFile.Close<br />
                davFiles.MoveLast<br />
            Else<br />
                davFile.Close       &#8216; Always remember to Close the file!<br />
                davFiles.MoveNext   &#8216; Move the index to the next Record.<br />
            End If<br />
    Loop</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTTPS Virtual Hosts on Ubuntu 8.04 LTS Server by James Armes</title>
		<link>http://blog.itwarlocks.com/2009/06/18/https-virtual-hosts-on-ubuntu-8-04-lts-server/#comment-192</link>
		<dc:creator>James Armes</dc:creator>
		<pubDate>Tue, 17 Aug 2010 11:40:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=167#comment-192</guid>
		<description>I almost forgot, I also had to install g++ (sudo apt-get install g++) before I could compile libgcrypt.</description>
		<content:encoded><![CDATA[<p>I almost forgot, I also had to install g++ (sudo apt-get install g++) before I could compile libgcrypt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on HTTPS Virtual Hosts on Ubuntu 8.04 LTS Server by James Armes</title>
		<link>http://blog.itwarlocks.com/2009/06/18/https-virtual-hosts-on-ubuntu-8-04-lts-server/#comment-191</link>
		<dc:creator>James Armes</dc:creator>
		<pubDate>Tue, 17 Aug 2010 11:40:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=167#comment-191</guid>
		<description>I had the same &quot;libgnutls was not found. You may want to get it from…&quot; error. I was able to solve it by installing pkg-config (sudo apt-get install pkg-config) as olli suggested.  I did not, however, need the --with-libgnutls-prefix option.</description>
		<content:encoded><![CDATA[<p>I had the same &#8220;libgnutls was not found. You may want to get it from…&#8221; error. I was able to solve it by installing pkg-config (sudo apt-get install pkg-config) as olli suggested.  I did not, however, need the &#8211;with-libgnutls-prefix option.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Float overflow can be useful too by hoppster</title>
		<link>http://blog.itwarlocks.com/2009/05/08/float-overflow-can-be-useful-too/#comment-163</link>
		<dc:creator>hoppster</dc:creator>
		<pubDate>Tue, 08 Jun 2010 15:49:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=140#comment-163</guid>
		<description>nice tut. seems like you&#039;ve got images 7 and 8 reversed.</description>
		<content:encoded><![CDATA[<p>nice tut. seems like you&#8217;ve got images 7 and 8 reversed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing WebDAV in Microsoft Word Visual Basic by Jeffrey Ridout</title>
		<link>http://blog.itwarlocks.com/2009/04/28/accessing-webdav-in-microsoft-word-visual-basic/#comment-159</link>
		<dc:creator>Jeffrey Ridout</dc:creator>
		<pubDate>Tue, 01 Jun 2010 11:45:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=45#comment-159</guid>
		<description>I started looking into the issue, but since I&#039;m running Windows 7 (x64) I keep getting:
-2147217895: Object or data matching the name, range, or selection criteria was not found within the scope of this operation.
This might be caused by new security restrictions, but I&#039;m not sure. If I find a solution I&#039;ll post it here.</description>
		<content:encoded><![CDATA[<p>I started looking into the issue, but since I&#8217;m running Windows 7 (x64) I keep getting:<br />
-2147217895: Object or data matching the name, range, or selection criteria was not found within the scope of this operation.<br />
This might be caused by new security restrictions, but I&#8217;m not sure. If I find a solution I&#8217;ll post it here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing WebDAV in Microsoft Word Visual Basic by steve</title>
		<link>http://blog.itwarlocks.com/2009/04/28/accessing-webdav-in-microsoft-word-visual-basic/#comment-120</link>
		<dc:creator>steve</dc:creator>
		<pubDate>Tue, 20 Apr 2010 23:12:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.itwarlocks.com/?p=45#comment-120</guid>
		<description>&lt;a href=&quot;#comment-118&quot; rel=&quot;nofollow&quot;&gt;@steve &lt;/a&gt; 
I tried both approaches for renaming a directory (e.g. both using davFile.MoveRecord and davFiles.Update &quot;RESOURCE_PARSENAME&quot; &quot;NewName&quot;)  Both approaches generated unsupported errors.  Any suggestions?</description>
		<content:encoded><![CDATA[<p><a href="#comment-118" rel="nofollow">@steve </a><br />
I tried both approaches for renaming a directory (e.g. both using davFile.MoveRecord and davFiles.Update &#8220;RESOURCE_PARSENAME&#8221; &#8220;NewName&#8221;)  Both approaches generated unsupported errors.  Any suggestions?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: blog.itwarlocks.com @ 2012-02-05 21:38:39 -->
