﻿<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title>FTP Support</title>
	<updated>2012-02-23T02:35:02Z</updated>
	<id>http://ftpsupport.net/atom.aspx</id>
	<link href="http://ftpsupport.net/atom.aspx" rel="self" type="application/rss+xml" />
	<link href="http://ftpsupport.net" rel="alternate" type="application/rss+xml" />
	<generator uri="http://app.onlinequickblog.com/" version="2.6.7">Quick Blogcast</generator>
	<entry>
		<title>Free FTP, FTP/S, SFTP and WebDAV client</title>
		<link rel="alternate" href="http://ftpsupport.net/2008/02/07/free-ftp-ftps-sftp-and-webdav-client.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2008-02-07:874dfab7-74eb-4611-a649-9cecee95a581</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2008-02-07T21:03:00Z</updated>
		<published>2008-02-07T21:03:00Z</published>
		<content type="html">&lt;a href="http://www.anyclient.com"&gt; AnyClient&lt;/a&gt; is a free platform independent file transfer application that
supports all major file transfer protocols including FTP/S, SFTP and
WebDAV/S. AnyClient is available both as a web based service requiring
no software installation, and as a downloadable application that you
can install locally.</content>
	</entry>
	<entry>
		<title>HIPAA FTP Hosting</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/hipaa-ftp-hosting.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-20:08b4ca71-ca38-4bd6-872d-a193ba000048</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-20T16:01:00Z</updated>
		<published>2007-07-20T16:01:00Z</published>
		<content type="html">JSCAPE has recently started offering &lt;a title="HIPAA FTP Hosting" href="http://www.jscape.com/secureftpserverhosting/hipaa.html"&gt;HIPAA FTP Hosting&lt;/a&gt; using it’s popular &lt;a title="JSCAPE Secure FTP Server" href="http://www.jscape.com/secureftpserver/"&gt;JSCAPE Secure FTP Server&lt;/a&gt; product.&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>What are the differences between FTP passive and active mode?</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/what-are-the-differences-between-ftp-passive-and-active-mode.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-19:829e3bc1-1fe9-4f04-9842-089220621070</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-19T16:00:00Z</updated>
		<published>2007-07-19T16:00:00Z</published>
		<content type="html">&lt;div class="entry"&gt;					
				&lt;p&gt;To explain the difference between
passive and active transfers it is necessary to cover some of the
details of how the FTP protocol works.&amp;nbsp; The FTP protocol uses multiple
channels for communication.&amp;nbsp; These channels are known as the command
channel and the data channel.&lt;/p&gt;
&lt;p&gt;Command Channel&lt;/p&gt;
&lt;p&gt;The command channel is responsible for accepting commands from an
FTP client and typically runs on port 21 for standard FTP and encrypted
FTP using explicit SSL, or port 990 for encrypted implicit SSL
connections.&amp;nbsp; The command channel is also responsible for sending
replies back to the FTP client in response to client commands.&amp;nbsp; An
example of a command sent by an FTP client might be “PWD” asking the
server for the current remote directory.&amp;nbsp; The server will respond with
a response code followed by the current remote directory such as “257
/home/users/jsmith”&lt;/p&gt;
&lt;p&gt;Data Channel&lt;/p&gt;
&lt;p&gt;The data channel is used for transferring files and for performing
directory listings.&amp;nbsp; Unlike the command channel, the data channel does
not run on a single persistent port.&amp;nbsp; Instead whenever a file transfer
or directory listing is performed a new (typically random) port is is
opened for sending the data (either by the client or server) and the
data transfer is performed.&amp;nbsp; Once the data transfer is complete the
port is closed.&amp;nbsp; The port on which the data channel is performed and
additionally whether the client or server is responsible for opening
this port depends on the data transfer mode used.&amp;nbsp; There are two data
transfer modes available in FTP.&amp;nbsp; These data transfer modes are known
as passive and active a.k.a non-passive.&amp;nbsp; These data transfer modes
should not be confused with “binary” and “ASCII” which relates to the
format in which data is transferred and not the method in which data is
transferred.&lt;/p&gt;
&lt;p&gt;Passive Mode&lt;/p&gt;
&lt;p&gt;In passive mode the server is responsible for opening the listening
port and telling the client what server-side listening IP/port to
connect to in order to perform the transfer.&amp;nbsp; To start a passive
transfer the client sends the “PASV” command.&amp;nbsp; The server then responds
with the IP address and port that the client should connect to in order
to perform the transfer.&amp;nbsp; Once the transfer is complete the port is
closed by the server.&lt;/p&gt;
&lt;p&gt;Active (Non-Passive) Mode&lt;/p&gt;
&lt;p&gt;In active mode the client is responsible for opening the listening
port and telling the server what IP/port to connect to in order to
perform the transfer.&amp;nbsp; To start an active transfer the client sends the
“PORT” command along with arguments telling the server what client-side
listening IP/port the server should connect to in order to perform the
transfer.&amp;nbsp; Once the transfer is complete the port is closed by the
client.&lt;/p&gt;
&lt;p&gt;Which one should I use?&lt;/p&gt;
&lt;p&gt;This depends largely on the FTP server capabilities and
configuration.&amp;nbsp; From the client perspective the first question you need
to ask yourself is “Does the server support passive connections?”.&amp;nbsp;
There are some FTP servers, especially those running on older mainframe
systems that do not support passive connections.&amp;nbsp; It’s also possible
that while the server supports passive connections the server may have
this feature disabled.&amp;nbsp; This is usually due to an aggressive firewall
policy on the server side that disallows passive connections.&amp;nbsp;
Naturally, if the server doesn’t support/allow passive connections then
you will be forced to use active mode.&amp;nbsp; The easiest way to test whether
a server supports passive mode is to simply connect using passive mode
and perform a directory listing to see what happens.&amp;nbsp; If you get back a
directory listing without error then the server supports passive mode.&amp;nbsp;
If however you get an error like “500 PASV command not supported” or
“500 PASV command disabled” then you will need to use an active
connection.&amp;nbsp; In general you should always default to using a passive
connection when possible.&amp;nbsp; It is much more firewall-friendly to clients
than active mode given that most Internet users today are behind
firewalls using NAT software.&lt;/p&gt;
&lt;p&gt;From the perspective of an FTP server administrator you should make
it as easy as possible for your clients to connect.&amp;nbsp; This means
enabling passive mode on your server so that clients who are behind a
firewall or router that uses NAT software, can connect easily.
&lt;/p&gt;
				&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>Creating PGP keys using GPG</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/creating-pgp-keys-using-gpg.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-18:537cedab-7732-497c-9a1e-c12347355519</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-18T15:58:00Z</updated>
		<published>2007-07-18T15:58:00Z</published>
		<content type="html">&lt;div class="entry"&gt;					
				&lt;p&gt;Demonstrates how to create encryption keys using the open-source GPG tools.&amp;nbsp; This is a flash tutorial.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.jscape.com/secureftpserver/viewlets/creating_pgp_keys/gpg_viewlet_swf.html"&gt;Creating PGP keys using GPG&lt;/a&gt;
&lt;/p&gt;
				&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>Encrypting files using PGP and JSCAPE Secure FTP Server</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/encrypting-files-using-pgp-and-jscape-secure-ftp-server.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-17:fbf7279f-5d64-49d1-b538-c12e2ecc10cb</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-17T15:58:00Z</updated>
		<published>2007-07-17T15:58:00Z</published>
		<content type="html">&lt;div class="entry"&gt;					
				&lt;p&gt;Demonstrates how to encrypt file automatically upon upload using triggers and PGP encryption.&amp;nbsp; This is a flash tutorial.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.jscape.com/secureftpserver/viewlets/encryption_using_pgp/pgptrigger_viewlet_swf.html"&gt;Encrypting files using PGP and JSCAPE Secure FTP Server&lt;/a&gt;
&lt;/p&gt;
				&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>Writing custom actions with JSCAPE Secure FTP Server</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/writing-custom-actions-with-jscape-secure-ftp-server.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-16:2f4f0261-3118-45ac-8e70-7a7bd1d87347</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-16T15:57:00Z</updated>
		<published>2007-07-16T15:57:00Z</published>
		<content type="html">&lt;div class="entry"&gt;					
				&lt;p&gt;Demonstrates managed file transfer MFT using custom actions.&lt;/p&gt;
&lt;p&gt;&lt;a title="http://www.jscape.com/articles/writing_custom_actions_secure_ftp_server.html" href="http://www.jscape.com/articles/writing_custom_actions_secure_ftp_server.html"&gt;http://www.jscape.com/articles/writing_custom_actions_secure_ftp_server.html&lt;/a&gt;
&lt;/p&gt;
				&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>JSCAPE Secure FTP Server 2.1 released</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/jscape-secure-ftp-server-21-released.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-15:236626f5-599d-4681-8a03-8d362514bf61</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-15T15:56:00Z</updated>
		<published>2007-07-15T15:56:00Z</published>
		<content type="html">					
				JSCAPE
Secure FTP Server 2.1 has been released today.&amp;nbsp; Major additions to this
release include the ability to authenticate users against LDAP, Active
Directory and relational databases, ability to log activity data to a
database and a new Current Time trigger that may be used for scheduling
recurring or one-time actions.&lt;div class="entry"&gt;
&lt;p&gt;&lt;a title="http://www.jscape.com/secureftpserver/" href="http://www.jscape.com/secureftpserver/"&gt;http://www.jscape.com/secureftpserver/&lt;/a&gt;
&lt;/p&gt;
				&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>Managed File Transfer - Business Example</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/managed-file-transfer--business-example.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-14:02b618c7-abfe-4483-a47e-8b93cf43cb5e</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-14T15:53:00Z</updated>
		<published>2007-07-14T15:53:00Z</published>
		<content type="html">&lt;div class="entry"&gt;					
				&lt;p&gt;This article demonstrates how to
automate post file transfer processing for a fictitious printing press
company using &lt;a href="http://www.jscape.com/secureftpserver/"&gt; JSCAPE Secure FTP Server&lt;/a&gt;.&lt;br&gt;&lt;/p&gt;
&lt;p&gt;&lt;a title="View Article" href="http://www.jscape.com/articles/managed_file_transfer_business_example.html"&gt;View Article&lt;/a&gt;
&lt;/p&gt;
				&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>What is PASV connection theft?</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/what-is-pasv-connection-theft.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-13:d5c858a8-caa3-4b06-aff6-e37eb48a218f</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-13T15:52:00Z</updated>
		<published>2007-07-13T15:52:00Z</published>
		<content type="html">&lt;div class="entry"&gt;					
				&lt;p&gt;There are several data transfer
commands which can be used during an FTP session. These include STOR
(upload a file), RETR (download a file), LIST (get a full directory
listing) and NLST (get a directory listing of filenames). Prior to a
passive data transfer the client must send the PASV command to the
server in order to request that the server open up a port for data
transfer. The server will respond with the IP address and port the
client should connect to in order to perform the data transfer. PASV
connection theft occurs when the client requests that the server open a
data port using the PASV command but before the original client can
connect to this port another rogue client connects to this port thus
hijacking the original client’s data connection. But how does the rogue
client know what port to connect to you ask? The rogue client could use
a brute force method of simply trying all available ports, or he could
make an intelligent guess as to what ports may be opened next by
looking at what ports were opened in previous sessions (many servers
use a sequential method of opening ports for data transfer). What
happens next depends on the following command issued by the original
client.&lt;/p&gt;
&lt;p&gt;If the original client issues a STOR command then the rogue client
may then upload a file using the hijacked data stream, possibly
overwriting a file or installing a trojan. If the original client
issues a RETR command then the rogue client may receive the file
requested for download. Both scenarios of course present a severe
security risk. Most servers today, including &lt;a href="http://www.jscape.com/secureftpserver/"&gt;JSCAPE Secure FTP Server&lt;/a&gt;,
implement methods for preventing against PASV connection theft. These
methods verify that the client who requested the PASV connection is the
same as the client which eventually connects to the data port opened by
the server. &lt;br&gt;&lt;/p&gt;&lt;br&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;
				&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>What is FTP?</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/what-is-ftp.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-12:8853d056-99ca-425b-8275-0af41380fd2b</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-12T15:51:00Z</updated>
		<published>2007-07-12T15:51:00Z</published>
		<content type="html">FTP stands for File Transfer Protocol. This protocol defines a method
for transferring files between an FTP client and server over the
Internet or local area network. Several RFC’s cover the definition of
the FTP protocol. These include RFC 959, RFC 1579 and RFC 2228.&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>What is the difference between SFTP and FTPS?</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/what-is-the-difference-between-sftp-and-ftps.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-10:219a765b-1d6a-4d67-8be5-ce5bf3844ef5</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-10T15:50:00Z</updated>
		<published>2007-07-10T15:50:00Z</published>
		<content type="html">SFTP is the protocol for FTP via SSH. SFTP is based on the SSH protocol
and while it does have some functional similarities to FTPS the
protocols are completely different in the way they communicate with the
server and secure data. FTPS is based on the FTP protocol. There are
two types of FTPS, FTPS implicit mode and FTPS explicit mode. FTPS
implicit mode, both of which use SSL for securing data.&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>JSCAPE simplifies Secure File Transfer</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/jscape-simplifies-secure-file-transfer.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-09:0d5d7e0a-53d1-4993-983a-472cf52fbcb4</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-09T15:49:00Z</updated>
		<published>2007-07-09T15:49:00Z</published>
		<content type="html">&lt;div class="entry"&gt;					
				&lt;p&gt;Today JSCAPE, a provider of file
transfer and security solutions, announced the availability of the
latest version of &lt;a href="http://www.jscape.com/secureftpserver/"&gt; JSCAPE Secure FTP Server&lt;/a&gt; Enterprise Edition.&lt;/p&gt;
&lt;p&gt;&lt;a target="_blank" href="http://www.prweb.com/releases/2006/8/prweb428857.htm"&gt;View Press Release&lt;/a&gt;
&lt;/p&gt;
				&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>Simple FTP using Java</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/simple-ftp-using-java.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-08:ff36b973-d1d8-4add-94c5-f5341b29c0bf</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-08T15:47:00Z</updated>
		<published>2007-07-08T15:47:00Z</published>
		<content type="html">&lt;div class="entry"&gt;					
				&lt;p&gt;The ability to transfer files from one
machine to another is often accomplished using an FTP client. Using the
FTP component provided in &lt;a href="http://www.jscape.com/sftp/"&gt; Secure FTP Factory&lt;/a&gt; this article will
demonstrate how you can easily embed FTP capabilities into your own
Java applications.&lt;/p&gt;
&lt;p&gt;&lt;a target="_blank" href="http://www.jscape.com/articles/simple_ftp_using_java.html"&gt;View Article&lt;/a&gt;
&lt;/p&gt;
				&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>Secure FTP using Java and SFTP (FTP via SSH)</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/secure-ftp-using-java-and-sftp-ftp-via-ssh.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-06:d835e662-5fe9-4f24-9122-e38aa0c6e07f</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-06T15:46:00Z</updated>
		<published>2007-07-06T15:46:00Z</published>
		<content type="html">&lt;div class="entry"&gt;					
				&lt;p&gt;This article will demonstrate how to
securely transfer files using the SFTP (FTP over SSH) protocol and the
components provided in&amp;nbsp;&lt;a href="http://www.jscape.com/sftp/"&gt; Secure FTP Factory&lt;/a&gt; Java API.&lt;/p&gt;
&lt;p&gt;&lt;a target="_blank" href="http://www.jscape.com/articles/secure_ftp_using_java.html"&gt;View Article&lt;/a&gt;
&lt;/p&gt;
				&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>Secure FTP Using Java and FTPS (FTP over SSL)</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/secure-ftp-using-java-and-ftps-ftp-over-ssl.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-05:23e29978-1fa0-47b2-808b-1edaba72f6ea</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-05T15:45:00Z</updated>
		<published>2007-07-05T15:45:00Z</published>
		<content type="html">&lt;div class="entry"&gt;					
				&lt;p&gt;This article will demonstrate how to
securely transfer files using the FTPS (FTP over SSL) protocol and the
components provided in &lt;a href="http://www.jscape.com/sftp/"&gt; Secure FTP Factory&lt;/a&gt; API for Java.&lt;/p&gt;
&lt;p&gt;&lt;a title="View Article" target="_blank" href="http://www.jscape.com/articles/secure_ftp_using_java_ssl.html"&gt;View Article&lt;/a&gt;
&lt;/p&gt;
				&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>Web based FTP transfers</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/web-based-ftp-transfers.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-04:fde531f7-9e63-421b-b449-7ff6bc1f698c</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-04T15:41:00Z</updated>
		<published>2007-07-04T15:41:00Z</published>
		<content type="html">This tutorial discusses how to perform web based file transfers using &lt;a href="http://www.jscape.com/secureftpserver/"&gt; JSCAPE Secure FTP Server&lt;/a&gt;.&lt;br&gt;&lt;br&gt;&lt;a target="_blank" title="View Article" href="http://www.jscape.com/articles/secure_ftp_server_web.html"&gt;View Article&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href="http://www.jscape.com/secureftpserver/"&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>Secure FTP using C# and FTPS (FTP over SSL)</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/secure-ftp-using-c-and-ftps-ftp-over-ssl.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-07-02:338fe2f0-9c1d-4fcb-af70-ca4087ac46ac</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-07-02T15:40:00Z</updated>
		<published>2007-07-02T15:40:00Z</published>
		<content type="html">This article will demonstrate how using  &lt;a href="http://www.jscape.com/sftpdotnet/index.html"&gt;Secure FTP Factory for .NET&lt;/a&gt; you can establish a secure FTP session with an FTP server and perform various file operations.&lt;br&gt;&lt;br&gt;&lt;a href="http://www.jscape.com/articles/ftp_using_csharp.html"&gt;View Article&lt;/a&gt;&lt;br&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>10 things to look for in a Managed File Transfer solution</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/10-things-to-look-for-in-a-managed-file-transfer-solution.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-06-15:ac9ffdd8-11f7-40db-a1b2-e60062969b46</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-06-15T15:59:00Z</updated>
		<published>2007-06-15T15:59:00Z</published>
		<content type="html">&lt;div class="entry"&gt;					
				&lt;p&gt;Discusses features to look for when evaluating a managed file transfer (MFT) solution.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.jscape.com/secureftpserver/10_things_to_look_for_in_a_managed_file_transfer_solution.html"&gt;10 things to look for in a Managed File Transfer solution&lt;/a&gt;
&lt;/p&gt;
				&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>10 ways to make your FTP server Sarbanes-Oxley compliant</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/10-ways-to-make-your-ftp-server-sarbanesoxley-compliant.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-06-01:60d9ff69-ba15-4572-bdef-15c6911943c4</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-06-01T15:59:00Z</updated>
		<published>2007-06-01T15:59:00Z</published>
		<content type="html">&lt;div class="entry"&gt;					
				&lt;p&gt;Article discusses ways in which you can configure your FTP server to be Sarbanes-Oxley compliant.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.jscape.com/secureftpserver/10_steps_to_make_your_FTP_server_Sarbanes-Oxley-compliant.html"&gt;10 ways to make your FTP server Sarbanes-Oxley compliant&lt;/a&gt;
&lt;/p&gt;
				&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
	<entry>
		<title>JSCAPE Secure FTP Server 2.0 released</title>
		<link rel="alternate" href="http://ftpsupport.net/2007/07/28/jscape-secure-ftp-server-20-released.aspx?ref=rss" />
		<id>tag:www.ftpsupport.net,2007-04-01:62f70a6f-fa98-48df-b343-d01fa77c6157</id>
		<author>
			<name>vglass</name>
		</author>
		<updated>2007-04-01T15:55:00Z</updated>
		<published>2007-04-01T15:55:00Z</published>
		<content type="html">&lt;div class="entry"&gt;					
				&lt;p&gt;JSCAPE is pleased to announce the
release of JSCAPE Secure FTP Server 2.0.&amp;nbsp; This release includes several
new features focusing on use as an enterprise managed file transfer
application.&lt;/p&gt;
&lt;p&gt;More information on JSCAPE Secure FTP Server can be found here:&lt;/p&gt;
&lt;p&gt;&lt;a title="http://www.jscape.com/secureftpserver/" href="http://www.jscape.com/secureftpserver/"&gt;http://www.jscape.com/secureftpserver/&lt;/a&gt;
&lt;/p&gt;
				&lt;/div&gt;&lt;div&gt;&lt;/div&gt;</content>
	</entry>
</feed>
