<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Unlimi-Tech Software, Inc.</title>
	<atom:link href="http://www.utechsoft.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.utechsoft.com</link>
	<description>Reinventing File Transfer</description>
	<lastBuildDate>Wed, 15 May 2013 20:26:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Required Update to All Applets</title>
		<link>http://www.utechsoft.com/required-update-to-all-applets/</link>
		<comments>http://www.utechsoft.com/required-update-to-all-applets/#comments</comments>
		<pubDate>Thu, 11 Apr 2013 19:26:51 +0000</pubDate>
		<dc:creator>greg</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.utechsoft.com/?p=1836</guid>
		<description><![CDATA[As of March 12th, 2013 all older Java Applets versions published by Unlimi-Tech will stop working. An upgrade is required to keep these applets working error free after this date. All Java Applets including, UnlimitedFTP, UUpload and UDownload have been updated. Updates include: New Applet Certificate expiring on March 29, 2015 New JavaScript for launching [...]]]></description>
				<content:encoded><![CDATA[<p>As of March 12th, 2013 all older Java Applets versions published by Unlimi-Tech will stop working. An upgrade is required to keep these applets working error free after this date.</p>
<p>All Java Applets including, UnlimitedFTP, UUpload and UDownload have been updated.</p>
<p>Updates include:</p>
<ul>
<li>New Applet Certificate expiring on March 29, 2015</li>
<li>New JavaScript for launching the applet. The new script uses the default deployJava.js as implemented by Oracle in Java 6. This new script makes the applet loading more compatible across all operating systems. <a href="http://docs.oracle.com/javase/6/docs/technotes/guides/jweb/index.html">Click here</a> for more details. </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.utechsoft.com/required-update-to-all-applets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips &amp; Tricks: Internet Explorer and FileCatalyst Applets</title>
		<link>http://www.utechsoft.com/tips-tricks-internet-explorer-and-filecatalyst-applets/</link>
		<comments>http://www.utechsoft.com/tips-tricks-internet-explorer-and-filecatalyst-applets/#comments</comments>
		<pubDate>Mon, 17 Dec 2012 19:49:18 +0000</pubDate>
		<dc:creator>greg</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.utechsoft.com/?p=1811</guid>
		<description><![CDATA[Learn how to use Java applets with IE9.]]></description>
				<content:encoded><![CDATA[<p>When a FileCatalyst applet is loaded in a user&#8217;s computer the Internet Explorer 9 may show following warning: &#8220;FileCatalyst wants to use an old version of java (1.6.0_18) that is not installed on your system. We recommend running this application with the latest version of Java on your computer&#8221;.</p>
<p>This is caused by IE not being not able to properly interpret certain components of JavsScript code. To fix this problem a small change should be made to applet configuration file (for example fcdownload.js).</p>
<p><span id="more-1811"></span></p>
<p>Open configuration file in a plain text editor and find section with IF statement. The statement will have two meta tags:<br />
&#8220;&lt;OBJECT name=&#8230;&#8230;&#8221;   and &#8220;&lt;APPLET name=&#8221;. The IF statement should be modified to use only &lt;APPLET&gt; tag.</p>
<p>Find section with IF statement. It may look like this one:</p>
<pre> <span style=' color: Blue;'>if</span> (!is_nav || is_safari || is_firefox ) {&lt;br&gt;
    <span style=' color: Blue;'>if</span> (is_ie &amp;&amp; !is_mac) {&lt;br&gt;
        <span style=' color: Green;'>// JAVA 1.6&lt;br&gt;</span>
        document.write("&lt;OBJECT name=<span style=' color: Maroon;'>'FileCatalyst'</span>&lt;br&gt;
classid=<span style=' color: Maroon;'>'clsid:CAFEEFAC-0016-0000-0018-ABCDEFFEDCBA'</span>&lt;br&gt;
codebase=<span style=' color: Maroon;'>'http://java.sun.com/update/1.6.0/jinstall-6-windows-i586.cab#Version=1,6,0,18'</span>&lt;br&gt;
height=<span style=' color: Maroon;'>"+height+"</span> width=<span style=' color: Maroon;'>"+width+"</span>'&gt;");&lt;br&gt;
        <span style=' color: Green;'>// old Java 1.4&lt;br&gt;</span>
        <span style=' color: Green;'>//document.write("&lt;OBJECT name='FileCatalyst'&lt;br&gt;</span>
classid=<span style=' color: Maroon;'>'clsid:8AD9C840-044E-11D1-B3E9-00805F499D93'</span>&lt;br&gt;
codebase=<span style=' color: Maroon;'>'http://java.sun.com/products/plugin/autodl/jinstall-1_4-windows-i586.cab#Version=1,4,2,0'</span>&lt;br&gt;
height=<span style=' color: Maroon;'>"+height+"</span> width=<span style=' color: Maroon;'>"+width+"</span>'&gt;");&lt;br&gt;
    } <span style=' color: Blue;'>else</span> {&lt;br&gt;
        document.write("&lt;APPLET name=<span style=' color: Maroon;'>'FileCatalyst'</span>&lt;br&gt;
code=<span style=' color: Maroon;'>'unlimited.fc.client.FileCatalystDownloadApplet.class'</span>&lt;br&gt;
height=<span style=' color: Maroon;'>"+height+"</span> width=<span style=' color: Maroon;'>"+width+"</span> archive=<span style=' color: Maroon;'>'FileCatalystApplets.jar'</span>&lt;br&gt;
VIEWASTEXT&gt;");&lt;br&gt;
    }</pre>
<p>So your code will look like this:</p>
<pre><span style=' color: Green;'>// if (!is_nav || is_safari || is_firefox ) {&lt;br&gt;</span>
 <span style=' color: Green;'>//   if (is_ie &amp;&amp; !is_mac) {&lt;br&gt;</span>
        <span style=' color: Green;'>// JAVA 1.6&lt;br&gt;</span>
   <span style=' color: Green;'>//     document.write("&lt;OBJECT name='FileCatalyst'&lt;br&gt;</span>
classid=<span style=' color: Maroon;'>'clsid:CAFEEFAC-0016-0000-0018-ABCDEFFEDCBA'</span>&lt;br&gt;
codebase=<span style=' color: Maroon;'>'http://java.sun.com/update/1.6.0/jinstall-6-windows-i586.cab#Version=1,6,0,18'</span>&lt;br&gt;
height=<span style=' color: Maroon;'>"+height+"</span> width=<span style=' color: Maroon;'>"+width+"</span>'&gt;");&lt;br&gt;
        <span style=' color: Green;'>// old Java 1.4&lt;br&gt;</span>
        <span style=' color: Green;'>//document.write("&lt;OBJECT name='FileCatalyst'&lt;br&gt;</span>
classid=<span style=' color: Maroon;'>'clsid:8AD9C840-044E-11D1-B3E9-00805F499D93'</span>&lt;br&gt;
codebase=<span style=' color: Maroon;'>'http://java.sun.com/products/plugin/autodl/jinstall-1_4-windows-i586.cab#Version=1,4,2,0'</span>&lt;br&gt;
height=<span style=' color: Maroon;'>"+height+"</span> width=<span style=' color: Maroon;'>"+width+"</span>'&gt;");&lt;br&gt;
 <span style=' color: Green;'>//   } else {&lt;br&gt;</span>
        document.write("&lt;APPLET name=<span style=' color: Maroon;'>'FileCatalyst'</span>&lt;br&gt;
code=<span style=' color: Maroon;'>'unlimited.fc.client.FileCatalystDownloadApplet.class'</span>&lt;br&gt;
height=<span style=' color: Maroon;'>"+height+"</span> width=<span style=' color: Maroon;'>"+width+"</span> archive=<span style=' color: Maroon;'>'FileCatalystApplets.jar'</span>&lt;br&gt;
VIEWASTEXT&gt;");&lt;br&gt;
  <span style=' color: Green;'>//  }</span></pre>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.utechsoft.com/tips-tricks-internet-explorer-and-filecatalyst-applets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yep, We Still Work with Java 7!</title>
		<link>http://www.utechsoft.com/yep-we-still-work-with-java-1-7/</link>
		<comments>http://www.utechsoft.com/yep-we-still-work-with-java-1-7/#comments</comments>
		<pubDate>Tue, 05 Jun 2012 21:20:44 +0000</pubDate>
		<dc:creator>greg</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.utechsoft.com/?p=1776</guid>
		<description><![CDATA[Recently, we have had tickets raised in our support system asking about compatibility with Java 1.7 (Java 7 SE). After Java moved to 1.7 over a year ago, we indeed needed to upgrade our applets to maintain compatibility. However, this change was made within days and we have been compatibile ever since. If you are [...]]]></description>
				<content:encoded><![CDATA[<p>Recently, we have had tickets raised in our support system asking about compatibility with Java 1.7 (Java 7 SE). After Java moved to 1.7 over a year ago, we indeed needed to upgrade our applets to maintain compatibility. However, this change was made within days and we have been compatibile ever since. If you are experiencing a problem with Java 7, you may not have upgraded yet.</p>
<p><span id="more-1776"></span></p>
<p>To upgrade, simply download the latest zip archive for your applet (found on the product pages), and upgrade <strong>BOTH</strong> your JAR (*.jar) file and your JavaScript (*.js) file. Keep a copy of your old JavaScript on-hand to copy your old values over to the new one.</p>
<p>For those who integrated the JS file into their own script or directly into their webpage via the &lt;script&gt; tag, you will need to copy and paste the new script into the appropriate place (of course, keeping the old copy around to migrate the values you&#8217;ve set!</p>
<p>Beyond compatibility, if you are using Windows 7 along with Java 7, you may have a firewall issue. We have written a knowledge base article (<a href="http://support.filecatalyst.com/index.php?/Knowledgebase/Article/View/198/0/ftp-not-working-on-java-7-on-windows-7-and-vista-when-windows-firewall-is-enabled">&#8220;FTP Not Working on Java 7&#8230;&#8221;</a>) with more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.utechsoft.com/yep-we-still-work-with-java-1-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BET chooses FileCatalyst Webmail</title>
		<link>http://www.utechsoft.com/bet-chooses-filecatalyst-webmail/</link>
		<comments>http://www.utechsoft.com/bet-chooses-filecatalyst-webmail/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 16:01:52 +0000</pubDate>
		<dc:creator>greg</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.utechsoft.com/?p=1766</guid>
		<description><![CDATA[Leading into the 2012 NAB show, Unlimi-Tech is pleased to announce that Black Entertainment Television (BET), a leading North American provider of quality entertainment, music, news and public affairs television programming, has adopted FileCatalyst Webmail to consolidate its expanding file transfer needs. Moving files within BET had become a combination of traditional FTP and other [...]]]></description>
				<content:encoded><![CDATA[<p>Leading into the 2012 NAB show, Unlimi-Tech is pleased to announce that Black Entertainment Television (BET), a leading North American provider of quality entertainment, music, news and public affairs television programming, has adopted FileCatalyst Webmail to consolidate its expanding file transfer needs.</p>
<p><span id="more-1766"></span></p>
<p>Moving files within BET had become a combination of traditional FTP and other ad-hoc methods including email attachments and online services. These methods had no central tracking, acceleration or reliability, and weren&#8217;t always simple to use. Supporting multiple methods was hindering productivity and causing delays.</p>
<p><a href="http://filecatalyst.com/products/filecatalyst-webmail">FileCatalyst Webmail</a> provides a web-based application that allows sending files to anyone with an email address. The user logs into the BET file transfer web portal and goes through a simple process similar to composing an email and attaching files. All deliveries are automatically tracked by the system. &ldquo;We now have one way to deliver files to all users regardless of the variables,&rdquo; says Will Horton, Engineer Post Production. &ldquo;FTP is officially dead. Thank you, FileCatalyst.&rdquo;</p>
<p>On the surface, FileCatalyst Webmail presents an extremely simple way for an end user to upload files. Under the hood it also provides the benefits of the world&#8217;s fastest acceleration technology and enterprise-level reliability.</p>
<p>&ldquo;FileCatalyst Webmail was designed to be fast and easy to use, but also offers advanced features that combine the best of online &#8216;box&#8217; and &#8216;send&#8217; services,&rdquo; says John Tkaczewski, President of Unlimi-Tech. &ldquo;We&#8217;re thrilled that BET has chosen Webmail to simplify their file transfer process.&rdquo;</p>
<h2>About Unlimi-Tech</h2>
<p>Located in Ottawa, Canada, Unlimi-Tech Software is the creator of FileCatalyst, the world&#8217;s leading file transfer solution. Founded in 2000, the company has more than nine hundred commercial and government clients. FileCatalyst technology is a software-based solution designed to accelerate and optimize file transfers across global networks. FileCatalyst is immune to the effects that latency and packet loss have on traditional file transfer methods like FTP, HTTP or CIFS. FileCatalyst addresses these issues for enterprise WAN, satellite and wireless communications, media and content providers, and government and military organizations.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.utechsoft.com/bet-chooses-filecatalyst-webmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DramaFever Uses FileCatalyst to Send Large Media Files</title>
		<link>http://www.utechsoft.com/dramafever-uses-filecatalyst-to-send-large-media-files/</link>
		<comments>http://www.utechsoft.com/dramafever-uses-filecatalyst-to-send-large-media-files/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 17:56:42 +0000</pubDate>
		<dc:creator>greg</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.utechsoft.com/?p=1743</guid>
		<description><![CDATA[DramaFever, the leading online distributor of Asian Video Entertainment, has chosen FileCatalyst Direct for accelerated file transfer. FileCatalyst was chosen for its combination of automation tools and fast file transfer, allowing for rapid turnaround from original broadcast to online availability. Original article available here: http://www.prweb.com/releases/2011/11/prweb8948034.htm]]></description>
				<content:encoded><![CDATA[<p>DramaFever, the leading online distributor of Asian Video Entertainment, has chosen <a href="http://www.filecatalyst.com/products/filecatalyst-direct">FileCatalyst Direct</a> for accelerated file transfer. FileCatalyst was chosen for its combination of automation tools and fast file transfer, allowing for rapid turnaround from original broadcast to online availability.</p>
<p><span id="more-1743"></span></p>
<p>Original article available here: http://www.prweb.com/releases/2011/11/prweb8948034.htm</p>
]]></content:encoded>
			<wfw:commentRss>http://www.utechsoft.com/dramafever-uses-filecatalyst-to-send-large-media-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Case Study: FileCatalyst and Canadian Cloud</title>
		<link>http://www.utechsoft.com/case-study-filecatalyst-and-canadian-cloud/</link>
		<comments>http://www.utechsoft.com/case-study-filecatalyst-and-canadian-cloud/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 18:48:41 +0000</pubDate>
		<dc:creator>greg</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.utechsoft.com/?p=1736</guid>
		<description><![CDATA[Recently, FileCatalyst had a great opportunity to be a part of Canada 3.0, a digital media forum with over 2,000 participants discussing and shaping Canada&#8217;s digital landscape. Canadian Cloud Computing has released the case study, which can be found in its original form at CCC&#8217;s website: &#8220;The Road to Banff leads through the Cloud&#8220;]]></description>
				<content:encoded><![CDATA[<p>Recently, FileCatalyst had a great opportunity to be a part of <a href="http://www.canada30.com/" title="Canada 3.0 Website" target="_blank">Canada 3.0</a>, a digital media forum with over 2,000 participants discussing and shaping Canada&#8217;s digital landscape.</p>
<p>Canadian Cloud Computing has released the case study, which can be found in its original form at CCC&#8217;s website: <a href="http://www.canadiancloud.com/wp-content/uploads/2011/09/Case-Study-Road-to-Banff.pdf">&ldquo;The Road to Banff leads through the Cloud&ldquo;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.utechsoft.com/case-study-filecatalyst-and-canadian-cloud/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FileCatalyst used in Gbps download demonstration</title>
		<link>http://www.utechsoft.com/filecatalyst/</link>
		<comments>http://www.utechsoft.com/filecatalyst/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 15:18:25 +0000</pubDate>
		<dc:creator>greg</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.utechsoft.com/?p=1729</guid>
		<description><![CDATA[Cable giant Comcast recent used our FileCatalyst technology to demonstrate its latest broadband offering. Read about it over at our sister blog here]]></description>
				<content:encoded><![CDATA[<p>Cable giant Comcast recent used our <a href="http://filecatalyst.com">FileCatalyst</a> technology to demonstrate its latest broadband offering. Read about it over at our sister blog <a href="http://www.filecatalyst.com/comcast-fast-downloads-filecatalyst/" title="FileCatalyst 1Gbps transfers">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.utechsoft.com/filecatalyst/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FileCatalyst Direct 2.9 available</title>
		<link>http://www.utechsoft.com/filecatalyst-direct-2-9-available/</link>
		<comments>http://www.utechsoft.com/filecatalyst-direct-2-9-available/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 17:01:07 +0000</pubDate>
		<dc:creator>greg</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.utechsoft.com/?p=1726</guid>
		<description><![CDATA[FileCatalyst Direct, one of the products built on our FileCatalyst fast file transfer platform, has been updated to version 2.9. The new version comes with a number of optimizations, important new features, and a revised user interface. If you are looking for Enterprise-class managed file transfer, head over to the FileCatalyst site and request a [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://filecatalyst.com/products/direct-overview">FileCatalyst Direct</a>, one of the products built on our <a href="http://filecatalyst.com">FileCatalyst</a> fast file transfer platform, has been updated to version 2.9. The new version comes with a number of optimizations, important new features, and a revised user interface. If you are looking for Enterprise-class managed file transfer, head over to the FileCatalyst site and request a trial.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.utechsoft.com/filecatalyst-direct-2-9-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox bug causes black area</title>
		<link>http://www.utechsoft.com/firefox-bug-causes-black-area/</link>
		<comments>http://www.utechsoft.com/firefox-bug-causes-black-area/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 05:34:28 +0000</pubDate>
		<dc:creator>greg</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.utechsoft.com/?p=1714</guid>
		<description><![CDATA[In Firefox 3.6.13 and 3.6.14, a browser bug caused Java applets (including Unlimi-Tech applets) to show a black box insead of an interface. Simply upgrade Firefox to 3.6.15 to resolve the issue.]]></description>
				<content:encoded><![CDATA[<p>In Firefox 3.6.13 and 3.6.14, a browser bug caused Java applets (including Unlimi-Tech applets) to show a black box insead of an interface. Simply upgrade Firefox to 3.6.15 to resolve the issue. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.utechsoft.com/firefox-bug-causes-black-area/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Applets plus Certificates</title>
		<link>http://www.utechsoft.com/new-applet-certificates-now-available/</link>
		<comments>http://www.utechsoft.com/new-applet-certificates-now-available/#comments</comments>
		<pubDate>Mon, 07 Mar 2011 18:00:23 +0000</pubDate>
		<dc:creator>greg</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.utechsoft.com/?p=1702</guid>
		<description><![CDATA[Our UnlimitedFTP and U-Upload applets have been re-released. Both product families have new code-signing certificates, bringing the applets up-to-date as well as resolving an issue discovered with the previous certificate. All applets now have tighter integration with native OS look and feel, with UFTP Pro and UFTP Secure also getting a refresh of their toolbar [...]]]></description>
				<content:encoded><![CDATA[<p>Our UnlimitedFTP and U-Upload applets have been re-released. Both product families have new code-signing certificates, bringing the applets up-to-date as well as resolving an issue discovered with the previous certificate. All applets now have tighter integration with native OS look and feel, with UFTP Pro and UFTP Secure also getting a refresh of their toolbar icons.</p>
<p><span id="more-1702"></span></p>
<h3>What is a code-signing certificate?</h3>
<p>To keep our applets secure, we use code-signing certificates. It&#8217;s like shrink-wrap, guaranteeing the applet has not been tampered with by a 3rd party. These are renewed bi-annually, and are now available.</p>
<p>What is a code-signing certificate? I&#8217;m sure there are better articles on the web to explain the smallest details, but the general idea is that we source a security certificate, much like those used to secure pages over HTTPS, which make sure that an applet that comes from us cannot be tampered with. If a third party intercepts and tries to modify the code for malicious purposes, the applet will no longer function. When you use an Unlimi-Tech applet, the certificate is our guarantee that it will do nothing harmful to your computer.</p>
<p>Why every 2 years? Like other types of certificates, the certificate vendor cannot simply issue a certificate for a &#8216;lifetime&#8217; guarantee.</p>
<p>How do I upgrade? In most cases, all you need to do is download the new version of the applet from our website, and simply copy and paste the JAR file from the ZIP over top of the existing one on your website. Done! Of course, you should always make a backup before you make changes to your site. Here&#8217;s a more detailed article from our knowledge base:</p>
<p><a href="http://support.filecatalyst.com/index.php?_m=knowledgebase&#038;_a=viewarticle&#038;kbarticleid=92">Fix Expired Certificate / Upgrade Applet</a> &#8211; Unless you have a much older applet (in which case your certificate already expired ages ago!) you will likely be option #1 in that article.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.utechsoft.com/new-applet-certificates-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.utechsoft.com/feed/ ) in 0.37110 seconds, on May 20th, 2013 at 7:00 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 20th, 2013 at 8:00 pm UTC -->