id
stringlengths 32
32
| text
stringlengths 0
895k
| name
stringlengths 0
33k
| domain
stringlengths 5
44
| bucket
stringclasses 19
values | answers
list |
---|---|---|---|---|---|
fd6db9faac2490cad019ff2ea04fcd9a | What type of secure FTP does edtFTPnet/PRO support? | What type of secure FTP does edtFTPnet/PRO support? | enterprisedt.com | 2021.10 | [
{
"text": "There is considerable confusion when using the term \"secure FTP\". There are two different types of secure file transfer protocols available. edtFTPnet/PRO supports both. \n\n \n\nFirstly, there is an enhancement to standard FTP (as defined in RFC 959), which uses the same FTP commands (and protocol) over secure sockets, i.e. over SSL/TLS. This is variously known as FTPS, FTP-SSL, and FTP-over-SSL. There are many FTP servers that support FTPS. \n\n \n\nThere is also another protocol, unfortunately known as SFTP, which also provides secure file access, but which is not related to the standard FTP protocol. This is implemented using SSH (Secure SHell), a suite of secure network connectivity tools (when used with SSH2 this is known as SFTP). The primary purpose of SSH is to enable users to remotely log into a machine over a secure connection. The two protocols are completely different and not related.",
"name": "",
"is_accepted": true
}
] |
16901c8b2071fe4284c0fd65679a9a36 | When i use the 'Check for updates' link in the CompleteFTP Manager GUI, i get the error : '*Could not retrieve version number from EnterpriseDT Server*'.
| Why can't the CompleteFTP manager retrieve the version number? | enterprisedt.com | 2020.10 | [
{
"text": "To retrieve the latest version number, the CompleteFTP manager must contact the enterprisedt.com webserver. If access is blocked on your machine to this server, the manager will display this error. To diagnose the problem, please examine the manager's debug log file - it should tell you what the issue is. See [here](https://enterprisedt.com/products/completeftp/doc/guide/html/howtogetdiagnostics.html) on how to obtain the log. \n\nApart from the URL being blocked, another possibility is that HTTPS is not working correctly. Our server requires the TLS 1.2 protocol to be used for HTTPS, and if the manager is being run on earlier versions of the .NET framework, TLS 1.2 will not be supported. You'll see a message in the manager log about TLS 1.2 not being supported. For example, the .NET 4.0 framework does *not* support TLS 1.2 (it only supports TLS 1.1). To get the update function to work again, the machine the manager is running on, must be running the .NET 4.5 or .NET 4.6 frameworks. In this case, you will need to update the .NET framework on the manager machine to either .NET 4.5 or .NET 4.6 (preferably the latter).\n\n",
"name": "",
"is_accepted": true
}
] |
b78e3d1dadc40c9b6cb41583bed3f7ac | Hello,
We perfectly understand that SSLv3 shoud no longer be used, under no circumstances, and we always make this clear to our customers. However, it turns out that some of our customers have their own partners that are very stubborn to upgrade (on their own risk).
Our question is: can SSLv3 still be used with 5.3.0, are there some known issues in this library version that prevent client code from using this protocol when connecting to a server ?
For example, suppose we're using a RedHat's own FTP server, configured only with SSLv3, when connecting via the lftp client, the server would send back the following features:
---- Connecting to <host> port 21
<--- 220 (vsFTPd 3.0.2)
---> FEAT
<--- 211-Features:
<--- AUTH SSL
<--- EPRT
<--- EPSV
<--- MDTM
<--- PASV
<--- PBSZ
<--- PROT
<--- REST STREAM
<--- SIZE
<--- TVFS
<--- UTF8
<--- 211 End
The lftp client would treat thsi situation by switching to SSL authentication, rather than TLS:
**** AUTH TLS is not supported, using AUTH SSL instead
---> AUTH SSL
<--- 234 Proceed with negotiation.
---> OPTS UTF8 ON
When we're using edt 5.3.0, to connect, we see however that TLS auth is still in use, even if we have set SSLv3 and cipher suites:
com.enterprisedt.SSLFTPClient] 24 Apr 2019 12:12:38.184 : Disabled all cipher-suites
com.enterprisedt.SSLFTPClient] 24 Apr 2019 12:12:38.184 : Enabling TLS\_RSA\_WITH\_AES\_256\_CBC\_SHA
com.enterprisedt.SSLFTPClient] 24 Apr 2019 12:12:38.184 : Enabling TLS\_RSA\_WITH\_AES\_128\_CBC\_SHA
com.enterprisedt.SSLFTPClient] 24 Apr 2019 12:12:38.184 : Enabling TLS\_RSA\_WITH\_3DES\_EDE\_CBC\_SHA
com.enterprisedt.SSLFTPClient] 24 Apr 2019 12:12:38.200 : Created explicit FTPS client.
com.enterprisedt.SSLFTPClient] 24 Apr 2019 12:12:38.202 : Min SSL/TLS version: SSL 3.0
com.enterprisedt.SSLFTPClient] 24 Apr 2019 12:12:38.203 : Max SSL/TLS version: SSL 3.0
com.enterprisedt.SSLFTPClient] 24 Apr 2019 12:12:38.203 : Connecting to <host>:21
com.enterprisedt.StreamSocketFactory] 24 Apr 2019 12:12:38.204 : Connecting to <host>:21 via standard socket
com.enterprisedt.StreamSocketFactory] 24 Apr 2019 12:12:38.226 : setSoTimeout(3000)
com.enterprisedt.SSLSocket] 24 Apr 2019 12:12:38.228 : Timeout=3000
com.enterprisedt.FTPControlSocket] 24 Apr 2019 12:12:38.233 : 220 (vsFTPd 3.0.2)
com.enterprisedt.SSLFTPControlSocket] 24 Apr 2019 12:12:38.237 : DISABLE\_CONTROL\_SSL\_CLOSURE=false
com.enterprisedt.SSLFTPControlSocket] 24 Apr 2019 12:12:38.237 : DISABLE\_CONTROL\_WAIT\_ON\_CLOSE=false
com.enterprisedt.SSLFTPControlSocket] 24 Apr 2019 12:12:38.237 : ALLOW\_BASIC\_CONSTRAINTS\_IN\_NON\_CA=false
com.enterprisedt.FTPControlSocket] 24 Apr 2019 12:12:38.237 : ---> AUTH TLS
INFO 2019-04-24 12:12:38,249 ConnJobCommand [Thread-53] - ftp command: ---> AUTH TLS
com.enterprisedt.FTPControlSocket] 24 Apr 2019 12:12:38.259 : 234 Proceed with negotiation.
INFO 2019-04-24 12:12:38,273 ConnJobCommand [Thread-53] - ftp reply: 234 Proceed with negotiation.
com.enterprisedt.SSLFTPControlSocket] 24 Apr 2019 12:12:38.273 : Starting SSL handshake on control socket
com.enterprisedt.SSLFTPControlSocket] 24 Apr 2019 12:12:38.294 : Caught: com.enterprisedt.net.puretls.SSLThrewAlertException
We've managed to actually make the client use also "AUTH SSL", but even so, it seems that there are problems deconding serve responses during handshake:
com.enterprisedt.FTPControlSocket] 24 Apr 2019 19:38:43.379 : ---> AUTH SSL
com.enterprisedt.FTPControlSocket] 24 Apr 2019 19:38:43.387 : 234 Proceed with negotiation.
com.enterprisedt.SSLFTPControlSocket] 24 Apr 2019 19:38:43.391 : Starting SSL handshake on control socket
com.enterprisedt.puretls] 24 Apr 2019 19:38:43.871 : Encoding client hello
...
com.enterprisedt.puretls] 24 Apr 2019 19:38:44.142 : Encoding handshake header
...
com.enterprisedt.puretls] 24 Apr 2019 19:38:44.168 : Decoding server hello
...
com.enterprisedt.puretls] 24 Apr 2019 19:38:44.219 : Read Integer size 2value 57
com.enterprisedt.puretls] 24 Apr 2019 19:38:44.224 : Reading a 1byte integer
com.enterprisedt.puretls] 24 Apr 2019 19:38:44.228 : Read byte 0
com.enterprisedt.puretls] 24 Apr 2019 19:38:44.232 : Read Integer size 1value 0
com.enterprisedt.puretls] 24 Apr 2019 19:38:44.247 : Throwing alert Handshake failure | SSLV3 still supported in version edtFTPjPRO 5.3.0 ? | enterprisedt.com | 2019.51 | [
{
"text": "Yes, you can still use SSL 3.0 but as you say it isn't recommended. You'll need to open a support ticket to resolve this particular issue, see enterprisedt.com/support.",
"name": "",
"is_accepted": false
}
] |
bab015e04de73d96831a6e26984fb0af | Does IIS support FTPS? | Does IIS support FTPS? | enterprisedt.com | 2020.34 | [
{
"text": "No, Microsoft's Internet Information Server (IIS) does not currently support SFTP or FTPS, but our completely FTP server, [CompleteFTP](http://www.completeftp.com), supports FTPS.\n\n",
"name": "",
"is_accepted": true
}
] |
d3153ff801a9cd5542520b0d3b6eb33f | My customer uses CompleteFTP pro and very much likes it. They are asking if it is possible to include the CompleteFTP HTTPS site inside a new Web Application which I'm developing for them. This will likely be an Azure Web Application, and so authenticated with Azure AD and OAUTH / STS.
Ideally they would have the functions of their new app, but 1 navigation link that would show them CompleteFTP site inside the main application body, while retaining the chrome of the new app. At worst, some single-sign-on approach and jump to the other site would suffice.
I'm not sure what the most natural route to achieving this is:
* use your .NET component, but have to write a lot of basic pages that are already in your app
* use some sort of (horrible) iframe style inclusion or wrapping
* use authenticator extensions to make some sort of custom azure AD or STS style authentication
* add some sort of SAML support into the new app to share the identity with CompleteFTP
* am I going to need to move their (currently on-prem) CompleteFTP into Azure, and is that even possible?
* ...etc.
It is early days and this was supposedly a 'quick' question! Rather than chase each rabbit hole, I was hoping I could get pointed roughly in the right direction? | Can I host or wrap the HTTP application for CompleteFTP elsewhere? | enterprisedt.com | 2020.29 | [
{
"text": "This sounds super interesting. We'd be happy to work with you to get that going.\n\nI think there are two main hurdles: one is the authentication issue, which you mentioned, and the other is cross-site protection built into browsers. Perhaps the best way to overcome both of these is to have your app act as a proxy for the CompleteFTP file-manager's API. \n\nThe next version of CompleteFTP, 12.0.0, which is due out next month, will include a new file-manager. It's an open-source fork of [angular-filemanager](https://github.com/joni2back/angular-filemanager). The repository in on GitHub at [github.com/EnterpriseDT/completeftp-filemanager](https://github.com/EnterpriseDT/completeftp-filemanager). The server-side API is written entirely in Javascript ([JSS](https://enterprisedt.com/products/completeftp/doc/guide/jssapi/index.html)). It's invoked from the browser via JSON-RPC and all calls pass through a single point ([index.jss](http://github.com/EnterpriseDT/completeftp-filemanager/blob/master/index.jss)). For example, a file-list request looks like this:\n\n\n```\n{\n \"method\": \"list\",\n \"id\":0,\n \"params\": {\n \"path\": \"/MyFiles\"\n }\n}\n```\nand the response looks like this:\n\n\n```\n{\n \"id\": 0,\n \"result\": {\n \"canWrite\": true,\n \"canRemove\": true,\n \"canRename\": true,\n \"files\": [{\n \"name\": \"file001.dat\",\n \"rights\": \"drwxr-xr-x\",\n \"size\": 79,\n \"date\": \"Wed, 17 Oct 2018 03:22:37 UTC\",\n \"type\": \"file\"\n }, {\n \"name\": \"file002.dat\",\n \"rights\": \"drwxr-xr-x\",\n \"size\": 37,\n \"date\": \"Wed, 17 Oct 2018 03:22:37 UTC\",\n \"type\": \"file\"\n }\n ]\n }\n}\n```\nI imagine that you could host all of the AngularJS code on your server and replace index.jss with your own code that acts as a dumb proxy, forwarding the requests to CompleteFTP and sending the responses back to the client. To get the client code to call your URL instead of index.jss is done by changing the values in the values array defined on line 49 of [template.html](https://github.com/EnterpriseDT/completeftp-filemanager/blob/master/template.html).\n\nYou'll see that there's a login method in the API, so if the credentials for your app are the same as those for CompleteFTP, then you can perhaps just call that using the credentials that the user enters when logging into your app. You could probably also use SAML if you like.\n\nAnd yes, CompleteFTP runs fine on Azure.\n\nHow does that sound?\n\n",
"name": "",
"is_accepted": true
}
] |
4430114b3bccee7aa02c30aaadc4983a | Which exhange keys/cipher suites does edtFTPnet/PRO support? | enterprisedt.com | 2020.29 | [
{
"text": "Hi,\n\n*For edtFTPnet/PRO version 9.6.0:*\n\nFor SSL (FTPS & HTTPS) please see [here](https://enterprisedt.com/products/edtftpjssl/doc/api/com/enterprisedt/net/ftp/ssl/SSLFTPCipherSuite.html).\n\nFor SSH (SFTP & SCP):\n\nClient Algorithms: [diffie-hellman-group1-sha1, diffie-hellman-group14-sha1, diffie-hellman-group-exchange-sha1, diffie-hellman-group-exchange-sha256]\n\nClient Algorithms: [ssh-dss, ssh-rsa]\n\nClient Ciphers: blowfish-cbc,3des-cbc,aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,arcfour\n\nClient HMACS: hmac-md5,hmac-md5-96,hmac-sha1,hmac-sha1-96,hmac-sha2-256,hmac-sha2-512\n\nSupported Compression Client-none,zlib,[email protected]\n\n",
"name": "",
"is_accepted": false
}
] |
|
2bc2d56f844f33f7e005e8f4d520a3ef | How do I disable vulnerable ciphers in SSH/SFTP? My security audit says Diffie-Hellman-Group1-sha1 and Blowfish-cbc should be disabled.
| How do I disable vulnerable ciphers in SSH/SFTP? | enterprisedt.com | 2020.05 | [
{
"text": "In the CompleteFTP Manager, under \n\n*SFTP Settings>Advanced SFTP Settings>Algorithms>Available Key Exchange Methods* \n\nclick in the box and deselect 'Diffie-Hellman-Group1-sha1' (key exchange). \n\nUnder \n\n*SFTP Settings>Advanced SFTP Settings>Algorithms>Available Ciphers*, \n\nclick in the box and deselect 'Blowfish-cbc' (cipher). \n\nBoth of these settings sometimes show up when a vulnerability scan is run, and are shown by some scans as 'deprecated'.\n\n",
"name": "",
"is_accepted": false
}
] |
527e65d6cf5c66dfa0dc49bcff7eaf5a | I would like to set a Public Link to a Cusstomer with expiration date and password.
The GUI Could be like this....

This shoud create a Public link like this:
<https://sftp.ip-cloud.ch/Share/mElXEG0PkpoxSJJCYzNe1A/linkedFile.zip>
If the person witch clicks the link there should be a password check like this:

After the expired Date the public link should not be accessible anymore
| Real Public Link with Expiration date | enterprisedt.com | 2020.50 | [
{
"text": "Please take a look at [CompleteBox](https://enterprisedt.com/products/completebox/), which is a client application for creating shareable links.\n\n",
"name": "",
"is_accepted": false
},
{
"text": "CompleteFTP's web-based [FileManager](https://enterprisedt.com/products/completeftp/doc/guide/filemanager_Overview) is able to [share files](https://enterprisedt.com/products/completeftp/doc/guide/filemanager_ShareFilePrivate) in the manner you're describing. If you need a user interface exactly like you're describing then you can develop it with CompleteFTP (see [here](https://enterprisedt.com/products/completeftp/doc/guide/jssoverview)). Our server-side scripting language is JSS, which is Javascript + an extensive [API](https://enterprisedt.com/products/completeftp/doc/guide/jssapi/index.html) for integrating with CompleteFTP and performing common operations. Although it's not currently documented, the API does allow integration with CompleteFTP's file-sharing system, allowing you to manage user shares, including creating new ones. We'd be happy to advise you on how to get started on your development project.\n\n",
"name": "",
"is_accepted": false
}
] |
aa176736f0b6a30db663ea55412c53ae | A CompleteFTP user reported:
>
> When I click Add user \ Windows users(s) in the Users screen the error "An error occurred while getting the list of Windows users from the server." is displayed.
>
>
>
In the server's diagnostics.log, an unusual error message was reported:
System.ComponentModel.Win32Exception (0x80004005): The operation completed successfully
| An error occurred while getting the list of Windows users from the server | enterprisedt.com | 2019.51 | [
{
"text": "We sent the user some test code that did a similar task to what CompleteFTP was trying to do - fetch the local user list. \n\n \n\nThey successfully used this code to diagnose the issue:\n\n\n\n> \n> I have managed to get sufficient error information to identify the cause of our problem using a modified version of the code you provided. The Workstation Service was disabled on our Servers to meet customers security requirements, however without this service the call to DirectoryEntry fails.\n> \n> \n> Thank you for your help, this issue may now be closed.\n> \n> \n> \n\n",
"name": "",
"is_accepted": true
}
] |
322fb3c069f4e38c4f0f1f2c3030a249 | What is the correct method to upgrade a Standard Edition installation of CompleteFTP to an installation of Professional Edition?
What is the correct method for managing the license activation/deactivation process in this case? | Install Professional edition over Standard edition? | enterprisedt.com | 2020.05 | [
{
"text": "You need to reactivate the server from within the CompleteFTP manager using your [customer site](https://connect.enterprisedt.com) credentials. That should be all that is required.\n\n",
"name": "",
"is_accepted": true
}
] |
78ac0ea0f5e04d43833fabf515316e36 | Which versions of SSL and TLS does CompleteFTP support? | Which versions of SSL and TLS does CompleteFTP support? | enterprisedt.com | 2020.05 | [
{
"text": "CompleteFTP supports SSL 3.0, and TLS 1.0, TLS 1.1 and TLS 1.2.",
"name": "",
"is_accepted": false
}
] |
2c756871401a6eece17909682f29c0c8 | How can I use wget to download using authenticated HTTP? | How can I use wget to download using authenticated HTTP? | enterprisedt.com | 2020.05 | [
{
"text": "To download from CompleteFTP using wget requires two steps (for files that require username/password). \n \nCompleteFTP uses a session id, stored as a cookie. Clients must first obtain the cookie, and then authenticate using that cookie. By default, wget sends the authorization header in the first request (before the cookie is sent). This never works, as the cookie is not sent to the server with the auth header. CompleteFTP assumes this is an expired session. \n \nSo wget must be run twice, first to get the cookie, and then again using the retrieved cookie:\n\n\n> **wget --save-cookies cookies.txt --keep-session-cookies <http://myurl> \n> wget --load-cookies cookies.txt --http-user=username --http-password=pwd <http://myurl>**\n> \n> \n\n \nThis only works in **wget version 1.12 or later** since earlier versions don't save the cookie if there's an authentication error.\n\n",
"name": "",
"is_accepted": true
}
] |
b2d8bffe3a300ed9825f2fd5c19e3ad6 | How do Standard, Professional and Enterprise Editions differ? | How do Standard, Professional and Enterprise Editions differ | enterprisedt.com | 2020.05 | [
{
"text": "You can compare features [here](http://www.enterprisedt.com/products/completeftp/editions.php).\n\n",
"name": "",
"is_accepted": false
}
] |
c89bc78f23765cfe120aac62a540a39e | What TLS 1.2 ciphers are supported by edtFTPj/PRO | What TLS 1.2 ciphers are supported by edtFTPj/PRO | enterprisedt.com | 2019.43 | [
{
"text": "The ciphers that are mainly used for TLS 1.2 are:\n\nTLS\\_ECDHE\\_RSA\\_WITH\\_3DES\\_EDE\\_CBC\\_SHA, \nTLS\\_ECDHE\\_RSA\\_WITH\\_AES\\_128\\_CBC\\_SHA, \nTLS\\_ECDHE\\_RSA\\_WITH\\_AES\\_256\\_CBC\\_SHA\n\nWe plan on adding the GCM ciphers in the next release.\n\n",
"name": "",
"is_accepted": false
}
] |
da7bee1f9b1576c71df63c382b0ffc2d | One of our customer have a requirement that uploaded files needs to have 660 file permission. This is working for them when using the old version of our product (with edtFTPj/PRO v2.1.2), but they need to upgrade now.
I know that you could update the file permissions by using InvokeSiteCommand( ). We tried that but we are getting an error: "Custom command result 200 This service allow sftp connections only". I read around and I think this is because their server have this configuration: ForceCommand internal-sftp
My question is:
What is the default file permissions of the uploaded files? Is it 755? Is there a configuration or setting to change this to a different permission so that we don't need to do the InvokeSiteCommand?
| Change the file permission of the uploaded files | enterprisedt.com | 2020.34 | [
{
"text": "I'm going to assume that you're using FTP or FTPS, since you don't really say. \n\n \n\nThere are no defaults for FTP. The problem is that the FTP protocol doesn't deal with permissions, so there are no commands for handling them nor even any rules for what the defaults are supposed to be. It's therefore up to each individual server to determine how they should be handled, which is done via SITE commands. \n\n \n\nSFTP does have permission commands and rules, so if you were to use that protocol (which our client supports) then you'd have some options. \n\n \n\nHaving said that, I don't see why upgrading edtFTPj/PRO to a more recent version should break anything, so if it worked with the old client then it should work with the new client.",
"name": "",
"is_accepted": false
}
] |
0898dcfb79263777caaadd73cf8bde7d | A customer asked us how to use [Okta](https://www.okta.com/)'s SAML single-sign-on service with CompleteFTP.
| How do I use Okta's SAML single-sign-on service with CompleteFTP? | enterprisedt.com | 2020.50 | [
{
"text": "At the time of writing, Okta's IDP metadata doesn't include the identifier that CompleteFTP uses to differentiate between multiple IDP's. In order to work around this problem, it's necessary to manually edit the metadata to insert this identifier, called the 'entity ID'.\n\nTo do this, you must first obtain the entity ID from Okta. This is available on the page shown when you press the 'View Setup Instructions' button in the 'Sign On' tab of the admin page for your application on the Okta website. To make things even more difficult, there's a space missing, so that the entity ID runs together with the last word preceding it, i.e. \"The Identity Provider Issuer isXYZ\", where XYZ is the entity ID. Be careful to only copy the entity ID when you copy it to the clipboard.\n\nNow download the metadata XML file and open it in a text editor. The second line begins:\n\n\n```\n<md:EntityDescriptor\n```\nInsert the following immediately after this:\n\n\n```\nentityID=\"XYZ\"\n```\nwhere entity ID that you copied to the clipboard.\n\nOnce you've done this you can add it to CompleteFTP in the usual manner and it should work. Please contact [our support team](https://enterprisedt.com/help/) if it still doesn't work.\n\n",
"name": "",
"is_accepted": true
}
] |
a7ac06eb017c67860589d45069d98e45 | We've been told at work that we need to start sending files over using TLS, but I haven't been able to find how to switch to that using SecureFTPConnection. I've seen some examples using the Client, but not with the other class. Are there code examples on how to accomplish this? | How to switch to TLS using edtFTPnet/PRO | enterprisedt.com | 2020.05 | [
{
"text": "The [User Guide](https://enterprisedt.com/products/edtftpnetpro/doc/manual/index.html) provides comprehensive examples and documentation, but it's primarily a matter of setting the protocol:\n\n\n\n```\n\n?// Create SecureFTPConnection object\nSecureFTPConnection ftpConnection = new SecureFTPConnection();\n\n// setting server address and credentials\nftpConnection.ServerAddress = serverAddress;\nftpConnection.UserName = userName;\nftpConnection.Password = password;\n\n// select explicit FTPS\nftpConnection.Protocol = FileTransferProtocol.FTPSExplicit;\n\n// switch off server validation (unsafe - only do this when testing) ftpConnection.ServerValidation = SecureFTPServerValidationType.None;\n\n// connect to server\nftpConnection.Connect();\n```\n",
"name": "",
"is_accepted": false
}
] |
b9ab77270f55cdf50de0317ed628595b | Hi there
I try to login to my FTP Site via an SQL DB Authentication.
I configured the databaseUser with an Connectionstring and an SQL Query.
When running the Testlogin in the Dialog with the User and the Password it says Authentication is sucessfull and it shows me the correct home folder.
But whe i try to connect from a client pc whith the Username and Password it did not work.
Each time i enter the Password he asks for Password again.
I got the Errormessage:
INFO PassCommand [xxx] Login failed: String reference not set to an instance of a String.
INFO PassCommand [xxx] Parameter name: s (Remote IP=xxx.xxx.xxx.xxx) | Login via SQL DB Authentication | enterprisedt.com | 2020.05 | [
{
"text": "This turned out to be a bug in version 8.5.0. The fix will be released with the next version of CompleteFTP (probably 8.5.1).",
"name": "",
"is_accepted": false
}
] |
69025c832320c417d797daf70c7c1058 | I would like to know, How to Archive/move existing files in the folder before upload/download files after connected to SFTP server.
Thanks in Advance | Archiving file in SFTP server side | enterprisedt.com | 2020.34 | [
{
"text": "Please try renaming the files. You might be able to use the full path of the file to get it moved to another directory. However this will depend on the server.",
"name": "",
"is_accepted": false
}
] |
7e105bd35f019880628bf534f6a28555 |
```
I want my script to terminate if a certain execution could not be performed.
Example:
try {
ftp.connect();
}
catch (e) {
console.log("There was an error with connecting " + e);
process.exit;
}
```
| Is there a way to terminate jss script execution? | enterprisedt.com | 2019.51 | [
{
"text": "How about this:\n\n\n```\nfunction transferFiles() {\n try {\n ftp.connect();\n } catch (e) {\n console.log(\"There was an error with connecting \" + e);\n return;\n }\n}\n\ntransferFiles();\n```\n",
"name": "",
"is_accepted": false
}
] |
4d17b4ba035556a5e3e5e49d3e8af223 | Why do FTPS connections succeed but transfers fail? | Why do FTPS connections succeed but transfers fail? | enterprisedt.com | 2020.05 | [
{
"text": "FTP commands are initiated by the client, which opens a TCP connection called the control (or command) channel to the server. This control channel is used for the entire duration of a session between the client and server. A session typically begins when the client logs in, and ends when the quit command is sent to the server. The control channel is used exclusively for sending FTP commands and reading server replies - it is never used to transfer files. In FTP and FTPS this is usually port 21. \n \nFile transfers and directory listings use a separate, transient connection for each transfer or listing. The client issues a command to open a data connection (passive, using the PASV command, or active, using the PORT command). In passive mode, the server replies with a port number that the client must connect to for the data transfer. In active mode, the client sends a port number to the server, which connects back to it. \n \nNow firewalls are usually configured by default to allow TCP connections out or in on port 21. They are **not** configured by default to allow connections on the data ports. With FTP, this usually isn't an issue - the firewall inspects the control channel, sees the data port number that is sent, and automatically opens this port so the data connections are permitted. FTP users don't even notice. Note though that some firewalls may not do this automatically for FTP. \n \nUnfortunately, with FTPS this is not possible - the control channel is encrypted and the firewall can't inspect it to obtain the data port numbers to open. So the data connection fails, even though the user can login and issue commands. \n \nThe only solution to this is to configure the firewall to open the data port numbers permanently. FTPS servers must be configured to only use a fixed range of data port numbers, and these are set up in the firewall. If active mode is used, clients must be similarly configured to use a fixed range of port numbers.\n\n",
"name": "",
"is_accepted": true
}
] |
4868bee15d1eb9ca780c3b43a86197f8 | How can I produce a detailed log file for support? | How can I produce a detailed log file for support? | enterprisedt.com | 2020.05 | [
{
"text": "When we're asked to troubleshoot a problem, we often ask users to send us a 'clean debug log'. What we mean by 'clean debug log' is a log file that contains, as far as possible, only information related to the problem at hand. \nThe steps for producing a 'clean debug log' are as follows: \n**SHORT VERSION:**\n\n1. Set the logging level to Debug\n2. Stop the CompleteFTP service\n3. Delete the existing log file\n4. Start the CompleteFTP service again\n5. Reproduce the error\n6. Send us the (zipped) log file\n\n \n**LONG VERSION:**\n\n1. **Set the logging level to Debug:**\n\t1. Open CompleteFTP Manager and connect.\n\t2. Select Logs from the menu.\n\t3. Set the Logging level to 'Debug' and click 'Apply Changes'.\n\t4. Close CompleteFTP Manager.\n2. **Stop the CompleteFTP service:**\n\t1. Open the Services item in the Windows Control Panel.\n\t2. Select CompleteFTP and hit the stop button.\n3. **Delete the existing log file:**\n\t1. Select 'Log Files' from the CompleteFTP start menu.\n\t2. Find 'Diagnostics.log' and delete (or rename) it.\n4. **Start the CompleteFTP service again:**\n\t1. Open the Services item in the Windows Control Panel.\n\t2. Select CompleteFTP and hit the start button.\n5. **Reproduce the error:**\n\t1. Do whatever it was that caused the error. E.g. connecting with an SFTP client and getting an error.\n6. **Send us the (zipped) log file:**\n\t1. Select 'Log Files' from the CompleteFTP start menu.\n\t2. Zip up the Diagnostics.log file and e-mail it to us\n\nIf you are having difficulty getting the manager to connect, see this FAQ: \n<http://www.enterprisedt.com/forums/viewtopic.php?t=4230>\n\n",
"name": "",
"is_accepted": true
}
] |
f646caa57da417c60d6613ea3fa439a5 | When setting up the CompleteFTP; not getting the Public website (index.html) when going to the site (http://localhost) get a page with the header of "Index of /" does not go to the public/index.html page.
When I force the public/index.html page it redirects to the login screen?
From outside the server will also go to the "Index of /" page.
Configurations:
Public HTTP access enabled [checked, under Sites > HTTP/HTTPS > Public Access]
Example of source code of site in the default:
```
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title>
Index of /</title>
</head>
<body>
<h1>Index of /</h1>
<pre>
Name Last modified Size Description
<a href="..">Parent Directory</a>
<a href="Documentation/">Documentation/</a> 2018-02-14 05:50 -
<a href="Examples/">Examples/</a> 2018-02-14 05:50 -
</pre>
<address>In the US Mountain Standard Time Zone (GMT -7)</address><FORM METHOD=POST ENCTYPE="multipart/form-data" ACTION="."><INPUT TYPE=FILE NAME="upfile"><INPUT TYPE=SUBMIT VALUE="Upload File"></FORM>
</body>
</html>
Reviewed the setup document, everything states the Public site is supposed to be the first site but that is not happening and the source page is not in the "C:\ProgramData\Enterprise Distributed Technologies\Complete FTP" directories.
Thoughts?
```
| Public page not being displayed | enterprisedt.com | 2019.51 | [
{
"text": "Please ensure that:\n\n1. The path of the /Public folder in CompleteFTP Manager is C:\\ProgramData\\Enterprise Distributed Technologies\\Complete FTP\\Public\n2. The directory, C:\\ProgramData\\Enterprise Distributed Technologies\\Complete FTP\\Public, contains a file called index.html, as well as some other files.\n",
"name": "",
"is_accepted": true
},
{
"text": "Does the directory, C:\\ProgramData\\Enterprise Distributed Technologies\\Complete FTP\\Public, contain a file called index.html ?",
"name": "",
"is_accepted": false
}
] |
8fba43c408004459b5f6cb1dffe66f44 | What FTPS servers does edtFTPnet/PRO support? | What FTPS servers does edtFTPnet/PRO support? | enterprisedt.com | 2021.10 | [
{
"text": "Almost all servers are supported - email support if yours is not and we'll do our best to add support for it.",
"name": "",
"is_accepted": true
}
] |
2dc3a3e15b72a00ec54eecad1754bce2 | I have edtFTPj-PRO licence.jar
How can i download edtFTPj-PRO product version? | How can i download edtFTPj-PRO product | enterprisedt.com | 2020.05 | [
{
"text": "Please login to your account [here](https://connect.enterprisedt.com/#/downloads/products) , where you will be able to download the version you require. Please be aware that some versions may not be available if you have not renewed support for the license.\n\n",
"name": "",
"is_accepted": false
}
] |
11ba0c662d2499bde669285d030c1186 | I am experiencing network timeouts that are interrupting the connection to the sFTP server.
My scenario is this:
I created a c# server interface that is registered with RegAsm and is accessed by the client application with CreateObject().
Once the client application has instantiated the sever, if anything happens to the connection that is formed the client locks up in memory.
Is there a timeout property for inactivity built into edtFTPPro.net that I haven't set correctly? Or am I not using threading appropriately, or is there another way that i can test for inactivity that I might be able to close the client and get a restart? Any information will be greatly appreciated.
Thanks
Alan
Log entry from remote FTP server:
000002488368 2011-04-19 08:32:44.531 6984 CORP2\NANTOS:[Info][30093] .\sshd.cpp:LoginProc(11683) The client was disconnected by intermediate network components or chose to disconnect without sending a disconnect message.
Log from edtFTPPro.net:
DEBUG [LicenseProperties] 19 Apr 2011 08:36:49.344 : Looking for subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO (fallback )
DEBUG [LicenseProperties] 19 Apr 2011 08:36:49.344 : Found license subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO
DEBUG [LicenseProperties] 19 Apr 2011 08:36:49.344 : Did not find license subkeys Software\Enterprise Distributed Technologies\edtFTPnet PRO or in registry
DEBUG [LicenseProperties] 19 Apr 2011 08:36:49.359 : Looking for subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO (fallback )
DEBUG [LicenseProperties] 19 Apr 2011 08:36:49.359 : Found license subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO
DEBUG [LicenseProperties] 19 Apr 2011 08:36:49.359 : Did not find license subkeys Software\Enterprise Distributed Technologies\edtFTPnet PRO or in registry
DEBUG [LicenseProperties] 19 Apr 2011 08:36:49.359 : Looking for subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO (fallback )
DEBUG [LicenseProperties] 19 Apr 2011 08:36:49.359 : Found license subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO
DEBUG [LicenseProperties] 19 Apr 2011 08:36:49.359 : Did not find license subkeys Software\Enterprise Distributed Technologies\edtFTPnet PRO or in registry
DEBUG [LicenseProperties] 19 Apr 2011 08:36:49.359 : Looking for subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO (fallback )
DEBUG [LicenseProperties] 19 Apr 2011 08:36:49.359 : Found license subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO
DEBUG [LicenseProperties] 19 Apr 2011 08:36:49.359 : Did not find license subkeys Software\Enterprise Distributed Technologies\edtFTPnet PRO or in registry
DEBUG [FTPConnection] 19 Apr 2011 08:36:49.375 : Set LocalDirectory='e:\data\combineddrsb'
DEBUG [SecureFTPConnection] 19 Apr 2011 08:36:49.375 : Set LocalDirectory to e:\data\combineddrsb
DEBUG [HostNameResolver] 19 Apr 2011 08:36:49.484 : Resolving corp2.dfas.mil
DEBUG [HostNameResolver] 19 Apr 2011 08:36:49.516 : Obtained 1 addresses
DEBUG [HostNameResolver] 19 Apr 2011 08:36:49.516 : IP address: 207.133.66.100
DEBUG [HostNameResolver] 19 Apr 2011 08:36:49.516 : corp2.dfas.mil resolved to 207.133.66.100
DEBUG [SSHFTPClient] 19 Apr 2011 08:36:49.516 : Connecting directly to SFTP server 207.133.66.100:22
DEBUG [SSHFTPClient] 19 Apr 2011 08:36:49.531 : Connected successfully to SFTP server 207.133.66.100:22
DEBUG [SSHConnection] 19 Apr 2011 08:36:49.531 : Beginning protocol negotiation
DEBUG [PlainSocket] 19 Apr 2011 08:36:49.625 : RepeatCallback received 48 bytes
DEBUG [ProtocolNegotiationHandler] 19 Apr 2011 08:36:49.625 : offset=0,length=48
DEBUG [ProtocolNegotiationHandler] 19 Apr 2011 08:36:49.625 : Read: 'SSH-2.0-WRQReflectionforSecureIT\_7.2 Build 151'
DEBUG [SSHUtil] 19 Apr 2011 08:36:49.625 : Major string = '2'
DEBUG [SSHUtil] 19 Apr 2011 08:36:49.625 : Minor string = '0'
DEBUG [SSHUtil] 19 Apr 2011 08:36:49.625 : Version 2.0
DEBUG [SSHUtil] 19 Apr 2011 08:36:49.625 : Protocol compatible
DEBUG [SSHConnection] 19 Apr 2011 08:36:49.625 : Server version=SSH-2.0-WRQReflectionforSecureIT\_7.2 Build 151
DEBUG [SSH2Connection] 19 Apr 2011 08:36:49.625 : Timeout=120000
DEBUG [SSHConnection] 19 Apr 2011 08:36:49.625 : Sending client version=SSH-2.0-edtFTPnet/PRO-7.1.0.20
DEBUG [SSH2Connection] 19 Apr 2011 08:36:49.625 : Starting key exchange
DEBUG [PlainSocket] 19 Apr 2011 08:36:49.625 : RepeatCallback received 256 bytes
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.625 : Sending SSH\_MSG\_KEXINIT
DEBUG [PlainSocket] 19 Apr 2011 08:36:49.625 : RepeatCallback received 96 bytes
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.625 : key exchange method=diffie-hellman-group1-sha1
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.641 : hostkey algorithms=ssh-dss,ssh-rsa
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.641 : ciphers=aes256-cbc
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.641 : ciphers=aes256-cbc
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.641 : MACs=hmac-sha1
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.641 : MACs=hmac-sha1
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.641 : compression algorithms=none
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.641 : compression algorithms=none
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.641 : Sent SSH\_MSG\_KEXINIT
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.641 : Reading SSH\_MSG\_KEXINIT reply
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.641 : Processing SSH\_MSG\_KEXINIT reply
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.641 : Remote kex alg=diffie-hellman-group1-sha1,diffie-hellman-group14-sha1,diffie-hellman-group-exchange-sha1
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.641 : Decided kex alg= DiffieHellmanGroup1Sha1
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.641 : Remote hostkey alg=ssh-dss
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.641 : Decided hostkey alg= DSA
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.641 : Remote Cipher CS=aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,aes192-cbc,aes256-cbc,3des-cbc
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.641 : Decided Cipher C->S= AES256
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.641 : Remote Cipher SC=aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,aes192-cbc,aes256-cbc,3des-cbc
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.641 : Decided Cipher S->C= AES256
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.641 : Remote MAC CS=hmac-sha1
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.641 : Decided MAC C->S= HMACSHA1
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.641 : Remote MAC SC=hmac-sha1
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.641 : Decided MAC S->C= HMACSHA1
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.641 : Remote Comp CS=zlib,none
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.641 : Decided Comp C->S=None
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.641 : Remote Comp SC=zlib,none
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.641 : Decided Comp S->C=None
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.641 : first\_kex\_packet\_follows=False
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.641 : Processed SSH\_MSG\_KEXINIT reply
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.641 : Sending SSH\_MSG\_KEXDH\_INIT
DEBUG [AbstractKeyExchanger] 19 Apr 2011 08:36:49.656 : DH\_PRIME\_GROUP1
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.672 : Sent SSH\_MSG\_KEXDH\_INIT
DEBUG [ClientKeyExchanger] 19 Apr 2011 08:36:49.672 : Reading | timeout disconnect | enterprisedt.com | 2021.04 | [
{
"text": "Please enable logging at the Debug level and post a relevant log snippet. We will probably move this thread into the edtFTPnet/PRO forum.",
"name": "",
"is_accepted": false
},
{
"text": "Bruce -\n \n Did you find any particular info on this topic?",
"name": "",
"is_accepted": false
},
{
"text": "Bruce - any new light on this subject",
"name": "",
"is_accepted": false
},
{
"text": "The error in your log is an authentication failure. So you are providing an invalid private key for the user, or the user's public key is not registered on the server.",
"name": "",
"is_accepted": false
},
{
"text": "Yes, I understand the problem but, when this occurs sFTP stays connected to the server Reflections session and does not return control to the client application. This, in effect, simulates a lock up instead of recording the error and returning control to the client application thru DCOM. I built a C# component that negotiates the communication between the client foxpro application and EDT server application. I cannot figure out the property I need to use to get EDT to relase control back to my client application facilitating a failure to connect error. I was inquiring which property to use to get EDT to release its memory segment so that the foxpro client can continue its processing.",
"name": "",
"is_accepted": false
},
{
"text": "Can you please post your code? If you are handling any event from our components, please post those as well.\n \n\n \n- Hans (EnterpriseDT)",
"name": "",
"is_accepted": false
},
{
"text": "\n```\nusing System;\nusing System.Runtime.InteropServices;\n\nnamespace EnterpriseDT\n{\n //[ClassInterface(sftp.AutoDual)]\n //[ProgId(\"EnterpriseDT.SecureFTPConnection\")]\n [Guid(\"75C37F9E-A0E7-4004-8E56-95C00AD29843\")]\n //[ComVisible(true)]\n public interface SFTPTransfer\\_Interface\n {\n [DispId(1)]\n void upLoadFile(string targetAddress, string targetFilePath, string sourceFilePath, string result);\n [DispId(2)]\n string[] GetFiles();\n [DispId(3)]\n void Connect();\n [DispId(4)]\n void Close();\n [DispId(5)]\n string ServerAddress{ get; set; }\n [DispId(6)]\n string UserName{ get; set; }\n [DispId(7)]\n string Password { set; }\n [DispId(8)]\n bool IsConnected { get; }\n [DispId(9)]\n int portUsed { get; set; }\n [DispId(10)]\n void InitializeComponent(string PrivateKeyLocationAndFileName, string PrivateKeyPassphrase, string sLogFileName);\n [DispId(11)]\n void addknownHostFile(string HostName, string publicKeyLocation);\n [DispId(12)]\n void deleteFileFromServer(string targetFilepath, string strfilename);\n }\n [Guid(\"6AC80E65-5BC9-4443-B64B-95F5FC193744\"),\n ClassInterface(ClassInterfaceType.None)]\n public class SecureFTPConnection : SFTPTransfer\\_Interface\n {\n public SecureFTPConnection()\n {\n// EnterpriseDT.Net.Ftp.SecureFTPConnection.LogLevel = EnterpriseDT.Util.Debug.LogLevel.All;\n// EnterpriseDT.Net.Ftp.SecureFTPConnection.LogFile = @\"Logs\\ftplogfile.log\";\n }\n private EnterpriseDT.Net.Ftp.SecureFTPConnection cxn;\n// cxn = new EnterpriseDT.Net.Ftp.SecureFTPConnection();\n \n\n public string ServerAddress\n {\n get { return cxn.ServerAddress; }\n set { cxn.ServerAddress = value; }\n }\n\n public string UserName\n {\n get { return cxn.UserName; }\n set { cxn.UserName = value; }\n }\n\n public void addknownHostFile(string HostName, string publicKeyLocation)\n {\n cxn.KnownHosts.AddKnownHost(HostName, publicKeyLocation);\n }\n\n public int portUsed\n {\n get { return cxn.ServerPort; }\n set { cxn.ServerPort = value; }\n }\n\n public bool IsConnected\n {\n get { return cxn.IsConnected ; }\n }\n\n public string Password\n {\n get { return cxn.Password; }\n set { cxn.Password = value; }\n }\n\n public void Connect()\n {\n cxn.Connect();\n }\n\n public string[] GetFiles()\n {\n return cxn.GetFiles();\n }\n\n public void Close()\n {\n cxn.Close();\n cxn = null;\n EnterpriseDT.Net.Ftp.SecureFTPConnection.LogLevel = EnterpriseDT.Util.Debug.LogLevel.Off;\n EnterpriseDT.Net.Ftp.SecureFTPConnection.LogFile = null;\n }\n\n public void deleteFileFromServer(string targetFilepath, string strfilename)\n {\n if (cxn.DirectoryExists(targetFilepath))\n {\n cxn.ChangeWorkingDirectory(targetFilepath);\n if (cxn.Exists(strfilename))\n {\n cxn.DeleteFile(strfilename);\n }\n }\n }\n\n private void setupParms(string sLogFileName)\n {\n EnterpriseDT.Net.Ftp.SecureFTPConnection.LogLevel = EnterpriseDT.Util.Debug.LogLevel.All;\n EnterpriseDT.Net.Ftp.SecureFTPConnection.LogFile = sLogFileName;\n }\n\n public void upLoadFile(string targetFile, string targetFilePath, string sourceFilePath, string results)\n {\n /*if (cxn.DirectoryExists\n```\n",
"name": "",
"is_accepted": false
},
{
"text": "Hi Alan\n \n\n \nI suggest logging messages before and after you call our connect method, i.e.\n \n\n```\npublic void Connect() \n{ \n try\n {\n log.Debug(\"Connecting\");\n cxn.Connect(); \n log.Debug(\"Connected\");\n }\n catch (Exception e)\n {\n log.Error(\"Connection error\", e);\n throw;\n }\n}\n```\n \nwhere log is defined as \n\n```\nLogger log = EnterpriseDT.Util.Debug.Logger.GetLogger(\"COMSecureFTPConnection\");\n```\n\n \n\n \nThis is to confirm that it never exits the SecureFTPConnection.Connect() method.\n \n\n \n- Hans (EnterpriseDT)",
"name": "",
"is_accepted": false
}
] |
fdcc0074b01ec6fd5e79add0e9dca84e | I use edtftpnet in my application to download files. I am using DSL at home. It works fine. However whenever I open VPN connect to my office, the edtftpnet will throw exception in methods SendCommand line "return ReadReply();". If I disconnect VPN. It works fine again.
I am not sure how to fix this exception.
Thanks. | SendCommand throws exception | enterprisedt.com | 2021.04 | [
{
"text": "Do you mean that this happens when you are FTPing files from your office, or that FTP to/from other sites fails when the VPN connection is open?\n \n\n \n\n> I use edtftpnet in my application to download files. I am using DSL at home. It works fine. However whenever I open VPN connect to my office, the edtftpnet will throw exception in methods SendCommand line \"return ReadReply();\". If I disconnect VPN. It works fine again. \n> \n> I am not sure how to fix this exception. \n> \n> Thanks.\n\n",
"name": "",
"is_accepted": false
},
{
"text": "When I ftp files from other sites when the VPN is open.\n \n\n \n\n> Do you mean that this happens when you are FTPing files from your office, or that FTP to/from other sites fails when the VPN connection is open? \n> \n> \n> > I use edtftpnet in my application to download files. I am using DSL at home. It works fine. However whenever I open VPN connect to my office, the edtftpnet will throw exception in methods SendCommand line \"return ReadReply();\". If I disconnect VPN. It works fine again. \n> > \n> > I am not sure how to fix this exception. \n> > \n> > Thanks.\n> \n> \n\n",
"name": "",
"is_accepted": false
},
{
"text": "All I can think of is that you having some kind of routing problem. Try running traceroute to the remote FTP site to see how the packets are getting there.\n \n\n \n\n> When I ftp files from other sites when the VPN is open. \n> \n> \n> > Do you mean that this happens when you are FTPing files from your office, or that FTP to/from other sites fails when the VPN connection is open? \n> > \n> > \n> \n> \n\n",
"name": "",
"is_accepted": false
}
] |
337f7547bdd0422cb94ac4d9dfc8aca1 | We are a non-profit organization wanting to purchase CompleteFTP Professional Edition Single Server License. Is there a discount for non-profits?
Thank you. | Is there a discount for non-profit organizations? | enterprisedt.com | 2020.45 | [
{
"text": "We do offer a 10% discount for Non-profit Organizations and Charities, but only if the purchase is carried out direct through EnterpriseDT, and not through a third party re-seller.",
"name": "",
"is_accepted": false
}
] |
9dc51560f920d398857bb66ce932de0b | Dear Sales/Customer Service,
We want to purchase edtFTPj/PRO but we have questions on the license. As a background we are not going to do development but a third party application that we have requires the edtFTPj/PRO for it to work.
This third party application is installed on 3 PCs and we need edtFTPj/PRO on all these PCs. Can we use a single developer license for the 3 PCs?
Please check and advice.
| Question on EDTFTPj/Pro Licensing | enterprisedt.com | 2020.40 | [
{
"text": "Yes, that's fine - there are no runtime restrictions for using edtFTPj/PRO.",
"name": "",
"is_accepted": true
}
] |
112b46690400adea58e1ce242baf1c41 | Every time I try to upload a file containing an extended character (Ex: ?) as part of the filename, I receive an java.io.IOException with the message 'Unknown error'.
Uploading a file with this name using a different FTP client (Ex: WinSCP) succeeded, so the server supports the extended characters.
Trace of thrown exception:
```
java.io.IOException: Unknown error.
at com.enterprisedt.net.j2ssh.sftp.SftpFileOutputStream.b(SftpFileOutputStream.java:163)
at com.enterprisedt.net.j2ssh.sftp.SftpFileOutputStream.close(SftpFileOutputStream.java:192)
at java.io.FilterOutputStream.close(FilterOutputStream.java:160)
at com.enterprisedt.net.ftp.ssh.SSHFTPOutputStream.close(SSHFTPOutputStream.java:259)
at com.inmoment.FtpService\_UT.rawEdtFTPjProTest\_withExtendedCharInFilename(FtpService\_UT.java:243)
```
Sample code demonstrating the problem:
```
@org.junit.Test
public void rawEdtFTPjProTest\_withExtendedCharInFilename() throws Exception {
com.enterprisedt.net.ftp.SecureFileTransferClient client = new com.enterprisedt.net.ftp.SecureFileTransferClient(1, 1);
client.setTimeout(30000);
client.setServerValidationEnabled(false);
client.setRemoteHost(host);
client.setUserName(username);
client.setPassword(password);
client.setProtocol(com.enterprisedt.net.ftp.Protocol.SFTP);
client.setRemotePort(22);
// Use passive mode
client.getAdvancedFTPSettings().setConnectMode(com.enterprisedt.net.ftp.FTPConnectMode.PASV);
try {
client.connect();
try(OutputStream outputStream = client.uploadStream("Test file with extended char - ?.txt")) {
byte[] contents = "This file was sent as a test.".getBytes();
outputStream.write(contents);
}
} finally {
if (client.isConnected()) {
client.disconnect(true);
}
}
}
```
| Does edtFTPj/Pro 5.2.4 support transferring files with extended characters in the filename? | enterprisedt.com | 2020.10 | [
{
"text": "There's a method for setting the character set for the control connection.",
"name": "",
"is_accepted": false
}
] |
7fb35772580db17eb4a9eab37460aaf4 | We're currently using CompleteFTP in one of our pre-production environments, but our trial license has run out.
We have a Professional license which I've applied to this environment, but this doesn't fit our needs as it doesn’t support mapping Azure File shares.
We're in the process of purchasing an Enterprise license, but in the meantime, can we have a another trial license?
Can you advise how I go about activating another trial?
| Extension to trial license | enterprisedt.com | 2020.05 | [
{
"text": "This question was previously asked and answered [here.](https://enterprisedt.com/questions/index.php/2872/the-trial-period-has-expired-how-can-i-extend-it)\n\nPlease do not post the license URL online. Please only use email or our support portal. I have replied regarding this by email to your email address.\n\n",
"name": "",
"is_accepted": false
}
] |
b40dc705590b34cdcbe612126388fee9 | Any help here would be appreciated!
DEBUG [SSH2Channel] 17 Nov 2010 10:17:26.852 : Transmit 93 bytes
DEBUG [ChannelDataWindow] 17 Nov 2010 10:17:26.852 : Remote window size decreased to 33993
DEBUG [PlainSocket] 17 Nov 2010 10:17:26.862 : RepeatCallback received 120 bytes
DEBUG [SSH2Connection] 17 Nov 2010 10:17:26.862 : ProcessPacket pt=SSH\_MSG\_IGNORE
DEBUG [SFTPChannelReceiver] 17 Nov 2010 10:17:26.862 : SSH\_MSG\_IGNORE message received
DEBUG [SSH2Connection] 17 Nov 2010 10:17:26.862 : ProcessPacket pt=SSH\_MSG\_DISCONNECT
DEBUG [SFTPChannelReceiver] 17 Nov 2010 10:17:26.862 : **Connection closed: Protocol error: packet too long: 65556. (code=2)**
DEBUG [PlainSocket] 17 Nov 2010 10:17:26.862 : RepeatCallback received 0 bytes
DEBUG [SFTPChannelReceiver] 17 Nov 2010 10:17:26.862 : Connection closed: (code=0)
ERROR [SFTPMessageStore] 17 Nov 2010 10:17:26.862 : Disconnected unexpectedly ( [errorcode=0])
ERROR [SFTPMessageStore] 17 Nov 2010 10:19:26.866 : GetMessage timed out (request id=9)
ERROR [SFTPMessageStore] 17 Nov 2010 10:19:26.866 : EnterpriseDT.Net.Ftp.Ssh.SFTPException: GetMessage timed out (request id=9)
ERROR [SFTPMessageStore] 17 Nov 2010 10:19:26.866 : at 8sIUmhpBqNcVwtTw38F.rkc6rKpGdJEt02Zh4qR.eIbqAVPmT(Int32 )
ERROR [SSHFTPClient] 17 Nov 2010 10:19:26.906 : Failed to close output stream in put()
ERROR [SSHFTPClient] 17 Nov 2010 10:19:26.906 : System.IO.IOException: GetMessage timed out (request id=9)
ERROR [SSHFTPClient] 17 Nov 2010 10:19:26.906 : at BZpriB5x1ETagnfF76y.nfBeYG58XGxo88EWAUG.C7FVGX95i()
ERROR [SSHFTPClient] 17 Nov 2010 10:19:26.906 : at BZpriB5x1ETagnfF76y.nfBeYG58XGxo88EWAUG.Close()
ERROR [SSHFTPClient] 17 Nov 2010 10:19:26.906 : at EnterpriseDT.Net.Ftp.Ssh.SSHFTPClient.sb86jTouD(Stream , String , String , Boolean )
| Packet Too Long Error...... | enterprisedt.com | 2021.17 | [
{
"text": "Set the SSHMaxPacketSize to 32,000.",
"name": "",
"is_accepted": false
},
{
"text": "\n> Set the SSHMaxPacketSize to 32,000.\n\n\n \n\n \nThanks Bruce... All that grumbling around and tinkering and you were able to solve it in 2 seconds. I knew it was probably a setting on the command object.... Just didn't know which property to use! Again, thanks.",
"name": "",
"is_accepted": false
}
] |
189006d4b7fdf8d1f441c85fb6c42609 | Hello!
I trying to run ftps session using example for server and client certificates. Certificates are valid. Whats wrong?.
C:\distr\EdtftpJPro\edtftpj-pro-7.0.0\examples\howto\use\_FTPS\_with\_client\_server\_validation>run.bat 192.168.1.2 username
password C:\lavl\VICA410rootsubroot.txt C:\lavl\client.crt ""
JH="C:\Program Files\Java\jdk1.8.0\_291"
INFO [UseFTPSWithClientServerValidation] 18 ??? 2021 11:00:23.751 : Creating FTPS (explicit) client
INFO [SSLFTPClient] 18 ??? 2021 11:00:23.876 : edtFTPj - PRO version
INFO [LicensePropertiesBase] 18 ??? 2021 11:00:23.938 : Licence expiry date: 14 ??? 2021
INFO [LicensePropertiesBase] 18 ??? 2021 11:00:23.938 : Trial licence
INFO [puretls] 18 ??? 2021 11:00:24.282 : PureTLS debug level=0
INFO [UseFTPSWithClientServerValidation] 18 ??? 2021 11:00:24.313 : Setting configuration flags
INFO [UseFTPSWithClientServerValidation] 18 ??? 2021 11:00:24.313 : Setting remote host
INFO [UseFTPSWithClientServerValidation] 18 ??? 2021 11:00:24.329 : Loading server certificate from C:\lavl\VICA410roots
ubroot.txt
INFO [cryptix] 18 ??? 2021 11:00:24.391 : GLOBAL\_TRACE=false
INFO [cryptix] 18 ??? 2021 11:00:24.391 : GLOBAL\_DEBUG=false
INFO [cryptix] 18 ??? 2021 11:00:24.407 : GLOBAL\_DEBUG\_SLOW=false
INFO [UseFTPSWithClientServerValidation] 18 ??? 2021 11:00:24.548 : Disable host-name checking (only recommended when te
sting)
INFO [UseFTPSWithClientServerValidation] 18 ??? 2021 11:00:24.563 : Loading client key and certificate from C:\lavl\clie
nt.crt with password
INFO [UseFTPSWithClientServerValidation] 18 ??? 2021 11:00:24.594 : Connecting to server 172.22.3.6
INFO [UseFTPSWithClientServerValidation] 18 ??? 2021 11:00:24.735 : Switching to FTPS (explicit mode)
com.enterprisedt.net.puretls.SSLHandshakeFailedException: com.enterprisedt.net.puretls.SSLPrematureCloseException: Short
read
at com.enterprisedt.net.puretls.j.a(SSLConn.java:164)
at com.enterprisedt.net.puretls.SSLSocket.handshake(SSLSocket.java:261)
at com.enterprisedt.net.ftp.ssl.SSLFTPControlSocket.c(SSLFTPControlSocket.java:322)
at com.enterprisedt.net.ftp.ssl.SSLFTPClient.auth(SSLFTPClient.java:1569)
at UseFTPSWithClientServerValidation.main(UseFTPSWithClientServerValidation.java:84)
| ftps with server and client sertificates via EdtftpJPro | enterprisedt.com | 2021.25 | [
{
"text": "We really need a debug log for this. Please set 'All' level logging as shown [here](https://enterprisedt.com/products/edtftpjssl/doc/manual/index.html), and then open a support issue [here](https://enterprisedt.atlassian.net/servicedesk/customer/portal/1).\n\n",
"name": "",
"is_accepted": false
}
] |
61723721fe3434c9d3f8dbb4781d5d01 | Does any version Complete FTP support TLS 1.2 yet? This is becoming important requirement based on Security and Compliance. | Complete FTP TLS specs | enterprisedt.com | 2020.45 | [
{
"text": "Yes, TLS 1.2 has been supported since 8.4.0 (current version at time of writing is 10.0).",
"name": "",
"is_accepted": false
}
] |
ec69833c532a692ad1cd337e55307a8d | INFO [FTPConnection] 20 Sep 2018 19:06:02.214 : FTPConnection.553 OS: 6.2.9200.0, CLR: 4.0.30319.42000, DLL: 9.1.2.20
INFO [FTPConnection] 20 Sep 2018 19:06:02.214 : FTPConnection.553 Built: 13-Jun-2017 19:55:19 BST
INFO [FTPConnection] 20 Sep 2018 19:06:02.214 : FTPConnection.553 OS: 6.2.9200.0, CLR: 4.0.30319.42000, DLL: 9.1.2.20
INFO [FTPConnection] 20 Sep 2018 19:06:02.214 : FTPConnection.553 Built: 13-Jun-2017 19:55:19 BST
DEBUG [FTPConnection] 20 Sep 2018 19:06:02.214 : FTPConnection.553 Set LocalDirectory='D:\local\Temp\jobs\continuous\FileTransferProcess\j0hw0yu2.jr4'
DEBUG [FTPClient] 20 Sep 2018 19:06:02.214 : FTPConnection.553 Connecting to files.whereoware.com:21
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.214 : FTPConnection.553 StrictReturnCodes=False
DEBUG [HostNameResolver] 20 Sep 2018 19:06:02.214 : FTPConnection.553 Resolving files.whereoware.com
DEBUG [HostNameResolver] 20 Sep 2018 19:06:02.214 : FTPConnection.553 Obtained 2 addresses
DEBUG [HostNameResolver] 20 Sep 2018 19:06:02.214 : FTPConnection.553 IP address: 54.156.246.255
DEBUG [HostNameResolver] 20 Sep 2018 19:06:02.214 : FTPConnection.553 IP address: 18.205.54.81
DEBUG [HostNameResolver] 20 Sep 2018 19:06:02.214 : FTPConnection.553 files.whereoware.com resolved to 18.205.54.81
INFO [BaseSocket] 20 Sep 2018 19:06:02.214 : FTPConnection.553 Connecting to 18.205.54.81:21 with timeout 120000 ms
DEBUG [BaseSocket] 20 Sep 2018 19:06:02.214 : FTPConnection.553 Successfully connected to 18.205.54.81:21
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.214 : FTPConnection.553 Setting socket timeout=120000
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.214 : FTPConnection.553 SetSocketTimeout: 120000
INFO [FTPControlSocket] 20 Sep 2018 19:06:02.214 : FTPConnection.553 Command encoding=System.Text.SBCSCodePageEncoding
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.230 : FTPConnection.553 220 Service ready for new user.
DEBUG [FTPConnection] 20 Sep 2018 19:06:02.230 : FTPConnection.553 Connected to files.whereoware.com (instance=573)
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.230 : FTPConnection.553 ---> USER IvystonePFLIntegration
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.230 : FTPConnection.553 331 User name okay, need password for IvystonePFLIntegration.
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.230 : FTPConnection.553 ---> PASS ********
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.355 : FTPConnection.553 230 User logged in, proceed.
DEBUG [FTPConnection] 20 Sep 2018 19:06:02.355 : FTPConnection.553 Successfully logged in
INFO [FTPConnection] 20 Sep 2018 19:06:02.355 : FTPConnection.553 Auto FEAT disabled
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.355 : FTPConnection.553 ---> TYPE I
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.355 : FTPConnection.553 200 Command TYPE okay.
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.355 : FTPConnection.553 ---> PWD
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.355 : FTPConnection.553 257 "/" is current directory.
DEBUG [FTPConnection] 20 Sep 2018 19:06:02.355 : FTPConnection.553 Home directory is '/'
DEBUG [FTPConnection] 20 Sep 2018 19:06:02.355 : FTPConnection.553 DirectoryExists(products)
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.355 : FTPConnection.553 ---> CWD products
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.355 : FTPConnection.553 250 Directory changed to /products
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.355 : FTPConnection.553 ---> CWD /
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 250 Directory changed to /
DEBUG [FTPConnection] 20 Sep 2018 19:06:02.418 : FTPConnection.553 ChangeWorkingDirectory('products')
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 ---> CWD products
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 250 Directory changed to /products
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 ---> PWD
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 257 "/products" is current directory.
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 ---> PASV
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 227 Entering Passive Mode (18,205,54,81,179,59)
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 Server supplied address=18.205.54.81
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 Server supplied port=45883
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 autoPassiveIPSubstitution=True
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 remoteAddr=18.205.54.81
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 Substituting server supplied IP (18.205.54.81) with remote host IP (18.205.54.81)
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 NewPassiveDataSocket(18.205.54.81,45883)
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 SetSocketTimeout: 120000
INFO [BaseSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 Connecting to 18.205.54.81:45883 with timeout 120000 ms
DEBUG [BaseSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 Successfully connected to 18.205.54.81:45883
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 Connected
DEBUG [FTPDataSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 SetSocketTimeout: 120000
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.418 : FTPConnection.553 ---> STOR MDW\_Ivystone\_products.txt
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.433 : FTPConnection.553 150 File status okay; about to open data connection.
ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 Caught exception Unable to write data to the transport connection: An existing connection was forcibly closed by the remote host.
DEBUG [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 Closing source stream
ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 Caught exception : System.IO.IOException: Unable to write data to the transport connection: An existing connection was forcibly closed by the remote host.
ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 at System.Net.Sockets.NetworkStream.Write(Byte[] buffer, Int32 offset, Int32 size)
ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 at System.IO.BufferedStream.Write(Byte[] array, Int32 offset, Int32 count)
ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 at EnterpriseDT.Net.Ftp.FTPClient.LrIZeBFmPo(Stream , String , Boolean , Boolean )
ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 CAUSED BY - System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host
ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 at System.Net.Sockets.Socket.Send(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags)
ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 at System.Net.Sockets.NetworkStream.Write(Byte[] buffer, Int32 offset, Int32 size)
ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 SystemException in Put(Stream,string,bool) : System.IO.IOException: Unable to write data to the transport connection: An existing connection was forcibly closed by the remote host.
ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 at EnterpriseDT.Net.Ftp.FTPClient.LrIZeBFmPo(Stream , String , Boolean , Boolean )
ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 at EnterpriseDT.Net.Ftp.FTPClient.Put(Stream srcStream, String remoteFile, Boolean append)
ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 CAUSED BY - System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host
ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 at System.Net.Sockets.Socket.Send(Byte[] buffer, Int32 offset, Int32 size, SocketFlags socketFlags)
ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 ERROR [FTPClient] 20 Sep 2018 19:06:02.433 : FTPConnection.553 at System.Net.Sockets.NetworkStream.Write(Byte[] buffer, Int32 offset, Int32 size)
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.433 : FTPConnection.553 Setting socket timeout=500
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.433 : FTPConnection.553 SetSocketTimeout: 500
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.495 : FTPConnection.553 551 Upstream Error During Data Transfer
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.495 : FTPConnection.553 Expected reply codes = [225,226,250] (strict=False)
ERROR [FTPClient] 20 Sep 2018 19:06:02.495 : FTPConnection.553 Exception in ValidateTransferOnError()) : EnterpriseDT.Net.Ftp.FTPException: Upstream Error During Data Transfer (code=551)
ERROR [FTPClient] 20 Sep 2018 19:06:02.495 : FTPConnection.553 ERROR [FTPClient] 20 Sep 2018 19:06:02.495 : FTPConnection.553 at EnterpriseDT.Net.Ftp.FTPControlSocket.ValidateReply(FTPReply reply, String[] expectedReplyCodes)
ERROR [FTPClient] 20 Sep 2018 19:06:02.495 : FTPConnection.553 ERROR [FTPClient] 20 Sep 2018 19:06:02.495 : FTPConnection.553 at EnterpriseDT.Net.Ftp.FTPClient.ValidateTransfer()
ERROR [FTPClient] 20 Sep 2018 19:06:02.495 : FTPConnection.553 ERROR [FTPClient] 20 Sep 2018 19:06:02.495 : FTPConnection.553 at EnterpriseDT.Net.Ftp.FTPClient.ValidateTransferOnError()
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.495 : FTPConnection.553 Setting socket timeout=120000
DEBUG [FTPControlSocket] 20 Sep 2018 19:06:02.495 : FTPConnection.553 SetSocketTimeout: 120000 | Upstream Error During Data Transfer: Unable to write data to the transport connection. Connection was forcibly closed. | enterprisedt.com | 2020.05 | [
{
"text": "Most likely a firewall closing the data connection for the transfer.",
"name": "",
"is_accepted": false
}
] |
18950cb13a1f2bc204567f14a067d5b4 | Hello,
We are using edtFTPnetPRO, Version=9.4.0.40. When connecting via sftp to a host we are seeing the Connection fails to Close before the timeout makes that happen.
So call to Close() does not return before the timeout.
Please advise.
Thanks,
Abhishek. | Connection fails to "Close" | enterprisedt.com | 2021.43 | [
{
"text": "It sounds like the server is failing to acknowledge the client’s request to close the connection. The Close method has an override that takes a boolean argument. If you pass true for this argument then the client doesn’t wait for the server’s response before closing the connection. This should fix your problem. Although the protocol specification does state that the client should wait for a response before closing the socket, we’ve never encountered a server that enforces this, so it should be completely safe to close it without awaiting a response.\n\n",
"name": "",
"is_accepted": false
}
] |
4a93727f372b2035c9dbdd48a326c520 | When used with Java 7, some people are seeing an IOException saying "Connection reset" after the PASV or PORT commands are sent.
This is the Windows firewall blocking Java 7 when it sees these commands sent on a socket. Normally, the Windows firewall prompts to add a newly installed program. But in this case it doesn't seem to happen - we aren't sure why.
User, yetikov, on the Netbeans forum [reports](http://forums.netbeans.org/post-115176.html#115176) that the following command will fix the problem:
```
netsh advfirewall set global StatefulFTP disable
```
We have also had a report that ZoneAlarm can cause this problem - again, it did not prompt to stop blocking.
A bug report has been submitted to Sun/Oracle - [http://bugs.sun.com/bugdatabase/view\_bu ... id=7077696](http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7077696)
You can help bring attention to the problem by voting it up [here](http://bugs.sun.com/bugdatabase/addVote.do?bug_id=7077696). | Connection reset exception with Java 7 | enterprisedt.com | 2020.34 | [
{
"text": "Microsoft has publicly released a [hotfix](http://support.microsoft.com/kb/2754804). They imply that the fix will be included in a general software update in the future:\n \n\n> if you are not severely affected by this problem, we recommend that you wait for the next software update that contains this hotfix.\n\n\n \n\n \n- Hans (EnterpriseDT)",
"name": "",
"is_accepted": true
}
] |
5367fd7dd6a3ad04172fd6c1f1302301 | ok, I've managed to cobble together the following test program:
```
import java.io.*;
import com.enterprisedt.net.ftp.*;
public class ftptst {
public static void main(String[] args)
throws IOException, FTPException
{
// FTPClient ftp = new FTPClient("192.168.0.2");
FTPClient ftp = new FTPClient("ftp.arix.com");
ftp.login("anonymous", "");
String[] list = ftp.dir();
print(list);
ftp.quit();
}
private static void print(String[] list) {
System.out.println("Directory listing:");
for (int i = 0; i < list.length; i++)
System.out.println(list[i]);
System.out.println("Listing complete");
}
}
```
but when I run it I get the exception shown in the subject of this posting.. as is evident, I've tried the FTPClient() constructor with \_both\_ a name and an IP address. what is wrong with the code? (yes I do have an ftp server at that address)
please e-mail me ([[email protected]](mailto:[email protected])). thx - ekkis | Security: Bad IP connecting. | enterprisedt.com | 2021.04 | [
{
"text": "I don't know what the problem is, but some suggestions:\n \n\n \n1. Supply an email address as password for anonymous\n \n2. Try the identical commands in a command-line client\n \n3. Post the stack trace for us to look at\n \n\n \n\n> ok, I've managed to cobble together the following test program: \n> \n> ```\n> import java.io.*;\n> import com.enterprisedt.net.ftp.*;\n> \n> public class ftptst {\n> public static void main(String[] args)\n> throws IOException, FTPException\n> {\n> // FTPClient ftp = new FTPClient(\"192.168.0.2\");\n> FTPClient ftp = new FTPClient(\"ftp.arix.com\");\n> ftp.login(\"anonymous\", \"\");\n> \n> String[] list = ftp.dir();\n> print(list);\n> \n> ftp.quit();\n> }\n> \n> private static void print(String[] list) {\n> System.out.println(\"Directory listing:\");\n> for (int i = 0; i < list.length; i++)\n> System.out.println(list[i]);\n> System.out.println(\"Listing complete\");\n> }\n> }\n> \n> ```\n> \n> but when I run it I get the exception shown in the subject of this posting.. as is evident, I've tried the FTPClient() constructor with \\_both\\_ a name and an IP address. what is wrong with the code? (yes I do have an ftp server at that address) \n> \n> please e-mail me ([[email protected]](mailto:[email protected])). thx - ekkis\n\n",
"name": "",
"is_accepted": false
}
] |
663220466214a4beba7426fb82cd7d06 | How can I generate a certificate signing request? | How can I generate a certificate signing request? | enterprisedt.com | 2020.05 | [
{
"text": "You need a CSR to obtain a trusted certificate from one of the many certificate providers. \nFrom 6.4.0, CompleteFTP supports generation of CSRs from within the CompleteFTP Manager. \nMore details can be found in the User Guide, [here](http://www.enterprisedt.com/products/completeftp/doc/guide/html/howtocsr.html). \nMake sure you keep your private key securely! The CSR can be sent to the certificate authority (CA) that you have chosen to use. The private key is NOT sent to the certificate authority. \nBefore you send the CSR to your chosen CA, you can validate it by pasting it into [Verisign's CSR checker](https://ssl-tools.verisign.com/checker). \nWhen you get the certificate issued, for InstantSSL choose the \"OTHER\" format.\n\n",
"name": "",
"is_accepted": true
}
] |
84b7ad6398e252530771f292aa5df80c | Hi,
I am using your FTPClient in my project to make an automatic ftp update. I have a problem.
I have recoded your chdir method to use CD instead of CWD. The problem is that even though everything seems fine when I debug, I can never get the chdir command to work. The response code I get is the same as when I test on a DOS ftp client and use a quote command instead of a CD command directly ('CD ': command not understood).
Do you have a tip to how I can overcome this problem?
Thanx,
Morten | Send command fails | enterprisedt.com | 2021.04 | [
{
"text": "I'm not sure why you needed to recode chdir()? CD isn't an FTP command, that's probably why it is not understood by the server.\n \n\n \n\n> Hi, \n> \n> I am using your FTPClient in my project to make an automatic ftp update. I have a problem. \n> \n> I have recoded your chdir method to use CD instead of CWD. The problem is that even though everything seems fine when I debug, I can never get the chdir command to work. The response code I get is the same as when I test on a DOS ftp client and use a quote command instead of a CD command directly ('CD ': command not understood). \n> \n> Do you have a tip to how I can overcome this problem? \n> \n> \n> Thanx, \n> \n> Morten\n\n",
"name": "",
"is_accepted": false
},
{
"text": "Thank you for you quick reply :)\n \n\n \nI tried with the CWD command that was in the code originally but that also failed. The reason seems to be that my FTP server doesn't support this. In the list of commands I get when typing help includes CD but not CWD.\n \n\n \n\n \nMorten",
"name": "",
"is_accepted": false
},
{
"text": "I have included some more info here:\n \n\n \nI am not sure of the make of the FTP server, but here is the welcome message:\n \n\n \n**220 FTP server (Version 5.311PWS/AI) ready**.\n \n\n \nHere are the available commands:\n \n\n \n**! delete literal prompt send \n? debug ls put status \nappend dir mdelete pwd trace \nascii disconnect mdir quit type \nbell get mget quote user \nbinary glob mkdir recv verbose \nbye hash mls remotehelp \ncd help mput rename \nclose lcd open rmdir**[/b]",
"name": "",
"is_accepted": false
},
{
"text": "The available commands look like the client-side commands, not the server ones.\n \n\n \nThe best way to find out the FTP server commands is to ftp to it via a command line tool (e.g. ftp in Windows).\n \n\n \nOnce logged in, type \n \n\n \ndebug\n \n\n \nto get into debug mode.\n \n\n \nThen cd to a directory, you'll see something like\n \n\n \n--> CWD directory\n \n\n \nappear as all commands sent to and from the server are shown in debug mode.\n \n\n \nThis should show you what command is actually sent when you cd\n \n\n \n\n \n\n> I have included some more info here: \n> \n> I am not sure of the make of the FTP server, but here is the welcome message: \n> \n> **220 FTP server (Version 5.311PWS/AI) ready**. \n> \n> Here are the available commands: \n> \n> [/b]\n\n",
"name": "",
"is_accepted": false
}
] |
6011a3dbf90645b75c085d6d300d9287 | How do I back up my CompleteFTP data? | How do I back up my CompleteFTP data? | enterprisedt.com | 2020.05 | [
{
"text": "By default all data used by CompleteFTP is stored in a subdirectory of ProgramData (Vista/2008 and later) or the \"All Users\" data directory (Windows XP/2003 and earlier), so backing up this directory is all that is required. \n \nIf you have set up the virtual file-system to access any other directories then of course these must be backed up separately. \n \nOn Windows XP/2003 and earlier:\n\n\n```\nC:\\Documents and Settings\\All Users\\Application Data\\Enterprise Distributed Technologies\\Complete FTP\n```\nOn Vista/2008 and later:\n\n\n```\nC:\\ProgramData\\Enterprise Distributed Technologies\\Complete FTP\n```\nTwo other ways to locate the directory: \n \n1. Open Windows Explorer and type \"%ALLUSERSPROFILE%\\Enterprise Distributed Technologies\\Complete FTP\". \n \nOR \n \n2. From the Windows Start menu open \"CompleteFTP\" and then \"Log Files\". This opens the Logs directory in Windows Explorer. Go up one directory.\n\n",
"name": "",
"is_accepted": true
}
] |
9914f1ba3d4a3e2e937e111f213ab396 | Hi,
I'm currently looking into making the process of creating accounts a little easier & have briefly looked into scripting, but am a bit confused about how we can transfer variables from powershell into the enterprise editions command line via SSH.
All of the accounts we create have two users with their three letter abbreviation followed by either .more2 for internal use or .user for external use. I would like to set it up so that the only characters a user has to enter while running the script is the three letter abbreviation & the script will create the rest.
Do you have any ideas on how to achieve this? | Scripting User Creation | enterprisedt.com | 2020.45 | [
{
"text": "Powershell now includes an SSH client, so you can ssh to the Admin site as described [here](https://enterprisedt.com/products/completeftp/doc/guide/html/commandadmin.html) and run commands such as **useradd**. \n\n",
"name": "",
"is_accepted": false
}
] |
d4214c0822a44d5abb1f6d5e606d4e6d | Hi,
how can I use the progressbar?
Do you have an example? In the test-files I found something like:
ftp.setProgressMonitor(new TestProgressMonitor(), 2048);
This does not work. Did I forget to import something or where is the problem?
Thanx for an answer!
S | ProgressBar | enterprisedt.com | 2021.04 | [
{
"text": "You need to write a class that implements the FTPProgressMonitor interface, e.g. MyProgressMonitor implements FTPProgressMonitor ....\n \n\n \nThen\n \n\n \nFTPProgressMonitor monitor = new MyProgressMonitor();\n \nftp.setProgressMonitor(monitor, 2048);\n \n\n \nmonitor.bytesTransferred() will be called every 2048 bytes transferred.\n \n\n \n\n \n\n> Hi, \n> \n> how can I use the progressbar? \n> Do you have an example? In the test-files I found something like: \n> \n> ftp.setProgressMonitor(new TestProgressMonitor(), 2048); \n> \n> This does not work. Did I forget to import something or where is the problem? \n> \n> Thanx for an answer! \n> \n> S\n\n",
"name": "",
"is_accepted": false
},
{
"text": "Thanx very much.",
"name": "",
"is_accepted": false
}
] |
728b52650937eefe17b1a39f9be8decb | How to give user to **save files where he want to save files java**
Thanks for u r support, | how to give user to save files where he want to save files | enterprisedt.com | 2021.04 | [
{
"text": "Use a full path for the local file.",
"name": "",
"is_accepted": false
}
] |
f619a648e95d0f7fc4d4237cfe615cd1 | How to disable support for TLS 1.0 & 1.1 on CompleteFTP?
We are using pretty old version (8.5.1) but it already supports 1.2
Thanks & Regards
Mikhail | How to disable support for TLS 1.0 & 1.1 on CompleteFTP? | enterprisedt.com | 2021.04 | [
{
"text": "Hi, \n\n \n\nYou should really update the software. Running old versions of software can be a security risk. We are now at CompleteFTP version 13.1.0. \n\n \n\nYou can set the minimum TLS which should be used under: \n\n \n\n settings (or sites) > HTTP/HTTPS > Advanced HTTP/HTTPS settings > Security Settings (also used in FTPS) > Minimum SSL Version > set the value to TLS 1.2 \n\n \n\nPlease note that setting this value to TLS 1.2 will only allow clients to connect to the server who are also running TLS 1.2. If any of your clients use older legacy machine which only support TLS 1.0. or 1.1 then they will no longer be able to connect to CompleteFTP.",
"name": "",
"is_accepted": false
}
] |
bb07563fbff7473dfe5d86e750a6bad4 | A user wanted to set up a process whereby a new certificate from Let's Encrypt could be automatically installed every 3 months. | How do I update CompleteFTP's SSL certificate using a script? | enterprisedt.com | 2021.21 | [
{
"text": "With a bit of guidance from EnterpriseDT, the user was able to solve this problems successfully and, very generously, offered to share his solution with other CompleteFTP users. This is what he wrote:\n\nThis can be done using the following procedure:\n\n1. Must install [SQL Server Compact 3.5 SP2](https://www.microsoft.com/en-us/download/details.aspx?id=5783). I then chose to copy the relevant DLL to my working folder, but you could point it to the installed location of that DLL.\n2. In [this Powershell script](https://enterprisedt.com/uploads/files/InstallCertificate.txt) below, the top section has the items that must be tailored to the environment (mostly file locations)\n3. This assumes that the ACME process (I used win-acme) had already been set up and that you chose to store the PFX file somewhere available to this script. At the end of the win-acme process, it then prompts you to run a script as an installation step. That’s where you would call this script\n\n",
"name": "",
"is_accepted": false
}
] |
ce23d976589f185cda1aac250c21e88a | I | The client and server could not agree on the protocol | enterprisedt.com | 2021.04 | [
{
"text": "If you enable logging at the Debug level and post the relevant snippet around this error that should explain the problem. It is probably incompatible versions of TLS.",
"name": "",
"is_accepted": false
},
{
"text": "As I mentioned before, what we need it",
"name": "",
"is_accepted": false
},
{
"text": "Here is the problem: \n \n\n> Local min SSL version: 3.1, max SSL version: 3.2 \n> Remote SSL version: 3.0 \n> \n\n \n \nSet the SSLVersion property to SSLFTPSSLVersion.SSL3",
"name": "",
"is_accepted": false
},
{
"text": "Thanks for the support.. \n \nIm starting to use this product... where do I have to \"Set the SSLVersion property to SSLFTPSSLVersion.SSL3\" ?? \n \nIt",
"name": "",
"is_accepted": false
},
{
"text": "All the documentation is installed with the product - take a look at the User Guide. \n \n\n```\nSecureFTPConnection ftp = new SecureFTPConnection();\nftp.SSLVersion = SSLFTPSSLVersion.SSL3;\n\n```\n",
"name": "",
"is_accepted": false
}
] |
e9c47146f9c51856bbe02a463e5f23b7 | A customer asked:
> How can we get a log of the exact commands sent by clients connecting to our CompleteFTP server? The INFO logs are not detailed enough, and the DEBUG logs provide way too much under the hood info. When troubleshooting with our customers, we need to just see the commands that they are sending. This is a crucial to troubleshooting a wide variety of clients connecting to our server.
>
>
| Getting a log of client commands and responses | enterprisedt.com | 2020.34 | [
{
"text": "Yes, you can do this.\n\nPlease follow the instructions in [How to log to syslog](https://enterprisedt.com/products/completeftp/doc/guide/html/syslog.html), except in step 2 instead of pasting in the appender definition for Syslog, use the following appender definition:\n\n\n```\n`<appender name=\"Commands\" type=\"log4net.Appender.RollingFileAppender\">\n <encoding value=\"utf-8\" />\n <filter type=\"log4net.Filter.StringMatchFilter\">\n <stringToMatch value=\"CMD\" />\n <acceptOnMatch value=\"true\" />\n </filter>\n <filter type=\"log4net.Filter.StringMatchFilter\">\n <stringToMatch value=\"SSH_FXP\" />\n <acceptOnMatch value=\"true\" />\n </filter>\n <filter type=\"log4net.Filter.DenyAllFilter\" />\n <file type=\"log4net.Util.PatternString\">\n <converter>\n <name value=\"folder\" />\n <type value=\"EnterpriseDT.Util.Debug.SpecialFolderPatternConverter\" />\n </converter>\n <conversionPattern value=\"%folder{CommonApplicationData}\\Enterprise Distributed Technologies\\Complete FTP\\logs\\Commands.log\" />\n </file>\n <param name=\"AppendToFile\" value=\"true\" />\n <param name=\"RollingStyle\" value=\"Date\" />\n <param name=\"DatePattern\" value=\".yyyyMMdd\" />\n <layout type=\"log4net.Layout.PatternLayout\">\n <param name=\"Header\" value=\"\" />\n <param name=\"Footer\" value=\"\" />\n <param name=\"ConversionPattern\" value=\"%date{dd MMM yyyy HH:mm:ss} %message %newline\" />\n </layout>\n</appender>`\n```\nand instead of referencing Syslog in definition of <root>, use the following:\n\n\n```\n`<appender-ref ref=\"Commands\" />`\n```\nI have to warn you that running CompleteFTP with debug logging slows it down because I writes so much logging. I therefore recommend that you **only set it to Debug level when you’re trying to diagnose a problem** and leave it at Information otherwise.\n\n",
"name": "",
"is_accepted": true
}
] |
083212b9339cebec76bd7dd7b8d01835 | Hello,
I 'm very happy with your ftp component :-)
But why don't you permit chmod , or the creation of directory (mkdir) with the same rights as the parent directory ?
Regards.
Kevin. | chmod | enterprisedt.com | 2021.04 | [
{
"text": "Hi Kevin\n \n\n \n'chmod' is not part of the FTP standard (see <http://www.freesoft.org/CIE/RFC/959/23.htm>) so it would not be supported by many (any?) servers. Which server are you using?\n \n\n \n- Hans (EDT Support)",
"name": "",
"is_accepted": false
},
{
"text": "You can use quote() to send any command to an FTP server so this is a possible option for you.",
"name": "",
"is_accepted": false
},
{
"text": "thank you for your answers :-)\n \nit works fine with quote().\n \nI'm going to make the promotion of edtftpnet.\n \nThe control is great and the support efficient.\n \nRegards.\n \nKevin.",
"name": "",
"is_accepted": false
}
] |
f2d9d4d1622f72c5472c76d0f460f025 | We use SSHFTPClient to connect to the SFTP server. We need to configure proxy settings for the same. But the SCPClient.setProxyParams is deprecated. So please let us know how to set proxy settings in SSHFTPClient.
| Set Proxy settings for SFTP server | enterprisedt.com | 2019.51 | [
{
"text": "Use **getProxySettings()** to get a reference to the ProxySettings object and set its properties.\n\n",
"name": "",
"is_accepted": false
}
] |
7aa7c4f639b9d7b3d7fad053cbd6c298 | Product: Complete FTP 9.1.3
I am integrating anti-virus scans into the FTP product and have them configured to trigger when a file is uploaded. However I want the anti virus scan to trigger last, after every other event matching the path filter has already executed.
When I was playing with the order of operations of the event (process?) triggers it didn't seem to matter much which order I placed the triggers, instead the trigger created last always seemed to execute last.
This will be an overhead to maintain if I do require the AV scan to execute last, as I would be always creating and destroying the AV scan event when I need to add a new trigger for some other action.
So questions:
1. Is there any way to make a particular event trigger execute in a particular order of precedence?
2. Is there a way to make an event trigger invoke another event trigger? | How do I change the order of operation of Event Triggers? | enterprisedt.com | 2020.29 | [
{
"text": "We've confirmed that this is a bug. It will be fixed in the next release, which is due mid-April. If you need a fix before that then we can send you a test build. Please contact [support](https://enterprisedt.com/help) if you'd like a build.\n\n\nThank you for reporting this problem.\n\n",
"name": "",
"is_accepted": false
}
] |
b33a2ad5940d5e3ead8f588cfb2bddc1 | Hello,
I have issues using the FileManager plug in for "Windows" type users.
When I login I'm redirected to my home virtual folder via the standard listing templates, and all my subfolders work correctly, however I'm not redirected automatically to the /FileManager/ plugin.
If I manually try to enter the the the /FileManager/ plugin path I get the following error:
--------------------------------------------------------------------
401 Unauthorized
Error while accessing /FileManager/: Permission to web-app denied
--------------------------------------------------------------------
Any idea if the filemanager doesn't support "Windows" type users or if there is a way to give FileManager permissions to the "Windows" user?
Thanks
Kind Regards
Nirv80 | Error while accessing /FileManager/: Permission to web-app.. | enterprisedt.com | 2021.04 | [
{
"text": "Could you email your config.sdf file to support at enterprisedt dot com?",
"name": "",
"is_accepted": false
},
{
"text": "\n> Could you email your config.sdf file to support at enterprisedt dot com?\n\n\n \n\n \nActually I resolved the issue myself in the end.\n \n\n \nThe windows user type was created when the file manager plugged in was not enabled so it seems that for that reason after I enabled the file manager plug in the user had no permission to access it.\n \n\n \nDeleting and re-adding the windows type user from complete ftp while the plug in was enabled seems to have fixed this. The plug in now works under the user.\n \n\n \nNirv80",
"name": "",
"is_accepted": false
},
{
"text": "have issues using the FileManager plug in for \"Windows\" type users. \n \nWhen I login I'm redirected to my home virtual folder via the standard listing templates, and all my subfolders work correctly, however I'm not redirected automatically to the /FileManager/ plugin. \n \nIf I manually try to enter the the the /FileManager/ plugin path I get the following error: :roll: :D :(",
"name": "",
"is_accepted": false
}
] |
b91138f37e5708035b37becfb54832d3 | Hello Team,
We are using Version 5.3.2 (22 May, 2019) of edtFTPj/PRO in our SAP landscape to connect to the 3rd party SFTP server. However, we are getting below error.
***exception caught with cause com.enterprisedt.net.j2ssh.transport.TransportProtocolException: The connection did not complete***
The issue seems to be intermittent as sometimes the connection works fine and we are able to send data to the destination.
I would appreciate your help in this issue.
Thanks,
Bobby Nayak
| com.enterprisedt.net.j2ssh.transport.TransportProtocolException: The connection did not complete | enterprisedt.com | 2021.43 | [
{
"text": "What protocol are you using? SFTP? Can you post more of the connection log leading up to the exception?",
"name": "",
"is_accepted": false
}
] |
5b0e88a5cb66dd191c4b6a14d6544fca | Hello there,
I have complate ftp version 11.0.0. how can I enable fips mode in this version? | how to enable ComplateFTP fips mode | enterprisedt.com | 2021.21 | [
{
"text": "You can't. FIPS mode is not supported. More information is [here](https://enterprisedt.com/questions/index.php/2233/is-completeftp-fips-140-certified). \n\n",
"name": "",
"is_accepted": false
}
] |
1cb7fbc513e46ba68e5057c8e5a6657c | I began running the Complete FTP Server under a Windows service account rather than the Local System account. As a result, one of our vendors was not able to push files to our server. The error message from the log is: 2021-03-10 02:53:26,937 DEBUG WindowsAdapter [Session.168:Default Site:FidelityProd:155.199.204.69] Exception thrown while complete-ftp was accessing 629\_RMD\_20210309.DAT - System.UnauthorizedAccessException:Access to the path 'C:\SFTP\Fidelity Prod\629\_RMD\_20210309.DAT' is denied.
This change only affected one vendor and not others.
Any ideas why this would have happened?
Thanks,
Bob | Vendor access to SFTP file path denied after change from Local Service to Windows Service Account | enterprisedt.com | 2021.17 | [
{
"text": "CompleteFTP's configuration file contains sensitive information such as password hashes and certificates. Accordingly, some filesystem security restrictions are applied to this file (typically C:\\ProgramData\\Enterprise Distributed Technologies\\Complete FTP\\config.sdf), and the associated backup directory (C:\\ProgramData\\Enterprise Distributed Technologies\\Complete FTP\\backup). Access is configured for Administrators, the default account for the CompleteFTP service (the local SYSTEM user) and the installer.\n\nUsers who have changed the 'log on' user of the CompleteFTP service from the default (i.e. local SYSTEM user) may need to manually configure Windows file permissions after installation by giving full control of the configuration file and backup directory to the new log on user.\n\n",
"name": "",
"is_accepted": true
}
] |
97d0fb35c72e639f14cc0153784d5790 | We've been using edtFTPj successfully for years. However, recently we ran into "451 Transfer aborted. Broken pipe" errors when performing "dir" on an FTP server. The reason was that the FTP directory contained an unusual amount of files (about 2000). We solved our problem on short term by temporarily moving away files from the FTP server and subsequently feeding them back in "digestable" chunks of 200.
We turned on tracing and reproduced the problem to find the cause of the "451 Transfer aborted. Broken pipe" errors. Client and server logs are provided here: <http://pastebin.com/vL2YtDXb. According> to our analysis, this is what happens:
1. edtFTPj successfully connects to the FTP server. It opens a control port (21) which will remain open for the entire FTP session.
2. Our application wants to list the FTP directory, *however at maximum 10 files*. This is implemented like this:
1. Application calls com.enterprisedt.net.ftp.FileTransferClient.directoryList() passing an own DirectoryListCallback implementation (DirCallback.java).
2. edtFTPj sets off the DIR command and receives the directory contents over a data socket (cf. com.enterprisedt.net.ftp.FTPClient.dir())
3. FTP server writes directory contents into the data socket, each entry is one line
4. FTPClient.dir() reads the data socket line by line and uses the application's DirectoryListCallback implementation ("DirCallback") to process them (cf. while loop at FTPClient.java:3806)
1. DirCallback calls DirectoryListArgument.abortListing() after the 10th entry; this makes FTPClient.dir() leave the while loop
2. FTPClient.dir() closes the data socket and reads the FTP Reply code from the control socket, expecting one of 226 or 250 (FTPClient.java:3831 and 3837)
==> normally everything is fine and the server sends 226 or 250
==> but if there are "too many" files on the FTP server, it sends a 451 (Transfer aborted. Broken pipe).
The 451 error seems to occur when ever edtFTPj closes the data socket *before* the server managed to write all the directory contents into the data stream. The larger the directory contents, the more likely the 451 error occurs. In fact, if we increase the maximum size of files to read from 10 to 1000, we can successfully read large directories.
==> A possible solution for this problem is to make FTPClient.dir() accept 451 (addtitionally to 226 and 250) as a valid code after closing the data socket (FTPClient:3835). Maybe this could be configurable.
This feature is necessary, because the current design doesn't allow us to solve the problem ourselves: We could subclass FTPClient.java and override dir(), but we coundn't use it in FileTransferClient.java (private field "ftpClient" without setter).
**Facts**:
* FTP client: edtFTPj-2.4.0.jar (OS: AIX 6.1)
* FTP Server: ProFTPD 1.3.4b (maint) (OS: GNU/Linux x86\_64))
**Logs**: <http://pastebin.com/vL2YtDXb>
| 451 "Broken pipe" when reading large directories with edtFTPj | enterprisedt.com | 2021.10 | [
{
"text": "So you only want 10 files from the listing? How do you know what files you want?",
"name": "",
"is_accepted": false
}
] |
8bffe3cf646276d0e56308fdf851c8e6 | Does EnterpriseDT SFTP support SysaxSSH\_1.4? Are there any known issues with SysaxSSH\_1.4? | enterprisedt.com | 2020.16 | [
{
"text": "There shouldn't be any issues using edtFTPj/PRO with SysaxSSH.",
"name": "",
"is_accepted": false
}
] |
|
4070e27729fd6f3bb7e022dfbf0d2898 | I've read through your doc about how to specify what algorithms (RSA or DSA) you can ask the server to use when host validation is turned on. We would like to accept both (which I think is the default). However, similar to FTPS where you can specify a minimum TLS version needed before allowing the connection, we would like to specify a minimum key size (in this case 2048) as part of validating the SFTP host that we are connecting to. I did not see anything in the doc for how to do this (note that I'm using the multi-protocol client for these connections).
Is this even possible with the current release I have (5.3.0)? if not, is this something you could add in a future release? | Can I specify a minimum key size when validating hosts using the known\_hosts file? | enterprisedt.com | 2020.10 | [
{
"text": "There's a class called SSHFTPValidator that you can extend as described [here](https://enterprisedt.com/products/edtftpjssl/doc/manual/html/howtousesftpwithservervalidationauto.html). You override the validate method. In here you could check the keysize and return false if it isn't large enough. You are supplied with the SSHFTPPublicKey which has a method getBitLength().\n\n",
"name": "",
"is_accepted": true
}
] |
f60aeb2be97cecf141692b4ed1dd0e0a | Is CompleteFTP FIPS-140 certified? | Is CompleteFTP FIPS-140 certified? | enterprisedt.com | 2020.05 | [
{
"text": "People often ask us if CompleteFTP is FIPS-140 certified. \n \nThe answer is no, but from from version 6.3.0, CompleteFTP will run correctly when *Use FIPS compliant algoritms for encryption, hashing, and signing*, is enabled on the Windows machine it is installed on. Applications are permitted to disable FIPS compliance, and CompleteFTP does this so that it can still be run. \n \nKarl Levinson at SecLists.Org [outlines](http://old.nabble.com/Re%3A-How-important-is-FIPS-140-2-Level-1-cert--td8129113.html) the reasons why we have chosen not to pursue FIPS-140 compliance. \n \nThis quote explains the main reason why our products are not FIPS-140 certified:\n\n\n> FIPS certification is probably expensive and time consuming for the vendor, so that the products that get it would tend to be older products from larger, more monolithic companies, which may not necessarily guarantee you're getting superlative security.\n> \n> \n\nAnd here's an illustration of how FIPS-140 certification can actually result in a lower level of security:\n\n\n> With MS Windows, for example, you probably don't want to enable \"FIPS-compliant encryption mode,\" because an older, weaker encryption algorithm will be used for EFS disk encryption, rather than newer, stronger but uncertified protocols.\n> \n> \n\n- Hans Andersen (EnterpriseDT)\n\n",
"name": "",
"is_accepted": true
}
] |
2890abcab05453767bd0ff597fd0166c | Is there a way to add multiple groups to a folder or plans to support this in the future | enterprisedt.com | 2021.25 | [
{
"text": "There are no immediate plans to do this. CompleteFTP uses the Linux model of permissions, which can handle most use-cases. If you describe your needs we may be able to suggest an alternative solution that doesn't rely on multiple groups.",
"name": "",
"is_accepted": false
}
] |
|
4535c39532276f4e71dbb6a94c34756c | How can I retain more log files? | How can I retain more log files? | enterprisedt.com | 2020.05 | [
{
"text": "Currently up to 20 log files are retained, 5 MB in size each. To keep log files longer, there are a few options. They are controlled via the service configuration file, which (depending on your installation) can be found at: \n \nC:\\Program Files (x86)\\Complete FTP\\Server\\CompleteFTPService.exe.config \n \nLook for the <log4net> section, and then the RollingFileAppenders. \n \nYou can do a number of things here: \n \n1. Increase MaxSizeRollBackups to a number higher than 20 \n \n2. Increase the MaximumFileSize \n \nAlternatively, you can \n \n3. Change the RollingStyle from Size to Date, and add a DatePattern, e.g. \n \n<param name=\"RollingStyle\" value=\"Date\" /> \n<param name=\"DatePattern\" value=\".yyyyMMdd\" /> \n \nIf you are more adventurous, you can investigate other [log4net](http://logging.apache.org/log4net/release/config-examples.html) configuration options. \n \nPlease note that the CompleteFTP service will need to be restarted after making any configuration file changes. \n \nNote also that all files in the *C:\\Program Files (x86)\\Complete FTP* directory are overwritten each time you install an update, so you'll need to reapply your modifications after installation.\n\n",
"name": "",
"is_accepted": true
}
] |
64b0f4106e78b21a6f028ca342654d06 | How do I upgrade CompleteFTP? | How do I upgrade CompleteFTP? | enterprisedt.com | 2020.05 | [
{
"text": "All configuration data will be retained during the upgrade, but it is of course always a good idea to keep backups (see [here](http://enterprisedt.com/questions/index.php/2423/how-do-i-back-up-my-completeftp-data)). You can also test the upgrade on a different machine as explained [here](http://enterprisedt.com/questions/index.php/11604/how-can-i-test-that-a-new-release-works-for-my-server). \n\n\n \n\n**Instructions:**\n\n\n1. Download the latest version of CompleteFTP from our [customer site](https://connect.enterprisedt.com), using the link and login details you received after you purchased your license. If you don't have access to this then please [contact support](http://enterprisedt.com/support/contact/).\n2. Exit the CompleteFTP manager if it is running (no need to stop the CompleteFTP service).\n3. Install the new version.\n\n\nPlease note that **the trial distribution cannot be used to upgrade a licensed installation**.\n\n\nIf for some reason the upgrade fails, you can easily [roll back](http://enterprisedt.com/questions/index.php/11644/how-can-i-roll-back-to-an-earlier-version-of-completeftp) to the previous installation. \n\n",
"name": "",
"is_accepted": true
}
] |
96b70297750527df2a96d97cf53fba52 | The client has support for the following algorithms and I need to know if version 9.1.2 of edtftpnetPRO.dll on server side will support file transfer.
Please let me know if version 9.1.2 of /PRO supports any of the following:
ecdh-sha2-nistp256
ecdh-sha2-nistp384
ecdh-sha2-nistp521
diffie-hellman-group-exchange-sha256
diffie-hellman-group16-sha512
diffie-hellman-group18-sha512
diffie-hellman-group14-sha256
| Does edtftpnetpro.dll Version 9.1.2 support any of the following key exchange algorithms? | enterprisedt.com | 2019.51 | [
{
"text": "The only one which is supported from your list in version 9.1.2. is: \n\n \n\ndiffie-hellman-group-exchange-sha256",
"name": "",
"is_accepted": true
}
] |
dfe32a48e5fecd71b109b07c9b5e4233 | How to use the production license? | How to use the production license | enterprisedt.com | 2020.34 | [
{
"text": "Details on how to use the license details that are emailed to customers can be found [here](http://enterprisedt.com/products/edtftpjssl/doc/manual/html/howtousethelicensefile.html).\n\n",
"name": "",
"is_accepted": true
}
] |
fc630463ed0532e522e05c660bb0aa91 | 1]When I have put the following property with JVM\_ARGS then logs written for **FTP** server but not for **SFTP** server.
**-Dcom.magicsoftware.ibolt.ftpwrapper.IBFTPClient.trace=true**
2]when I have created following change in our application code after creating the object of **SSHFTPClient** then logs have written in stdout file for SFTP server.
**SSHFTPClient sshFtpClient=new SSHFTPClient();**
**Logger.setLevel(Level.DEBUG);**
here my question is that I don't want to change in code please give me any configuration setting by which I will able to get logs for **SFTP** server also.
| Logs are written with FTP server but not written with SFTP server | enterprisedt.com | 2020.10 | [
{
"text": "Please see the User Guide [here](https://enterprisedt.com/products/edtftpjssl/doc/manual/html/howtosetuplogging.html) for details on how to enable logging in edtFTPj/PRO.\n\n",
"name": "",
"is_accepted": false
}
] |
b2e48291e73c7ed2404d67a6e4d17faf | Is CompleteFTP PCI DSS compliant? | Is CompleteFTP PCI DSS compliant? | enterprisedt.com | 2020.05 | [
{
"text": "The [PCI DSS](https://www.pcisecuritystandards.org/documents/pci_dss_v2.pdf) (Payment Card Industry Data Security Standard) is the data security standard for the payment process industry. Developed and maintained by the major credit card companies via the PCI Security Standards Council, it is relevant for merchants, processors, acquirers, issuers and service providers. \nEssentially, PCI DSS is a set of minimum requirements designed to protect cardholder data. It has 12 major requirements, not all directly relevant to secure file transfer. FTP servers can't be PCI DSS compliant as such - they instead can help organizations to achieve PCI DSS compliance in conjunction with network security measures and policies and other technologies. \nWhen used correctly, CompleteFTP can help you achieve PCI DSS compliance in your organization. The PCD DSS requirements addressed by CompleteFTP are listed below: \n \n**Requirement 1: Install and maintain a firewall configuration to protect cardholder data** \n \nKeep your CompleteFTP installation behind a firewall. Use the IP filtering capabilities of CompleteFTP to only permit the IP addresses you want to access the server. \n \n**Requirement 2: Do not use vendor-supplied defaults for system passwords and other security parameters** \n \nDisable anonymous access. Configure the CompleteFTP manager to use a secure protocol such as SFTP or FTPS for administrative tasks. Disable HTTP and FTP protocols. For HTTPS, ensure public HTTP access flag is disabled. Hide the server product details (messages setting) to hide the version and name of the product from clients. \n \n**Requirement 3: Protect stored cardholder data.** \n \nDisable SSH terminal access. Periodically change keys. Where cardholder data is stored, encrypt it using PGP or a similar tool. \n \n**Requirement 4: Encrypt transmission of cardholder data across open, public networks.** \n \nDisable HTTP and FTP protocols, and only permit secure protocols: FTPS, SFTP and SCP. \n \n**Requirement 8: Assign a unique ID to each person with computer access.** \n \nDisable anonymous access. Disable automatic Windows users. \n \n**Requirement 10: Track and monitor all access to network resources and cardholder data.** \n \nCompleteFTP supports auto-banning of accounts or IP addresses that connect unsuccessfully. CompleteFTP has an audit log that should be regularly inspected.\n\n",
"name": "",
"is_accepted": true
}
] |
d900aa268e94fe3e47ec9fa896f94955 | Using SFTP, different target systems react differently, one system (Tibco MFT) creates an extra folder with the same name as the xml-file, is this caused by Edtftpj-pro?
Snapshot logging communication with system (Tibco MFT) that creates extra folder:
```
2018-11-11 13:18:17 DEBUG SftpClient: put(/Users/j.wierda/home/vpftptest/data/ftpqueue\_in/P5L.MGL.KLACHTAFHANDELING/20181109\_MGL\_AFH\_005707.XML,20181109\_MGL\_AFH\_005707.XML)
2018-11-11 13:18:17 DEBUG SftpSubsystemClient: getAttributes('/TMGDKLACHTEN/20181109\_MGL\_AFH\_005707.XML')
2018-11-11 13:18:17 DEBUG SubsystemChannel: Sending SSH\_FXP\_STAT (path=/TMGDKLACHTEN/20181109\_MGL\_AFH\_005707.XML,id=3)
2018-11-11 13:18:17 DEBUG ConnectionProtocol: Sending 4 bytes for channel id 0 (maxSize=32648)
2018-11-11 13:18:17 DEBUG ChannelDataWindow: remote window consumed 4 bytes of window space (4095974 bytes left)
2018-11-11 13:18:17 DEBUG TransportProtocolCommon: Name=SSH\_MSG\_CHANNEL\_DATA,MessageId=94
2018-11-11 13:18:17 DEBUG TransportProtocolOutputStream: Sent message. Seq no=13, msg=94
2018-11-11 13:18:17 DEBUG ConnectionProtocol: Sent 4 bytes (4 total) for channel id 0
2018-11-11 13:18:17 DEBUG ConnectionProtocol: Sent total bytes 4 for channel id 0
2018-11-11 13:18:17 DEBUG ConnectionProtocol: Sending 50 bytes for channel id 0 (maxSize=32648)
2018-11-11 13:18:17 DEBUG ChannelDataWindow: remote window consumed 50 bytes of window space (4095924 bytes left)
2018-11-11 13:18:17 DEBUG TransportProtocolCommon: Name=SSH\_MSG\_CHANNEL\_DATA,MessageId=94
2018-11-11 13:18:17 DEBUG TransportProtocolOutputStream: Sent message. Seq no=14, msg=94
2018-11-11 13:18:17 DEBUG ConnectionProtocol: Sent 50 bytes (50 total) for channel id 0
2018-11-11 13:18:17 DEBUG ConnectionProtocol: Sent total bytes 50 for channel id 0
2018-11-11 13:18:17 DEBUG TransportProtocolCommon: Received unregistered message: Name=SSH\_MSG\_CHANNEL\_DATA,MessageId=94
2018-11-11 13:18:17 DEBUG AsyncService: Routing SSH\_MSG\_CHANNEL\_DATA
2018-11-11 13:18:17 DEBUG ConnectionProtocol: Received 33 bytes of data for channel id 0
2018-11-11 13:18:17 DEBUG ChannelDataWindow: local window consumed 33 bytes of window space (130929 bytes left)
2018-11-11 13:18:17 DEBUG SubsystemMessageStore: Received SSH\_FXP\_ATTRS subsystem message
2018-11-11 13:18:17 DEBUG AsyncService: Finished processing SSH\_MSG\_CHANNEL\_DATA
2018-11-11 13:18:17 DEBUG SshMessageStore: Waiting for max 30000 ms
2018-11-11 13:18:17 DEBUG SftpClient: put(remote path=/TMGDKLACHTEN/20181109\_MGL\_AFH\_005707.XML/20181109\_MGL\_AFH\_005707.XML, append=false,resume=false)
2018-11-11 13:18:17 DEBUG SftpSubsystemClient: getAttributes('/TMGDKLACHTEN/20181109\_MGL\_AFH\_005707.XML/20181109\_MGL\_AFH\_005707.XML')
2018-11-11 13:18:17 DEBUG SubsystemChannel: Sending SSH\_FXP\_STAT (path=/TMGDKLACHTEN/20181109\_MGL\_AFH\_005707.XML/20181109\_MGL\_AFH\_005707.XML,id=4)
```
Other target systems react as expected and only transfer the file without creating the extra directory, snapshot below from one of them:
```
2018-11-11 13:36:45 DEBUG AsyncService: Finished processing SSH\_MSG\_CHANNEL\_DATA
2018-11-11 13:36:45 DEBUG SftpClient: cd(actual=/TMGDKLACHTEN)
2018-11-11 13:36:45 DEBUG SshMessageStore: Waiting for max 30000 ms
2018-11-11 13:36:45 DEBUG SubsystemChannel: Sending SSH\_FXP\_CLOSE (id=6)
2018-11-11 13:36:45 DEBUG ConnectionProtocol: Sending 4 bytes for channel id 0 (maxSize=32648)
2018-11-11 13:36:45 DEBUG ChannelDataWindow: remote window consumed 4 bytes of window space (4294967191 bytes left)
2018-11-11 13:36:45 DEBUG TransportProtocolCommon: Name=SSH\_MSG\_CHANNEL\_DATA,MessageId=94
2018-11-11 13:36:45 DEBUG TransportProtocolOutputStream: Sent message. Seq no=17, msg=94
2018-11-11 13:36:45 DEBUG ConnectionProtocol: Sent 4 bytes (4 total) for channel id 0
2018-11-11 13:36:45 DEBUG ConnectionProtocol: Sent total bytes 4 for channel id 0
2018-11-11 13:36:45 DEBUG ConnectionProtocol: Sending 15 bytes for channel id 0 (maxSize=32648)
2018-11-11 13:36:45 DEBUG ChannelDataWindow: remote window consumed 15 bytes of window space (4294967176 bytes left)
2018-11-11 13:36:45 DEBUG TransportProtocolCommon: Name=SSH\_MSG\_CHANNEL\_DATA,MessageId=94
2018-11-11 13:36:45 DEBUG TransportProtocolOutputStream: Sent message. Seq no=18, msg=94
2018-11-11 13:36:45 DEBUG ConnectionProtocol: Sent 15 bytes (15 total) for channel id 0
2018-11-11 13:36:45 DEBUG ConnectionProtocol: Sent total bytes 15 for channel id 0
2018-11-11 13:36:45 DEBUG SftpSubsystemClient: Waiting for response
2018-11-11 13:36:45 DEBUG TransportProtocolCommon: Received registered message: Name=SSH\_MSG\_IGNORE,MessageId=2
2018-11-11 13:36:45 DEBUG TransportProtocolCommon: Received unregistered message: Name=SSH\_MSG\_CHANNEL\_DATA,MessageId=94
2018-11-11 13:36:45 DEBUG AsyncService: Routing SSH\_MSG\_CHANNEL\_DATA
2018-11-11 13:36:45 DEBUG ConnectionProtocol: Received 28 bytes of data for channel id 0
2018-11-11 13:36:45 DEBUG ChannelDataWindow: local window consumed 28 bytes of window space (130612 bytes left)
2018-11-11 13:36:45 DEBUG SshFxpStatus: ErrorCode|Status=0
2018-11-11 13:36:45 DEBUG SubsystemMessageStore: Received SSH\_FXP\_STATUS subsystem message
2018-11-11 13:36:45 DEBUG AsyncService: Finished processing SSH\_MSG\_CHANNEL\_DATA
2018-11-11 13:36:45 DEBUG SshMessageStore: Waiting for max 30000 ms
2018-11-11 13:36:45 DEBUG SftpSubsystemClient: Received response
2018-11-11 13:36:45 DEBUG SftpClient: put(/Users/j.wierda/home/vpftptest/data/ftpqueue\_in/P5L.MGL.KLACHTAFHANDELING/20181109\_MGL\_AFH\_005707.XML,20181109\_MGL\_AFH\_005707.XML)
2018-11-11 13:36:45 DEBUG SftpSubsystemClient: getAttributes('/TMGDKLACHTEN/20181109\_MGL\_AFH\_005707.XML')
2018-11-11 13:36:45 DEBUG SubsystemChannel: Sending SSH\_FXP\_STAT (path=/TMGDKLACHTEN/20181109\_MGL\_AFH\_005707.XML,id=7)
2018-11-11 13:36:45 DEBUG ConnectionProtocol: Sending 4 bytes for channel id 0 (maxSize=32648)
2018-11-11 13:36:45 DEBUG ChannelDataWindow: remote window consumed 4 bytes of window space (4294967172 bytes left)
2018-11-11 13:36:45 DEBUG TransportProtocolCommon: Name=SSH\_MSG\_CHANNEL\_DATA,MessageId=94
2018-11-11 13:36:45 DEBUG TransportProtocolOutputStream: Sent message. Seq no=19, msg=94
2018-11-11 13:36:45 DEBUG ConnectionProtocol: Sent 4 bytes (4 total) for channel id 0
2018-11-11 13:36:45 DEBUG ConnectionProtocol: Sent total bytes 4 for channel id 0
2018-11-11 13:36:45 DEBUG ConnectionProtocol: Sending 50 bytes for channel id 0 (maxSize=32648)
2018-11-11 13:36:45 DEBUG ChannelDataWindow: remote window consumed 50 bytes of window space (4294967122 bytes left)
2018-11-11 13:36:45 DEBUG TransportProtocolCommon: Name=SSH\_MSG\_CHANNEL\_DATA,MessageId=94
2018-11-11 13:36:45 DEBUG TransportProtocolOutputStream: Sent message. Seq no=20, msg=94
2018-11-11 13:36:45 DEBUG ConnectionProtocol: Sent 50 bytes (50 total) for channel id 0
2018-11-11 13:36:45 DEBUG ConnectionProtocol: Sent total bytes 50 for channel id 0
2018-11-11 13:36:45 DEBUG TransportProtocolCommon: Received registered message: Name=SSH\_MSG\_IGNORE,MessageId=2
2018-11-11 13:36:45 DEBUG TransportProtocolCommon: Received unregistered message: Name=SSH\_MSG\_CHANNEL\_DATA,MessageId=94
2018-11-11 13:36:45 DEBUG AsyncService: Routing SSH\_MSG\_CHANNEL\_DATA
2018-11-11 13:36:45 DEBUG ConnectionProtocol: Received 38 bytes of data for channel id 0
2018-11-11 13:36:45 DEBUG ChannelDataWindow: local window consumed 38 bytes of window space (130574 bytes left)
2018-11-11 13:36:45 DEBUG SshFxpStatus: ErrorCode|Status=2
2018-11-11 13:36:45 DEBUG SubsystemMessageStore: Received SSH\_FXP\_STATUS subsystem message
2018-11-11 13:36:45 DEBUG AsyncService: Finished processing SSH\_MSG\_CHANNEL\_DATA
2018-11-11 13:36:45 DEBUG SshMessageStore: Waiting for max 30000 ms
2018-11-11 13:36:45 DEBUG SftpClient: put(remote path=/TMGDKLACHTEN/20181109\_MGL\_AFH\_005707.XML, append=false,resume=false)
2018-11-11 13:36:45 DEBUG SftpSubsystemClient: getAttributes('/TMGDKLACHTEN/20181109\_MGL\_AFH\_005707.XML')
2018-11-11 13:36:45 DEBUG SubsystemChannel: Sending SSH\_FXP\_STAT (path=/TMGDKLACHTEN/20181109\_MGL\_AFH\_005707.XML,id=8)
```
| Our target system (Tibco MFT) creates an extra directory when we send a xml-file | enterprisedt.com | 2019.51 | [
{
"text": "No, there's no chance that edtFTPnet/PRO is creating a folder as a side-effect of uploading a file. It's likely that there's some special functionality on the server that causes this behaviour.",
"name": "",
"is_accepted": true
}
] |
c14ff08a962ac04a99dc0ae09ec786c6 | Is there a way to identify if a file has completed vs is still uploading? We are automating file processing and I am trying to avoid grabbing a file too soon. | Attribute for files to determine if it still uploading? | enterprisedt.com | 2019.43 | [
{
"text": "Have you tried using a process trigger that triggers on the Uploaded event?",
"name": "",
"is_accepted": false
}
] |
9197a8b1ac040727503ab7b5001ea09c | Hi there,
I am currently using a trial version of edtFTPnet. As part of my testing, I am downloading a 16MB file from an sFTP site. Using FileZilla, the transfer is taking approximately 12 seconds, but using the DownloadFile method, it is taking approximately 4 minutes.
Here is the code I'm using to download the file:
public void DownloadFile()
{
String remoteFolder = "/FOLDERNAME/";
String localFolder = "c:\\tmp\\";
String sFtpSite = "SFTPSITE";
String ftpUsername = "USERNAME";
String ftpPassword = "PASSWORD";
String filename = "FILENAME";
String remoteFile = string.Concat(remoteFolder, filename);
String localFile = String.Concat(localFolder, filename);
SecureFTPConnection.LogLevel = EnterpriseDT.Util.Debug.LogLevel.All;
SecureFTPConnection.LogToConsole = true;
SecureFTPConnection.LogFile = "c:\\tmp\\log.txt";
SecureFTPConnection sftp = new SecureFTPConnection();
sftp.ServerAddress = sFtpSite;
sftp.UserName = ftpUsername;
sftp.Password = ftpPassword;
sftp.ServerPort = 22;
sftp.ServerValidation = EnterpriseDT.Net.Ftp.SecureFTPServerValidationType.None;
sftp.Protocol = FileTransferProtocol.SFTP;
sftp.TransferNotifyInterval = 1024 * 1024;
sftp.BytesTransferred += sftp\_BytesTransferred;
sftp.Connect();
Debug.Print(DateTime.Now.ToString("h:mm:ss>") + " About to start download");
sftp.DownloadFile(localFile, remoteFile);
Debug.Print(DateTime.Now.ToString("h:mm:ss>") + " Download completed");
}
void sftp\_BytesTransferred(object sender, BytesTransferredEventArgs e)
{
Debug.Print(DateTime.Now.ToString("h:mm:ss> ") + e.ByteCount.ToString() + " bytes downloaded");
}
Here is the output I'm seeing:
10:08:53> About to start download
10:09:09> 1074300 bytes downloaded
10:09:27> 2148600 bytes downloaded
10:09:43> 3222900 bytes downloaded
10:09:57> 4297200 bytes downloaded
10:10:11> 5371500 bytes downloaded
10:10:25> 6445800 bytes downloaded
10:10:39> 7520100 bytes downloaded
10:10:54> 8594400 bytes downloaded
10:11:07> 9668700 bytes downloaded
10:11:25> 10743000 bytes downloaded
10:11:41> 11817300 bytes downloaded
10:11:57> 12891600 bytes downloaded
10:12:12> 13965900 bytes downloaded
10:12:29> 15040200 bytes downloaded
10:12:46> 16114500 bytes downloaded
10:12:48> Download completed
Here is the log of the same download in FileZilla:
Status: Connected to SFTPSITE
Status: Starting download of /FOLDERNAME/FILENAME
Status: remote:/FOLDERNAME/FILENAME => local:C:\tmp\FILENAME
Status: File transfer successful, transferred 16,164,549 bytes in 12 seconds
[Logfile for download](https://www.dropbox.com/s/8ksitdq8ajhgg7j/DownloadFileLog.txt?dl=0)
Can you suggest why the download performance might be so different?
Thanks and regards,
Dermot
| sFTP DownloadFile running multiple times slower than FileZilla | enterprisedt.com | 2019.43 | [
{
"text": "Hello \n\n \n\nI'd like to mention that my company has been using edtFTPnet/PRO as part of a product for downloading via SFTP, and we have also seen the same discrepancies in download speed.",
"name": "",
"is_accepted": false
}
] |
b7ffc4becdf430eebbf58958a1fec905 | Are there any plans to support TLS 1.2 for edtFTPj/PRO? | enterprisedt.com | 2020.10 | [
{
"text": "TLS 1.2 has been supported since 5.0, for over 2 years.",
"name": "",
"is_accepted": false
}
] |
|
c6a28354e8e197c0dd51618bf0dcd347 | I have to use FTPS for file transfer. Hence, my requirement is to perform ftp server certificate validation. Currently, we have generated user signed certificate of ftp sever machine using openSSL, The resulting file is cacert.pem.
Its format is:
```
-----BEGIN CERTIFICATE-----
----------------------------------
-----END CERTIFICATE-----
```
I am using SecureFileTransferClient and server validation
```
client.loadSSLServerValidation(rootCert);
```
I have passed the ftp server machine certificate to above method.
Its throwing me exception as below
```
Server certificate could not be validated. (use SSLFTPCertificateException.printCertificates to view certificates.).
```
1. Will I be able to use user sign certificate?
2. If yes, what is format of certificate?
3. Do I need to install that certificate on ftp server machine?
| FTPS/SFTP server certificate not working | enterprisedt.com | 2019.43 | [
{
"text": "The user signed certificate must be installed on the server to be of any use. The server sends the certificate to the client which verifies it using the PEM file supplied, which can either contain 1) the CA certificate the server cert was signed with, or 2) the actual server certificate. More information in the User Guide [here](https://enterprisedt.com/products/edtftpjssl/doc/manual/html/howtouseftpswithservervalidationparta.html). \n\n",
"name": "",
"is_accepted": false
}
] |
f58779f5bbe438308318bea6aa64b059 | How can I activate CompleteFTP without Internet access? | How can I activate CompleteFTP without Internet access? | enterprisedt.com | 2020.05 | [
{
"text": "On a machine without Internet access, you can either \n\n \n\n1) In the CompleteFTP manager's licensing panel's activation link you can copy the activation URL and use it on a machine with Internet access, and then copy the activation key back to the server machine. \n\n \n\nor \n\n \n\n2) Install the CompleteFTP manager on a machine that does have internet access and can also reach the server machine. Connect to the server machine with the manager and activate as normal.",
"name": "",
"is_accepted": false
}
] |
bf4b63b3ac9d3760b9938e2fc4bd00bd | The server that we connect to has disabled the use of pwd on their side. When using the SecureFileTransferClient we have discovered that on connect() the pwd command is issued after the connection is made. Also, when doing a changeDirectory the pwd command is also issued. Is there a way to not have the pwd command issued after every command? | SecureFileTransferClient connection to server which blocks pwd | enterprisedt.com | 2020.05 | [
{
"text": "I've never heard of that before, so, no, unfortunately that's not an option we've implemented. However, SecureFileTransferClient is a high level, more user-friendly class that uses the lower level SSLFTPClient for all of the actual FTP operations (and SSHFTPClient for SFTP). I suggest that you port your code from using SecureFileTransferClient to SSLFTPClient. This gives you near-total control over which commands are sent to the server.",
"name": "",
"is_accepted": true
}
] |
3eb29279cf4f617826eddc3589ab2b21 | Hi there, need help to install an existing wildcard SSL cert, how can I do this? When I click to "Import a certificate from a file", I need to provide PVK file and password, which I don't have...
Thank you for your help! | How to install existing wildcard SSL cert (without generating CSR)? | enterprisedt.com | 2020.10 | [
{
"text": "An SSL certificate must have an associated private key file, which is the PVK file if you generated the certificate request from CompleteFTP. It's possible you have a different type of private key file, or if your certificate is in PEM format it may even be in the certificate PEM file (open it and check). \n\n \n\nFrom version 12.1, CompleteFTP can directly import certificates in PEM format. If the certificate's private key is not included in the PEM file, you will be prompted for it. PEM private key files are also supported from 12.1.",
"name": "",
"is_accepted": false
}
] |
2ccfe21755d2f962a7113a35795208bd | I'm testing my system against an FTP server provided by <http://www.drivehq.com/ftp>. I can connect OK but ftpClient.dirDetails("."), which used to work with 3.0.2, doesn't work with 4.2.0. There are files in the directory but the method returns an empty FTPFile[]. | http://www.drivehq.com/ftp | enterprisedt.com | 2021.04 | [
{
"text": "I've fixed this code by calling ftpClient.dirDetails(directory) before ftpClient.cd(directory). Probably better anyway.",
"name": "",
"is_accepted": false
}
] |
0f40ba2efd17149f3c73d9f443dc8d43 | Hi,
What's the difference between SSHFTPclient vs SecureFTPConnection
I saw we able to connect in both ways is there any difference and which is preffered way to connect.
Thanks | SSHFTPclient vs SecureFTPConnection | enterprisedt.com | 2019.51 | [
{
"text": "The key difference is that SecureFTPConnection also offers FTP/FTPS support, so you can switch between FTPS and SFTP by setting a property. Along with that SecureFTPConnection offers more features like connection-pooling and asynchronous methods. Behind the scenes, SecureFTPConnection actually uses SSHFTPClient for SFTP.",
"name": "",
"is_accepted": true
}
] |
b4ecde15579de8a2fd1a8aa5aa433bfc | I'm seeing a discrepancy between what AIX's ftp command does and what EDT ftp/j-pro does when transferring a file from a Windows machine if the file contains the sequence 0D0D0A. It looks like AIX removes both ODs while ftp/j only removes 1. Is this what is actually happening? If so is it a bug in ftp/j or in AIX?
EDIT: My math was off yesterday. It turns out that ftp/j-pro is not stripping ANYTHING from the sequence 0d0d0a. Thus the file on the target system still contains the 0d0a sequence (albeit with a 0d prefix).
EDIT 2 (Last edit): I've been able to determine the reason for this character sequence. The file is laid out as records with each record starting on a new line. However, records can be long enough that they have to be broken up into multiple lines so whatever is generating the records is adding 0D as a record delimiter. Since it is generated on a Windows machine each record ends with <end-of-record><CR><LF> ie 0D0D0A, | How does edt-ftp/j-pro handle 0D0D0A sequence in ascii mode? | enterprisedt.com | 2021.04 | [
{
"text": "I think 0D0D0A isn't a standard character sequence for a text-file regardless of which platform you're on. On Windows it could be interpreted as either one or two newlines and I think 0A isn't generally used in text-files on *NIX at all. Since this character-sequence isn't defined you should expect various behaviours depending on the inclinations of the developers. So I wouldn't really call it a bug in either platform. It's more of a feature. :-) \n\n \n\nTo avoid this discrepancy I'd probably either use binary transfer-mode or process the file prior to transfer.",
"name": "",
"is_accepted": false
}
] |
ecc70b97f337d94c7f00ac5f028a928e | I am not getting notification ftppro when the server closes the FTP connection.
I thought connecting to both the FTPConnectionEventHandler Closing, FTPConnectionEventHandler Closed, and FTPMessageHandler ReplyReceived events would notify but it does not.
I did not see the FTPMessageHandler ReplyReceived receieved any notification that the server closed the connection.
Can some one tell me what even I should register for to be notified when the server closes the connection?
You can email me at [[email protected]](mailto:[email protected]) directly for a response.
/// <summary>Occurs when the component is about to close its connection to the server.</summary>
[Category("Connection")]
[Description("Occurs when the component is about to close its connection to the server.")]
public virtual event FTPConnectionEventHandler Closing;
/// <summary>Occurs when the component has closed its connection to the server.</summary>
[Category("Connection")]
[Description("Occurs when the component has closed its connection to the server.")]
public virtual event FTPConnectionEventHandler Closed;
[Category("Commands")]
[Description("Occurs when a reply is received from the server.")]
public virtual event FTPMessageHandler ReplyReceived | Not detecting when server closes FTP Connection | enterprisedt.com | 2021.04 | [
{
"text": "Those events will only be triggered when Close is actually called. Is Close being called? They won't trigger if the connection just drops out.\n \n\n \n- Hans (EnterpriseDT)",
"name": "",
"is_accepted": false
}
] |
860ea13a385246561a9a371ac612dde8 | I am trying to configure SCP backups for a vCentre virtual appliance (6.7). When I configure the backup the credentials are accepted but I get error:
Failed to connect to the remote SCP location.
The configuration is being done via the VCSA VAMI interface using the following command:
scp://<ip\_address>:22/<folder\_name>
If I SSH to the appliance (VMware Photon OS) I can use the 'SCP' CLI command and transfer a file to the CompleteFTP server successfully, using the same credentials/path.
| How to configure an SCP backup of VCSA using CompleteFTP | enterprisedt.com | 2021.43 | [
{
"text": "Please open up a support ticket [here](https://enterprisedt.atlassian.net/servicedesk/customer/portal/1/group/1/create/1). \n\n",
"name": "",
"is_accepted": false
}
] |
94d7561085dcf45b86282e94107dec15 | A user, who has an instance of CompleteFTP in the DMZ and another on the internal network, asked us:
>
> I?ve been reading through the documentation but am still a little confused on how to set this up. I?m not sure which option makes more sense. Use the gateway connection or Use a specified connection. Does it matter which option we use?
>
>
>
| Should I use a gateway connection or a specified connection? | enterprisedt.com | 2020.10 | [
{
"text": "You can only use a gateway connection if you're authenticating your FTP users using accounts on the internal CompleteFTP server, so if the accounts of your users are defined only on the CompleteFTP server in your DMZ then you can't use a gateway connection. So it boils down to where your accounts are stored - on the DMZ server or on the internal server. \n\n? \n\nA more in-depth explanation: \n\n? \n\n?If you're authenticating users using a gateway authenticator from accounts on your internal server then the DMZ server connects to the internal server as soon as a user tries to authenticate. If authentication is successful then that initial connection between the DMZ server and the internal server is kept open for the duration of the session and is used when the user accesses a gateway folder. \n\n? \n\n?If, on the other hand, the DMZ server is authenticating users itself (using accounts set up on that server), then no connection between the DMZ server and the internal server is opened initially. When the user tries to access a gateway folder it has no existing 'gateway connection' available, so it must use a specified connection. This specified connection must have the user-name and password of an account on the internal server set.",
"name": "",
"is_accepted": true
}
] |
104c70b7c30c1b0b3930a7c78d293847 | The CompleteFTP manager will not connect! How can I resolve this? | enterprisedt.com | 2020.34 | [
{
"text": "**The CompleteFTP manager won’t connect! How can I resolve this?**\n\n**Symptoms**\n\nWhen the CompleteFTP manager is launched, the 'Connect to CompleteFTP' dialog box should appear. After filling in the details and selecting OK, error messages appear such as :\n\n“*The CompleteFTP service is not currently running on this machine.Would you like to start it?*”\n\n“*Cannot connect to server: Authentication failed*”; \n\nThe manager application fails to progress any further.\n\n**How to resolve this:**\n\n1) If you are told that the service is not running, make sure the CompleteFTP service is started - it must be running in order to connect. If the service is not running, start the service from the Services panel and make sure it shows as running. \n\n2) If you are not prompted but suspect the service is not running, then please access services using Win+R and type in ‘services.msc’, or you can access it through the control panel>administrative tools>services. Search for Complete FTP Server, right click over it and choose ‘start’. \n\n3) The manager must be running with the correct permissions for the windows services, in order for it to connect to the server. If the manager is not running with the correct permissions for the Complete FTP Server (Service), then you will have to start it using one of the methods shown above (i.e. connect first to control panel>Administrative Tools>Services>Complete FTP Server>start).\n\n4) If the service is running but you still receive a message telling you it is not, you are probably connecting on the wrong server administrator port. By default, the admin port should be 14983. In very early versions, the default port was 14982. Please check that the correct port number has been entered (see image below).\n\n5) Check that the *correct* username and password have been entered in the connect dialogue box as shown below:\n\n\n\n6) If you have forgotten your password, then please go [here](https://enterprisedt.com/questions/index.php/2355/how-can-i-reset-the-administrator-password?show=2355#q2355) to see the steps on how to reset it.\n\n7) For this kind of problem we need to know what ports the server is listening on. Earlier versions of Complete FTP server used the FTP/FTPS protocol for manager connections on port 14982. Later and current versions use SFTP port 14983. Protocols used for connection may have been amended by your administrator and these can be seen by clicking on ‘*other settings*’>connection protocol>click on the drop down menu, and ensure the correct protocol has been entered. (See below image)\n\n8) Before contacting support it is useful to have a diagnostic ‘Manager’ log. To get this please go to ‘other settings’ on the ‘connect to Complete FTP’ window and choose ‘Full diagnostic (slow) - see below image. Then close it down again and attempt to reconnect. After these steps please go to C:\\Users\\MyUserName\\AppData\\Local\\EnterpriseDT\\Complete FTP\\Logs\\Diagnostic.log You can check the log and search for ‘listener’ which should tell you which port number is set for connections from the CompleteFTP Manager.\n\n\n\nIf you are still unable to resolve this issue please send the latest 'Diagnostic.log' which covers your most recent connection attempt to support (You will need a current support agreement in place).\n\n",
"name": "",
"is_accepted": false
}
] |
|
d412dacebd9ba9a1a279b3a119781cac | How to deal with error "This organization's certificate has been revoked"? | This organization's certificate has been revoked | enterprisedt.com | 2020.05 | [
{
"text": "So you've loaded your SSL certificate obtained from your CA and are testing HTTPS. You start IE, and go to <https://localhost>. \n \nIE gives the message \"This organization's certificate has been revoked\", and you can't view the page at all. What's going on? \n \nWell, IE has very strict checking for HTTPS. If the SSL certificate's common name does not match the hostname of the server, IE will block access to the page on CompleteFTP. On a test machine, this will usually be the case. \n \nTo view the page (and the error message), you need to disable revocation in the Advanced Settings of IE's Internet Options. You need to disable two settings, \"Check for publisher's certificate revocation\" and \"Check for server certificate revocation\". \n \nOnce revocation is disabled, you will be given the option of continuing to the page - and the actual error message will be shown: \"The security certificate presented by this website was issued for a different website's address.\" \n \nYou won't get this problem when you deploy CompleteFTP on a machine where the hostname matches the certificate's common name. \n \nYou don't see this error in Chrome.\n\n",
"name": "",
"is_accepted": true
}
] |
b06702445ae576076f36a7ccab1e030c | I am trying to create a trigger event that will rename and then move the file.
I have a filename that remains the same for pickup, lets say Test.xml.
Upon download I want to rename Test.xml to Test\_20190724\_135500.xml and then move it to the Archive directory. I have the following included in the trigger event body, but nothing is happening. Even when enabling debug level and Real Time Logging I'm not getting anymore information on the failure.
> set filename2 = "Test\_%Time%.xml"
> ren "%WindowsPath%" "%filename2%"
> move "F:\CompleteFTP\Alli\%filename2%" "F:\CompleteFTP\Alli\_Archive"
>
>
| Batch Job to rename and then move file on download | enterprisedt.com | 2019.43 | [
{
"text": "Please enable debug logging and take a look in the server log file: \n\n \n\nC:\\ProgramData\\Enterprise Distributed Technologies\\Complete FTP\\Logs\\diagnostics.log",
"name": "",
"is_accepted": false
}
] |
99b679b2c1d462552030af53bac7c720 | How can I limit the size of log files? | How can I limit the size of log files? | enterprisedt.com | 2021.39 | [
{
"text": "Use the RollingFileAppender:\n\n\n```\nusing EnterpriseDT.Util.Debug;\n\nLogger.ClearAppenders();\nLogger.AddAppender(new RollingFileAppender(\"myfile.log\", 5000000, 10));\n\n```\nThat gives a max size of 5 MB with 10 log files.\n\n",
"name": "",
"is_accepted": true
}
] |
6cd8c336b976a43f7af3858a1313b595 | Hi, I come in with no fundamental knowledge of crypto technology.
We have been connecting/uploading file to a particular host successfully (Based on UNIX) for many years.
Recently, (Without any changes performed at our end) we no longer are able to upload file.
Having a preliminary conversation with the remote system's engineer, we were asked which ciphers/algorithms we are using. (They are suspecting that we are using deprecated ones but would not tell us if they have recently updated anything on their end)
We run EDTFTPJPro on a windows server and I am struggling to find out how such setting in stored in our system.
Below is log recorded for the event mentioned above.
Any information you can offer would be appreciated!
19/03/2021 00:03:51.836 :Handling SFTP Request : SFTPPUT:AML.cba:sancprodxcomcfscs:password:/cba\_app/SANC/PROD/inbound/CFC:CFC\_AMLSanctions-20210319.PER:44405579
19/03/2021 00:03:51.852 :TempFile=D:\ServerProcesses\JPS\..\temp\sftp1583204419548852068prxy
19/03/2021 00:03:51.852 : Host=AML.cba uName=sancprodxcomcfscs Pass=password KeyFile= Remote Dir=/cba\_app/SANC/PROD/inbound/CFC Remote filename=CFC\_AMLSanctions-20210319.PER
19/03/2021 00:03:51.852 :Setting up binary transfers over SFTP (ssh)
19/03/2021 00:03:51.852 :Notice: Setting remote host
19/03/2021 00:03:51.852 :Notice: Setting user authentication
19/03/2021 00:04:51.930 :Closing connection
19/03/2021 00:04:51.930 :Error: SFtp failed.19/03/2021 00:04:51.930 :Error: Exception:com.enterprisedt.net.ftp.ssh.SSHFTPException: The SSH client has not yet connected to the server. The requested action cannot be performed until after a connection has been established.
19/03/2021 00:04:51.930 :Notice: Internal connection closed | File upload timing out using EDTFTPJ Pro - Recipient server administrator suspects we are using out-of-date algorithm? | enterprisedt.com | 2021.17 | [
{
"text": "If you follow the instructions [here](https://enterprisedt.com/products/edtftpjssl/doc/manual/html/howtosetuplogging.html) and record a debug level log of your connection then you should see the algorithms that your client is offering the server during the negotiation of the SSH connection.\n\n",
"name": "",
"is_accepted": true
}
] |
b4ab93c4da73c6bef0365474e426d5f4 | Hi,
During the handshake of an SFTP connection (with PublicKeyAndPassword as well as Server Validation) the EnterpriseDTLog reports an error, but then the connection is successful:
DEBUG EnterpriseDTLog - Packet arrived
DEBUG EnterpriseDTLog - ProcessAuthenticationResponse: SSH\_MSG\_USERAUTH\_FAILURE
ERROR EnterpriseDTLog - Auth partial success. Try: password
Since we're integrating the EnterpriseDTLog with Log4Net, it means an error is logged every time a connection is made.
Is there possibly something in our connection settings that could be causing this? Or is there any known workaround?
Thanks,
Graeme | Error in EDT log even though SFTP connection is made | enterprisedt.com | 2021.04 | [
{
"text": "What it means is that the authentication partially succeeded, but the server requires another authentication as well - it is suggesting via password. This is being done automatically.\n \n\n \nFor partial success, it probably should be a debug level message. It has been changed to that in the source, so in future this error message won't appear.",
"name": "",
"is_accepted": false
},
{
"text": "Thanks, that will be fine.\n \nDo you have a date for the next release?",
"name": "",
"is_accepted": false
},
{
"text": "It won't be for a couple of months. Let us know if you'd like a build to use in the interim.",
"name": "",
"is_accepted": false
}
] |
3c5a0b59810931ea28acf29c90180acc | Hi guys,
I have the following issue and braking my fingers on that for quite a time now.
I have the edtFTPnetPRO v9 and trying to establish a connection to an FTPS server with the bellow result (the debug log from the library listed).
An advise would be very much appreciated.
Thanks in advance.
INFO [FTPConnection] 1 Sep 2016 11:54:26.989 : OS: 6.3.9600.0, CLR: 4.0.30319.42000, DLL: 1.165.0.0
INFO [FTPConnection] 1 Sep 2016 11:54:26.989 : Built: 2-Nov-2015 10:32:17 GMT
DEBUG [LicenseProperties] 1 Sep 2016 11:54:26.989 : Looking for subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO (fallback )
DEBUG [LicenseProperties] 1 Sep 2016 11:54:26.989 : Found license subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO
DEBUG [LicenseProperties] 1 Sep 2016 11:54:26.989 : Did not find license subkeys Software\Enterprise Distributed Technologies\edtFTPnet PRO or in registry
DEBUG [LicenseProperties] 1 Sep 2016 11:54:26.989 : Looking for subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO (fallback )
DEBUG [LicenseProperties] 1 Sep 2016 11:54:26.989 : Found license subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO
DEBUG [LicenseProperties] 1 Sep 2016 11:54:26.989 : Did not find license subkeys Software\Enterprise Distributed Technologies\edtFTPnet PRO or in registry
DEBUG [LicenseProperties] 1 Sep 2016 11:54:26.989 : Looking for subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO (fallback )
DEBUG [LicenseProperties] 1 Sep 2016 11:54:26.989 : Found license subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO
DEBUG [LicenseProperties] 1 Sep 2016 11:54:26.989 : Did not find license subkeys Software\Enterprise Distributed Technologies\edtFTPnet PRO or in registry
DEBUG [LicenseProperties] 1 Sep 2016 11:54:26.989 : Looking for subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO (fallback )
DEBUG [LicenseProperties] 1 Sep 2016 11:54:26.989 : Found license subkey Software\Enterprise Distributed Technologies\edtFTPnet PRO
DEBUG [LicenseProperties] 1 Sep 2016 11:54:26.989 : Did not find license subkeys Software\Enterprise Distributed Technologies\edtFTPnet PRO or in registry
DEBUG [CertificateStore] 1 Sep 2016 11:54:27.020 : Valid PFX file
DEBUG [CertificateStore] 1 Sep 2016 11:54:27.020 : Password valid - calling PFXImportCertStore
DEBUG [CertificateStore] 1 Sep 2016 11:54:27.036 : Successfully imported the PFX file
DEBUG [SFTPMessageStore] 1 Sep 2016 11:54:27.036 : Set timeout=300000
INFO [LicenseProperties] 1 Sep 2016 11:54:27.036 : Licence expiry date: 12/31/9999
INFO [LicenseProperties] 1 Sep 2016 11:54:27.036 : Production license
DEBUG [FTPConnection] 1 Sep 2016 11:54:27.036 : Set LocalDirectory='c:\windows\system32\inetsrv'
DEBUG [SecureFTPConnection] 1 Sep 2016 11:54:27.036 : Set LocalDirectory to c:\windows\system32\inetsrv
INFO [LicenseProperties] 1 Sep 2016 11:54:27.036 : Licence expiry date: 12/31/9999
INFO [LicenseProperties] 1 Sep 2016 11:54:27.036 : Production license
DEBUG [SSLFTPClient] 1 Sep 2016 11:54:27.036 : Connecting to uprod.mfe.mastercard.com:16021
DEBUG [SSLFTPControlSocket] 1 Sep 2016 11:54:27.036 : waitOnShutdownSSL=True
DEBUG [SecureSocket] 1 Sep 2016 11:54:27.036 : ChangeSecurityProtocol: None
DEBUG [ExFTPControlSocket] 1 Sep 2016 11:54:27.036 : Created control-socket: SocksContext=, ProxySettings=NoProxy, RemoteHost=uprod.mfe.mastercard.com, controlPort=16021, timeout=300000
DEBUG [FTPControlSocket] 1 Sep 2016 11:54:27.036 : StrictReturnCodes=False
DEBUG [HostNameResolver] 1 Sep 2016 11:54:27.036 : Resolving uprod.mfe.mastercard.com
DEBUG [HostNameResolver] 1 Sep 2016 11:54:27.176 : Obtained 1 addresses
DEBUG [HostNameResolver] 1 Sep 2016 11:54:27.176 : IP address: 12.22.155.208
DEBUG [HostNameResolver] 1 Sep 2016 11:54:27.176 : uprod.mfe.mastercard.com resolved to 12.22.155.208
DEBUG [ExFTPControlSocket] 1 Sep 2016 11:54:27.176 : Connecting directly to ftp-server uprod.mfe.mastercard.com:16021
INFO [SSLFTPSocket] 1 Sep 2016 11:54:27.176 : Connecting to 12.22.155.208:16021 with timeout 300000 ms
DEBUG [SSLFTPSocket] 1 Sep 2016 11:54:27.301 : Successfully connected to 12.22.155.208:16021
DEBUG [FTPControlSocket] 1 Sep 2016 11:54:27.301 : Setting socket timeout=300000
DEBUG [FTPControlSocket] 1 Sep 2016 11:54:27.301 : SetSocketTimeout: 300000
INFO [FTPControlSocket] 1 Sep 2016 11:54:27.301 : Command encoding=System.Text.SBCSCodePageEncoding
DEBUG [FTPControlSocket] 1 Sep 2016 11:54:27.442 : 220 uprod.mfe.mastercard.com FTP server (SecureTransport 5.2.1) ready.
DEBUG [FTPControlSocket] 1 Sep 2016 11:54:27.442 : ---> AUTH TLS
DEBUG [FTPControlSocket] 1 Sep 2016 11:54:27.582 : 234 SSLv23/TLSv1
DEBUG [SSLFTPControlSocket] 1 Sep 2016 11:54:27.582 : Beginning Ssl3, Tls1, Tls11, Tls12 handshake.
DEBUG [SecureSocket] 1 Sep 2016 11:54:27.582 : ChangeSecurityProtocol: Ssl3, Tls1, Tls11, Tls12
DEBUG [SecureSocket] 1 Sep 2016 11:54:27.582 : Initiating handshake
DEBUG [SecureSocket] 1 Sep 2016 11:54:27.582 : Doing synchronous handshake
DEBUG [SecureSocket] 1 Sep 2016 11:54:27.582 : Timeout used for monitor waiting for handshake completion: 300000
DEBUG [CompatibilityLayer] 1 Sep 2016 11:54:27.582 : FTPConnection.3 Local min SSL version: 3.0, max SSL version: 3.3
DEBUG [SocketController] 1 Sep 2016 11:54:27.723 : FTPConnection.3 Processing hello
DEBUG [CompatibilityLayer] 1 Sep 2016 11:54:27.723 : FTPConnection.3 Remote SSL version: 3.3
DEBUG [ClientHandshakeLayer] 1 Sep 2016 11:54:27.864 : FTPConnection.3 [Sha512, Ecdsa]; [Sha512, Rsa]; [Sha384, Ecdsa]; [Sha384, Rsa]; [Sha256, Ecdsa]; [Sha256, Rsa]; [Sha224, Ecdsa]; [Sha224, Rsa]; [Sha1, Ecdsa]; [Sha1, Rsa]; [Sha1, Dsa]; [Md5, Rsa]
ERROR [SocketController] 1 Sep 2016 11:54:27.864 : FTPConnection.3 OnReceive - caught exception - closing: Unable to create the SHA-MD5 hash.
DEBUG [SocketController] 1 Sep 2016 11:54:27.864 : FTPConnection.3 CloseConnection(e=Unable to create the SHA-MD5 hash.)
DEBUG [SocketController] 1 Sep 2016 11:54:27.864 : FTPConnection.3 Shut down socket
DEBUG [SocketController] 1 Sep 2016 11:54:27.864 : FTPConnection.3 Closed socket
DEBUG [TransferBuffer] 1 Sep 2016 11:54:27.864 : FTPConnection.3 Close() called when open
DEBUG [SecureSocket] 1 Sep 2016 11:54:27.864 : FTPConnection.3 OnHandshakeComplete(False,Unable to create the SHA-MD5 hash.)
DEBUG [SecureSocket] 1 Sep 2016 11:54:27.864 : FTPConnection.3 OnHandshakeComplete - in lock
DEBUG [SecureSocket] 1 Sep 2016 11:54:27.864 : FTPConnection.3 OnHandshakeComplete - exiting lock
DEBUG [SecureSocket] 1 Sep 2016 11:54:27.864 : FTPConnection.3 OnHandshakeComplete - exit
ERROR [SecureSocket] 1 Sep 2016 11:54:27.864 : Exception during handshake: Unable to create the SHA-MD5 hash.
DEBUG [SocketController] 1 Sep 2016 11:57:18.323 : FTPConnection.3 Dispose()
DEBUG [SocketController] 1 Sep 2016 11:57:18.323 : FTPConnection.3 CloseConnection(e=null) | Unable to create the SHA-MD5 hash. | enterprisedt.com | 2020.05 | [
{
"text": "This question requires contacting support.",
"name": "",
"is_accepted": false
}
] |
c9843ca63e25696263685d33ed4f2247 |
```
Please help me to solve this issue which is urgent from our customer side.
Please see below logs for more detail
DEBUG [FTPControlSocket] 14 May 2020 16:14:40.929 : 234 AUTH command ok. Expecting TLS Negotiation.
DEBUG [SSLFTPControlSocket] 14 May 2020 16:14:40.930 : Starting SSL handshake on control socket
DEBUG [SSLFTPControlSocket] 14 May 2020 16:14:40.930 : Starting SSL handshake on control socket
DEBUG [SSLHandshake] 14 May 2020 16:14:41.195 : 3 certificates supplied.0 verified certificates.
DEBUG [SSLHandshake] 14 May 2020 16:14:41.195 : 3 certificates supplied.0 verified certificates.
DEBUG [SSLHandshake] 14 May 2020 16:14:41.195 : isVerified=false, acceptUnverified=true
DEBUG [SSLHandshake] 14 May 2020 16:14:41.195 : isVerified=false, acceptUnverified=true
DEBUG [SSLFTPControlSocket] 14 May 2020 16:14:41.469 : SSL handshake on control socket complete
DEBUG [SSLFTPControlSocket] 14 May 2020 16:14:41.469 : SSL handshake on control socket complete
DEBUG [FTPControlSocket] 14 May 2020 16:14:41.469 : ---> PBSZ 0
DEBUG [FTPControlSocket] 14 May 2020 16:14:41.469 : ---> PBSZ 0
DEBUG [FTPControlSocket] 14 May 2020 16:14:41.707 : 200 PBSZ command successful.
DEBUG [FTPControlSocket] 14 May 2020 16:14:41.707 : 200 PBSZ command successful.
DEBUG [FTPControlSocket] 14 May 2020 16:14:41.708 : ---> PROT P
DEBUG [FTPControlSocket] 14 May 2020 16:14:41.708 : ---> PROT P
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.313 : 200 PROT command successful.
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.313 : 200 PROT command successful.
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.313 : ---> USER martia
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.313 : ---> USER martia
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.536 : 331 Password required
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.536 : 331 Password required
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.536 : ---> PASS ********
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.536 : ---> PASS ********
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.752 : 230 User logged in.
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.752 : 230 User logged in.
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.752 : ---> TYPE I
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.752 : ---> TYPE I
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.970 : 200 Type set to I.
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.970 : 200 Type set to I.
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.971 : ---> SYST
DEBUG [FTPControlSocket] 14 May 2020 16:14:42.971 : ---> SYST
DEBUG [FTPControlSocket] 14 May 2020 16:14:43.177 : 215 Windows\_NT
DEBUG [FTPControlSocket] 14 May 2020 16:14:43.177 : 215 Windows\_NT
DEBUG [FTPFileFactory] 14 May 2020 16:14:43.178 : Selected Windows parser
DEBUG [FTPFileFactory] 14 May 2020 16:14:43.178 : Selected Windows parser
DEBUG [FTPClient] 14 May 2020 16:14:43.178 : Set new FTPFileFactory: com.enterprisedt.net.ftp.WindowsFileParser
DEBUG [FTPClient] 14 May 2020 16:14:43.178 : Set new FTPFileFactory: com.enterprisedt.net.ftp.WindowsFileParser
DEBUG [FTPControlSocket] 14 May 2020 16:14:43.297 : ---> CWD Z-GBS
DEBUG [FTPControlSocket] 14 May 2020 16:14:43.297 : ---> CWD Z-GBS
DEBUG [FTPControlSocket] 14 May 2020 16:14:43.527 : 250 CWD command successful.
DEBUG [FTPControlSocket] 14 May 2020 16:14:43.527 : 250 CWD command successful.
DEBUG [FTPControlSocket] 14 May 2020 16:14:43.604 : ---> RNFR test.xpitmp
DEBUG [FTPControlSocket] 14 May 2020 16:14:43.604 : ---> RNFR test.xpitmp
DEBUG [FTPControlSocket] 14 May 2020 16:14:44.163 : 350 Requested file action pending further information.
DEBUG [FTPControlSocket] 14 May 2020 16:14:44.163 : 350 Requested file action pending further information.
DEBUG [FTPControlSocket] 14 May 2020 16:14:44.163 : ---> RNTO test.tst
DEBUG [FTPControlSocket] 14 May 2020 16:14:44.163 : ---> RNTO test.tst
DEBUG [FTPControlSocket] 14 May 2020 16:14:44.377 : 550
DEBUG [FTPControlSocket] 14 May 2020 16:14:44.377 : 550
INFO [FTPControlSocket] 14 May 2020 16:14:44.377 : Expected reply code = [250]
INFO [FTPControlSocket] 14 May 2020 16:14:44.377 : Expected reply code = [250]
DEBUG [FTPControlSocket] 14 May 2020 16:14:44.489 : ---> QUIT
DEBUG [FTPControlSocket] 14 May 2020 16:14:44.489 : ---> QUIT
DEBUG [FTPControlSocket] 14 May 2020 16:14:44.700 : 221 Goodbye.
DEBUG [FTPControlSocket] 14 May 2020 16:14:44.700 : 221 Goodbye.
DEBUG [SSLFTPControlSocket] 14 May 2020 16:14:44.700 : Sending SSL closure alert on control socket
DEBUG [SSLFTPControlSocket] 14 May 2020 16:14:44.700 : Sending SSL closure alert on control socket
DEBUG [SSLFTPControlSocket] 14 May 2020 16:14:44.701 : Waiting for SSL closure response on control socket
DEBUG [SSLFTPControlSocket] 14 May 2020 16:14:44.701 : Waiting for SSL closure response on control socket
WARN [SSLFTPControlSocket] 14 May 2020 16:14:44.701 : Error while awaiting closure confirmation: Short read
WARN [SSLFTPControlSocket] 14 May 2020 16:14:44.701 : Error while awaiting closure confirmation: Short read
DEBUG [SSLFTPControlSocket] 14 May 2020 16:14:44.701 : Closing socket on control socket
DEBUG [SSLFTPControlSocket] 14 May 2020 16:14:44.701 : Closing socket on control socket
```
| FTP Error. com.enterprisedt.net.ftp.FTPException: 550 | enterprisedt.com | 2020.34 | [
{
"text": "Hi,\n\nFor some reason the rename operation is failing. Check the exact path of the file on the server. 550 errors are often given because of a non-existent file or because the file path is wrong. You also need to check that the user has the correct privileges for this path. A typing error in the file name can also lead to this error.\n\nAs you currently have a support agreement please open up a ticket on our support page which can be found [here](https://enterprisedt.atlassian.net/servicedesk/customer/portal/1). Please upload the full debug log file (you can zip it up). \n\n",
"name": "",
"is_accepted": false
}
] |
1f9e1bfbbe62cb35808bd894ef2488f6 | A user asks,
"What qualifies an arbitrary file/folder as being counted under user's data usage quota? Is it based on location, ownership, etc? If user A has a disk usage quota of 5 GB, is user A limited by the cumulative data size of all three users sharing data under that home folder? Is user A instead limited only by the directories/files owned by it?" | What qualifies an arbitrary file/folder as being counted under user's data usage quota? | enterprisedt.com | 2019.43 | [
{
"text": "Only folders of which a given account is the owner is included in its quota. Any subfolders that are owned by other users are not included in the data usage quota of the owner of the parent folder.\n\n",
"name": "",
"is_accepted": false
}
] |
b92d6060049bdd1210e96e67ae0e2503 | Please give me information on how to upload the file.
I am having a hard time doing that! | Error uploading file to server | enterprisedt.com | 2020.34 | [
{
"text": "Please let us know which product you are using and please give us more details of the error including the debug log entry showing the error.",
"name": "",
"is_accepted": false
}
] |
796fbe253bc75074445cb6e9e86137a3 | When testing the EDT client via SFTP with a SFTP Server, we can observe in the SFTP Server logs that in case the client has wrong credentials (ex: wrong pasword), it actually makes two login attempts; is this a default value stored somewhere ? is there any way (configuration / API) by which we configure this login attempts count ? | SFTP client login attempts | enterprisedt.com | 2019.51 | [
{
"text": "It may be that it's trying first with regular password authentication and then again using the same password with KBI (KeyBoard Interactive). What do the logs say?",
"name": "",
"is_accepted": false
}
] |
0f6db954f7db544ecafcf4f94117935a | Because Some FTPS Servers don't support that Extended Master Secure command
============================
I upgrade edtFTPnetPRO to 9.9.0 and try to find the property of setting close 'ExtendedMasterSecret' because some FTPS Servers don't support that command.
I only find the 'SessionResumptionRequiresExtendedMasterSecret' property.
=============================================
objSSLFtp = new SecureFTPConnection();
objSSLFtp**.SessionResumptionRequiresExtendedMasterSecret = false;**
**==============================================**
I think that setting resolves some connection problems because setting that property to 'false' can resolve some connect problems, but some FTPS Servers will interrupt before check the login name and password. So I think we need another property to set close transmit 'Extended Master Secure' command in all connections (command channel and data channel).
| May I close all 'Extended Master Secure' command? | enterprisedt.com | 2021.43 | [
{
"text": "The solution was to set UseClientHelloExtension = false. The end user has confirmed this was successful.",
"name": "",
"is_accepted": false
}
] |
53471d9e5edb7c84b3b7cff192ff6edd | The following code returns the error "No such host is known":
evLog.WriteEntry("get ftp folder=" + site.SiteLocation + folder.FolderName);
FTPConnection ftp = new FTPConnection();
ftp.ServerAddress = site.SiteLocation + folder.FolderName;
ftp.UserName = site.UserName;
ftp.Password = site.Password;
ftp.Protocol = FileTransferProtocol.FTP;
ftp.ConnectMode = FTPConnectMode.PASV;
ftp.Connect();
I know the host works since I can connect with FileZilla, or by using the same site address, user name, and password with the FTPWebRequest net control. What am I missing? | No such host is known | enterprisedt.com | 2019.51 | [
{
"text": "The ServerAddress property must be set to the IP address or the hostname, so something like \"123.123.123.123\" or \"my.hostname.com\". You can set the ServerDirectory property to the folder-name.",
"name": "",
"is_accepted": false
}
] |
647f70f8b7ab743a1ab05b0843e676ca | Hello,
We are using edtFTpnetPro version 9.6.0.40 and when connecting to a FTP folder to get responses, we are seeing a "Cannot access a disposed object. Object name: 'System.Net.Sockets.Socket'" exception.
I have turned on debugging and attached the dump from the log below. The log indicates "Failed to connect to 208.83.148.150:22 within timeout 300000 ms". So 300000 ms is 5 minutes, but when I debug the issue it takes about 23 seconds from calling SecureFTPConnection.Connect() until the exception is thrown, which is not close to the actual timeout amount of 5 minutes so I'm skeptical that it is actually timing out on the connection. Curiously, when I connect with FileZilla, it takes about 23 seconds to connect and display the directory listing. There are 3,774 files in the directory. I suspect that the issue is not a timeout, but rather too many files in the directory listing that is causing the issue.
I cannot change how many files are in this directory, I have tried to check the directory more frequently to try to reduce how many files may be in it but I've seen this issue appear seconds after checking the directory, so I really need to be able to handle a directory with that amount of files.
Is this an issue with edtFTpnetPro? Is there an upper limit of how many files can be in a directory? Is there any fix for this?
At this point I think I may be looking for an alternative control.
Here is what is in the log:
DEBUG [SFTPMessageStore] 14 Aug 2020 09:15:55.640 : Set timeout=300000
DEBUG [LicenseProperties] 14 Aug 2020 09:16:00.170 : Owner=eSolutionsInc; key=XXX-XXXX-XXXX-XXXX
DEBUG [LicenseProperties] 14 Aug 2020 09:16:00.171 : Expiry=12/31/9999 11:59:59 PM
DEBUG [LicenseProperties] 14 Aug 2020 09:16:00.172 : Flags: Flag 0=False;Flag 1=True;Flag 2=True;Flag 3=False;Flag 4=False;Flag 5=False;Flag 6=False;Flag 7=False;Flag 8=False;Flag 9=False;Flag 10=False;Flag 11=False
DEBUG [LicenseProperties] 14 Aug 2020 09:16:00.172 : IsTrial=False,Product=EdtFTPnetPRO
DEBUG [LicenseProperties] 14 Aug 2020 09:16:00.173 : Owner=eSolutionsInc,Key=XXX-XXXX-XXXX-XXXX,IsTrial=False,Product=EdtFTPnetPRO
INFO [LicenseProperties] 14 Aug 2020 09:16:00.173 : Licence expiry date: 12/31/9999
INFO [LicenseProperties] 14 Aug 2020 09:16:00.174 : Production license
DEBUG [FTPConnection] 14 Aug 2020 09:16:00.174 : Set LocalDirectory='C:\Program Files (x86)\IIS Express'
DEBUG [SecureFTPConnection] 14 Aug 2020 09:16:00.175 : Set LocalDirectory to C:\Program Files (x86)\IIS Express
DEBUG [LicenseProperties] 14 Aug 2020 09:16:00.177 : Owner=eSolutionsInc; key=XXX-XXXX-XXXX-XXXX
DEBUG [LicenseProperties] 14 Aug 2020 09:16:00.177 : Expiry=12/31/9999 11:59:59 PM
DEBUG [LicenseProperties] 14 Aug 2020 09:16:00.177 : Flags: Flag 0=False;Flag 1=True;Flag 2=True;Flag 3=False;Flag 4=False;Flag 5=False;Flag 6=False;Flag 7=False;Flag 8=False;Flag 9=False;Flag 10=False;Flag 11=False
DEBUG [LicenseProperties] 14 Aug 2020 09:16:00.177 : IsTrial=False,Product=EdtFTPnetPRO
DEBUG [LicenseProperties] 14 Aug 2020 09:16:00.177 : Owner=eSolutionsInc,Key=XXX-XXXX-XXXX-XXXX,IsTrial=False,Product=EdtFTPnetPRO
INFO [LicenseProperties] 14 Aug 2020 09:16:00.177 : Licence expiry date: 12/31/9999
INFO [LicenseProperties] 14 Aug 2020 09:16:00.177 : Production license
DEBUG [SSHSCPClient] 14 Aug 2020 09:16:00.178 : Setting up fallback kbi prompt based on supplied password
DEBUG [BaseSocket] 14 Aug 2020 09:16:00.179 : Set socket timeout to 300000
INFO [SSHFTPClient] 14 Aug 2020 09:16:00.180 : NoDelay=True
DEBUG [HostNameResolver] 14 Aug 2020 09:16:00.181 : Resolving 208.83.148.150
DEBUG [HostNameResolver] 14 Aug 2020 09:16:00.182 : 208.83.148.150 resolved to 208.83.148.150
DEBUG [SSHSCPClient] 14 Aug 2020 09:16:00.182 : Connecting directly to SFTP server 208.83.148.150:22
INFO [BaseSocket] 14 Aug 2020 09:16:00.182 : Connecting to 208.83.148.150:22 with timeout 300000 ms
ERROR [BaseSocket] 14 Aug 2020 09:16:21.194 : Failed to connect to 208.83.148.150:22 within timeout 300000 ms | Is there a limit to the number of files that edtFtpnetPro can handle in a directory? | enterprisedt.com | 2020.40 | [
{
"text": "Hi, \n\n \n\nThere's no limit on the number of files. Can you post a snippet of your code?",
"name": "",
"is_accepted": false
}
] |
8f4343fb8491817a102f24270b6b161b | I've been using the .NET Pro version of EnterpriseDT to send files over SFTP for a while now, without any issues. However, a short while ago, for reasons which escape me, the public IP address of the server was changed, and since then when trying to SFTP I get the error "Server does not support diffie-hellman-group1-sha1 for keyexchange". This seems odd to me, as it worked before, and nothing (else) has changed. Something I read suggested it might be that the key used on the server is somehow tied to the old IP, and so a new one needs to be generated.
If that's so - does anyone have any idea how I can set about doing this?
Or, can I change the keyexchange method used?
Or, any other ideas?
Thanks... | Problem with keyexchange after IP change | enterprisedt.com | 2020.05 | [
{
"text": "It's likely that they are using a new server that does not have diffie-hellman-group1-sha1 enabled. You may need to upgrade to a later version that supports other key exchange algorithms if you are using an older version.",
"name": "",
"is_accepted": false
}
] |
c3a22a59873aeed88b1e57d47c64d7b8 | Good Day,
We use EnterpriseDT deployed in Oracle as Java Objects.
Noticed that one of the certificates on the certificate store is about to expire.
We have the new certificate as a .cer
Many thanks for lettings us know the method to import this certificate into the certificate store.
Cheers | How to renew a certificate | enterprisedt.com | 2020.40 | [
{
"text": "Please see [here.](https://enterprisedt.com/products/edtftpjssl/doc/api/com/enterprisedt/net/ftp/ssl/SSLFTPCertificateStore.html)\n\n",
"name": "",
"is_accepted": false
}
] |
e2b6b59922671285f68c2a20e6dfac5c | edtFTPj/PRO Supports both FTPS and SFTP.
While FTPS and SFTP are completely different protocols, they offer the same basic feature | SFTP vs FTPS | enterprisedt.com | 2021.04 | [
{
"text": "Your article states \"SFTP uses keys rather than certificates\" - What kind of keys, the SSH RFCs refer to host keys and seem to imply asymetric technology but I'm having difficulty understanding them.\n \n\n \nThe article also states \"SFTP clients must install keys on the server\", please explain why this is so. The SSH RFCs seem to indicate that the major issue is the client verifying the server key and server identy association rather than the server having to evaluate a client key.\n \n\n \nThank you for your help, I'm trying to understand the technology and any assistance would be appreciated.",
"name": "",
"is_accepted": false
},
{
"text": "SSH uses asymmetric keys - public/private key pairs. \n \n\n \nServers must be able to identify the client (as it is essentially logging into the server), hence the client public key must be installed on the server.",
"name": "",
"is_accepted": false
}
] |
0afa5323de2d27885bef93a461f0fd0c | I have been playing with the automation of user onboarding via the command line and have managed to get the following working:
1. Creation of non-windows users
2. Creation of Groups (via Server Side javascript functions)
3. Creation of Folder structures
But for the life of me I can't figure out how to, or if it is possible to automatically populate the event trigger.How would I go about creating a trigger that does the following via the CLI or Web API?* Trigger on upload file
* Folder Filter: */a/b/c/*
* Trigger on success
* Powershell or JSS Script type
* <body of script>
* <Working directory or user to run script as>
| Automating creation of event (process) triggers | enterprisedt.com | 2020.05 | [
{
"text": "Unfortunately we haven't yet added the ability to add event handlers via the command-line. \n\n \n\nIf you tell me what you want the trigger to do then I might be able to suggest a solution.",
"name": "",
"is_accepted": false
}
] |
d61ae4c16bbbd3c27d641bc64444d684 | When upgrading a production system, it's natural to want to make sure the upgrade is going to work. No-one wants a broken production machine! How can the upgrade installer be tested? | How can I test that a new release works for my server? | enterprisedt.com | 2020.05 | [
{
"text": "You can test run a new release of CompleteFTP against your production configuration on a test machine by following these steps. \n\n\n1. Install production's version of CompleteFTP on the test machine.\n2. Locate the configuration file (config.sdf) on the prod machine. Typically, its location is C:\\ProgramData\\Enterprise Distributed Technologies\\Complete FTP\\config.sdf\n3. Copy config.sdf to the same location on the test machine, creating directories as necessary. Make sure the SYSTEM user has full control of any directories you create.\n4. Copy all data directories from the prod machine to the test. By default, these are subdirectories of the directory where config.sdf is stored, but directories in other locations may be referenced as well.\n5. Restart the CompleteFTP service on the test machine. You now have a replica of prod - check it works with local connections (it will have the wrong activation key so you won't be able to connect from external machines).\n6. Download the version of CompleteFTP you want to upgrade to from our [customer site](https://connect.enterprisedt.com/). You'll need to know your registered email address for your account if you've lost your account details. If you can't log in, please [contact support](http://enterprisedt.com/support/contact/). You'll need a current support agreement to get the latest version - the trial won't work.\n7. Install the upgrade version of CompleteFTP on the test machine, choosing to keep the existing configuration, and confirm everything works locally (as noted, it will have the wrong activation key so you won't be able to connect from external machines).\n8. If everything works fine on the test machine, you are ready to run the upgrade installer on your production machine.\n",
"name": "",
"is_accepted": false
}
] |
c4b0430caa1a47df410a8b9eea501c14 | My question is regarding SecureFileTransferClient when used with SFTP protocol. I have used it before with FTP protocol in passive mode. So, it allows me connect over multiple port. Basically, I have multiple threads that can connect to FTP simultaneously.
Can I use SFTP protocol in PASSIVE mode? My requirement is that hundreds of thread can connect to SFTP server over a period of 30 seconds or 1 minutes and download different files. | SFTP passive mode | enterprisedt.com | 2019.43 | [
{
"text": "SFTP doesn't use passive mode - that's for FTP or FTPS (you might be talking about FTPS). \n\n \n\nHundreds of connections from a client may not work as there is usually a limit to the number of network connections you can open on a client machine. The server may also ban you for having too many connections - this will look like a DOS attempt.",
"name": "",
"is_accepted": false
}
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.