<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by Squarespace Site Server v5.11.81 (http://www.squarespace.com/) on Wed, 30 May 2012 17:15:10 GMT--><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rss="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:cc="http://web.resource.org/cc/"><rss:channel rdf:about="http://davestech.net/journal/"><rss:title>Journal</rss:title><rss:link>http://davestech.net/journal/</rss:link><rss:description></rss:description><dc:language>en-US</dc:language><dc:date>2012-05-30T17:15:10Z</dc:date><admin:generatorAgent rdf:resource="http://www.squarespace.com/">Squarespace Site Server v5.11.81 (http://www.squarespace.com/)</admin:generatorAgent><rss:items><rdf:Seq><rdf:li rdf:resource="http://davestech.net/journal/2011/6/17/default-listening-port-for-ericom-accessnow-server.html"/><rdf:li rdf:resource="http://davestech.net/journal/2011/5/12/sharepoint-2010-productivity-hub-and-office-web-apps.html"/><rdf:li rdf:resource="http://davestech.net/journal/2011/2/13/windows-update-failed-8e5e03fa.html"/><rdf:li rdf:resource="http://davestech.net/journal/2010/3/28/program-phase-1-16-has-been-posted-to-the-site.html"/><rdf:li rdf:resource="http://davestech.net/journal/2010/1/26/sql-outer-join-gotcha.html"/><rdf:li rdf:resource="http://davestech.net/journal/2010/1/14/for-the-public-routed-subinterface-only-wan-ip-mapping-is-al.html"/><rdf:li rdf:resource="http://davestech.net/journal/2010/1/3/openfiler-iscsi-quick-setup-steps.html"/><rdf:li rdf:resource="http://davestech.net/journal/2010/1/3/untangle-and-mlbcom.html"/><rdf:li rdf:resource="http://davestech.net/journal/2010/1/3/untangle-and-directv-on-demand.html"/><rdf:li rdf:resource="http://davestech.net/journal/2009/12/13/slowly-migrating-data.html"/></rdf:Seq></rss:items></rss:channel><rss:item rdf:about="http://davestech.net/journal/2011/6/17/default-listening-port-for-ericom-accessnow-server.html"><rss:title>Default listening port for Ericom AccessNow Server</rss:title><rss:link>http://davestech.net/journal/2011/6/17/default-listening-port-for-ericom-accessnow-server.html</rss:link><dc:creator>Dave Mihalik</dc:creator><dc:date>2011-06-17T17:34:12Z</dc:date><dc:subject></dc:subject><content:encoded><![CDATA[<p>Just got a new Samsung Chromebook, configuring server for RDP access using Ericom AccessNow RDP html 5 client.</p>
<p>This taken from the PowerTermo WebConnect documentation.</p>
<p>Default listening port is 8080 and 8081</p>
<p>Can be changed with following registry entry:</p>
<p>On 32-bit (x86) Windows:<br />HKEY_LOCAL_MACHINE\SOFTWARE\Ericom Software\HTML5 Server<br />On 64-bit (x64) Windows:<br />HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Ericom Software\HTML5<br />Server<br />Add a DWORD value named Listening Port and set it to the desired port<br />number. After updating the registry, restart the AccessNow Server service.<br />This port will then be used for encrypted communication instead of 8080. The<br />value plus one will be used for unencrypted communication instead of 8081</p>]]></content:encoded></rss:item><rss:item rdf:about="http://davestech.net/journal/2011/5/12/sharepoint-2010-productivity-hub-and-office-web-apps.html"><rss:title>Sharepoint 2010 Productivity Hub and Office Web Apps</rss:title><rss:link>http://davestech.net/journal/2011/5/12/sharepoint-2010-productivity-hub-and-office-web-apps.html</rss:link><dc:creator>Dave Mihalik</dc:creator><dc:date>2011-05-12T17:09:03Z</dc:date><dc:subject></dc:subject><content:encoded><![CDATA[<p>Here is a fix to get Sharepoint 2010 Productivity Hub links working properly with Office Web Apps:</p>
<p>1 - Using Sharepoint Designer, edit the productDV.xsl file in the All Files/supportFiles folder on the site hosting the Productivity Hub.</p>
<p>2 - In the table data section referenced by: &lt;td class="ph-dataviewfeaturetext" colspan="3"&gt;, Replace the code for the html link with the following:</p>
<p>&nbsp;&nbsp;&nbsp; &lt;xsl:choose&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;xsl:when test="substring(@FileRef,string-length(@FileRef) - 4,5) ='.docx'"&gt;<br />&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;strong&gt;&lt;a href="http://davestech.net/_layouts/WordViewer.aspx?id={@FileRef}"&gt;&lt;xsl:value-of select="@Title"/&gt;&lt;/a&gt;&lt;/strong&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/xsl:when&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;xsl:when test="substring(@FileRef,string-length(@FileRef) - 4,5) ='.pptx'"&gt;<br />&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;strong&gt;&lt;a href="http://davestech.net/_layouts/PowerPoint.aspx?PowerPointView=ReadingView&amp;amp;PresentationId={@FileRef}"&gt;&lt;xsl:value-of select="@Title"/&gt;&lt;/a&gt;&lt;/strong&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/xsl:when&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;xsl:when test="substring(@FileRef,string-length(@FileRef) - 4,5) ='.xlsx'"&gt;<br />&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;strong&gt;&lt;a href="http://davestech.net/_layouts/xlviewer.aspx?id={@FileRef}"&gt;&lt;xsl:value-of select="@Title"/&gt;&lt;/a&gt;&lt;/strong&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/xsl:when&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;xsl:otherwise&gt;<br />&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;strong&gt;&lt;a href="{@FileRef}"&gt;&lt;xsl:value-of select="@Title"/&gt;&lt;/a&gt;&lt;/strong&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/xsl:otherwise&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/xsl:choose&gt;<br /><br /></p>]]></content:encoded></rss:item><rss:item rdf:about="http://davestech.net/journal/2011/2/13/windows-update-failed-8e5e03fa.html"><rss:title>Windows Update Failed 8E5E03FA</rss:title><rss:link>http://davestech.net/journal/2011/2/13/windows-update-failed-8e5e03fa.html</rss:link><dc:creator>Dave Mihalik</dc:creator><dc:date>2011-02-13T18:41:15Z</dc:date><dc:subject></dc:subject><content:encoded><![CDATA[<p>I have a Windows Server 2008 R2 that continually gets Windows Update errors with error code 8E5E03FA and sometimes other error codes.</p>
<p>I posted a question on the Microsoft forums <a href="http://social.technet.microsoft.com/Forums/en-US/winservergen/thread/40d3cf2a-f923-446e-91f7-898a53009bc2">here</a>.</p>
<p>Here are the steps that have worked for me (perform at your own risk):</p>
<p>1 - From administrative command prompt:&nbsp; net stop cryptsvc</p>
<p>2 - Stop the Windows Update Service</p>
<p>3 - Erase all files in the windows\SoftwareDistribution folder</p>
<p>4 - Rename \windows\system32\catroot2 to \windows\system32\catroot3</p>
<p>5 - From administrative command prompt:&nbsp; net start cryptsvc</p>
<p>6 - Start the Windows Update Service</p>
<p>&nbsp;</p>
<p>&nbsp;</p>]]></content:encoded></rss:item><rss:item rdf:about="http://davestech.net/journal/2010/3/28/program-phase-1-16-has-been-posted-to-the-site.html"><rss:title>Program Phase 1-16 has been posted to the site.</rss:title><rss:link>http://davestech.net/journal/2010/3/28/program-phase-1-16-has-been-posted-to-the-site.html</rss:link><dc:creator>Dave Mihalik</dc:creator><dc:date>2010-03-28T19:16:49Z</dc:date><dc:subject></dc:subject><content:encoded><![CDATA[I have posted the source code and Code Setup and Compilation instructions for Program Phase 1-16 C++ with wxWidgets.  With the exception of a few broken links, all of the information is there.  Check it out <a href="http://davestech.net/program-phase-1-16-c-wxwidgets">here</a>.]]></content:encoded></rss:item><rss:item rdf:about="http://davestech.net/journal/2010/1/26/sql-outer-join-gotcha.html"><rss:title>Sql Outer Join Gotcha</rss:title><rss:link>http://davestech.net/journal/2010/1/26/sql-outer-join-gotcha.html</rss:link><dc:creator>Dave Mihalik</dc:creator><dc:date>2010-01-26T20:24:53Z</dc:date><dc:subject></dc:subject><content:encoded><![CDATA[<p>Here is a solution for filtering results from an outer join query without using a where clause.&nbsp; I needed this solution today for a project.</p>
<p>&nbsp;</p>
<p><a href="http://www.sqlteam.com/article/additional-criteria-in-the-join-clause">http://www.sqlteam.com/article/additional-criteria-in-the-join-clause</a></p>
<p>&nbsp;</p>]]></content:encoded></rss:item><rss:item rdf:about="http://davestech.net/journal/2010/1/14/for-the-public-routed-subinterface-only-wan-ip-mapping-is-al.html"><rss:title>For the public routed subinterface only WAN IP mapping is allowed</rss:title><rss:link>http://davestech.net/journal/2010/1/14/for-the-public-routed-subinterface-only-wan-ip-mapping-is-al.html</rss:link><dc:creator>Dave Mihalik</dc:creator><dc:date>2010-01-15T03:43:15Z</dc:date><dc:subject></dc:subject><content:encoded><![CDATA[This awesome error message is what you will inevitably see if you have UVERSE fiber internet service and a two wire router 3800HGV-B Gateway with a public static ip pool.  The beauty of this device is that it automatically finds and assigns ips to devices based on mac address.  However, problems arise when a device is no longer available on the network and the router still contains ip settings for the device.  There is no option for deleting a device from the router configuration.  If you try to change settings for other existing devices on the network, you may get the error "For the public routed subinterface only WAN IP mapping is allowed".  You may also get an error related to invalid ip settings.  When I called UVERSE technical support, I was instructed to restart the gateway which improved nothing.  I was then told that I would need to do a complete reset of the router which I did not want to do because I had quite a few settings that I did not want to reenter.]]></content:encoded></rss:item><rss:item rdf:about="http://davestech.net/journal/2010/1/3/openfiler-iscsi-quick-setup-steps.html"><rss:title>OpenFiler iSCSI Quick Setup Steps</rss:title><rss:link>http://davestech.net/journal/2010/1/3/openfiler-iscsi-quick-setup-steps.html</rss:link><dc:creator>Dave Mihalik</dc:creator><dc:date>2010-01-03T19:16:12Z</dc:date><dc:subject></dc:subject><content:encoded><![CDATA[<p>Just so I have a quick reference:</p>
<p>1. Create Physical volume on a single disk<br />2. Create RAID volumes on multiple disks and create array<br />3. Add volumes from #1 into a Volume Group<br />4. Create an iSCSI volume in the VG from #2<br />5. Start the "iSCSI target server" service<br />6. Add a network entry for the client machine (or local subnet if private) at the bottom of "System &gt; Network Setup"</p>
<p>7. Enable Services - iSCSI Target Server<br />8. Click "iSCSI Targets" on the Volumes page<br />9. Click "Add" to create a new target.<br />10. Click "Lun Mapping"<br />11. Click "Map"<br />12. Click "Network ACL"<br />13. Change the combo box for your network to "Allow".</p>
<p>These steps were adapted from <a href="https://forums.openfiler.com/viewtopic.php?pid=8906#p8906">this</a> post by litkaj on the open filer forums.<strong><br /></strong></p>
<p>&nbsp;</p>]]></content:encoded></rss:item><rss:item rdf:about="http://davestech.net/journal/2010/1/3/untangle-and-mlbcom.html"><rss:title>Untangle and MLB.COM</rss:title><rss:link>http://davestech.net/journal/2010/1/3/untangle-and-mlbcom.html</rss:link><dc:creator>Dave Mihalik</dc:creator><dc:date>2010-01-03T18:54:15Z</dc:date><dc:subject></dc:subject><content:encoded><![CDATA[<p>To get MLB.COM working behind my Untangle box running in router mode, I added the following to the spyware blocker pass list:</p>
<ul>
<li>2o7.net</li>
<li>ad.doubleclick.net</li>
</ul>]]></content:encoded></rss:item><rss:item rdf:about="http://davestech.net/journal/2010/1/3/untangle-and-directv-on-demand.html"><rss:title>Untangle and DirecTV On Demand</rss:title><rss:link>http://davestech.net/journal/2010/1/3/untangle-and-directv-on-demand.html</rss:link><dc:creator>Dave Mihalik</dc:creator><dc:date>2010-01-03T18:48:55Z</dc:date><dc:subject></dc:subject><content:encoded><![CDATA[<p>To get DirecTV On Demand working behind my Untangle box in router mode with the Virus Blocker module enabled, I had to do the following:</p>
<ul>
<li>Virus Blocker - Settings</li>
<li>Web - Advanced Settings</li>
<li>Uncheck Disable HTTP Resume</li>
</ul>
<p>&nbsp;</p>
<p>I tracked down the info in a post buried here:</p>
<p><span></span><a href="http://forums.untangle.com/networking/13242-intermittent-access-web-server-8080-a.html">Untangle Forums</a></p>]]></content:encoded></rss:item><rss:item rdf:about="http://davestech.net/journal/2009/12/13/slowly-migrating-data.html"><rss:title>Slowly Migrating Data</rss:title><rss:link>http://davestech.net/journal/2009/12/13/slowly-migrating-data.html</rss:link><dc:creator>Dave Mihalik</dc:creator><dc:date>2009-12-13T23:30:57Z</dc:date><dc:subject></dc:subject><content:encoded><![CDATA[<p>I have been slowly migrating my site from <a href="http://wordpress.org/">Wordpress</a> to <a href="http://squarespace.com">Squarespace</a>.&nbsp; I did not have time to maintain the hosting and maintenance of the old Program Phases site running on Wordpress.&nbsp; I will be updating this site slowly over the next couple of weeks.&nbsp; I just finished moving the <a href="http://programphases.com/insert-html-here-wp-plugin/">Insert HTML Here</a> Wordpress Plugin information to this site today so that is one less thing I need to think about later.</p>]]></content:encoded></rss:item></rdf:RDF>
