Questions tagged [ftp-server]

Server for the File Transfer Protocol (FTP), a standard network protocol used to transfer files from one host to another host over a TCP-based network.

225 questions
0
votes
2 answers

Configuring IIS 8.5 via PowerShell: how remove inherit folder authorization

I'm deploying an FTP Server with TLS on IIS 8.5 (Windows Server 2012 R2) with some success but now I'm stuck at this situation. I can assign FTP Authorizations to the root FTP folder via Powershell using the following method (which reflects inside…
rofz
  • 95
  • 8
0
votes
0 answers

Upload file to FTP server with a button click on ReactJS

I want to upload my files in the "src" folder whenever a user clicks on a specific button on the webpage. I am using the "ftp-deploy" NodeJS package but I don't know how to connect that package with ReactJS. I read somewhere that I have to connect…
0
votes
2 answers

How should I handle LIST command in my FTP server?

I'm writing an FTP server with Java, and now I want to answer to LIST command.Sending only file names is enough, and I don't need to send file size, owner, permission, etc. It seems that just sending some strings, as file names, does not satisfy the…
Pedram
  • 103
  • 1
  • 2
  • 8
0
votes
1 answer

Building Apache Ftp Server In Android. It is always listing directoring. Need to render html page from Assets

I have built a FTP Server in android app using https://mina.apache.org/ftpserver-project/documentation.html. I need to render a html page from Assets as my home page. But it is always listing a directory. …
venkatesh
  • 319
  • 2
  • 10
0
votes
2 answers

How to design the bit-bucket pipeline for deployement the code of one repo to multiple servers using php?

I want to design the bit-bucket pipeline using php for deployement of code from one repo to multiple server locations. Following code is working to deploy the code to repo but I want to update the same code to multiple sever too. # Pipeline --…
Gaurav
  • 11
  • 2
0
votes
0 answers

Display image by blob not correct

I created a api to upload image and a api to get image by Resource (FTP-server and spring boot). In front-end, i use reactjs and display image by base64. but some image i was upload cannot be displayed (mainly .png). when i take blob of response…
Nguyễn VŨ
  • 161
  • 2
  • 6
0
votes
1 answer

Is it possible to create a ftpserver in Azure web app service

I can create an FTP-server using docker according to this. I wonder whether it works in the azure web app for containers. If the answer is yes, how could make it works? By the way, I've tried it, according to the steps from the link, I have to…
0
votes
0 answers

What is the socket address family defined by 30?

I am writing a simple FTP server program in C. I am mostly following Beej's Guide to Network Programming. In order to complete the pasv mode functionality, I have to create another socket and send its ip and port to the client. Since…
ege
  • 812
  • 6
  • 16
0
votes
0 answers

IdFTPServer Exception 'Connection reset by peer'

I've setup a simple FTPServer that only serves a specific purpose. Watching the code when a get is performed, I see GetFileDate and GetFileSize called twice, but I never see RetrieveFile being called. Instead, the client shows an exception of…
Brian P.
  • 206
  • 3
  • 14
0
votes
0 answers

Camel FTP transfer from local Apache FtpServer of a 15.6 MiB text file took 57 minutes

I used the following consumer endpoint in my class running in a JUnit test under Eclipse Oxygen: ftp://anonymous@localhost:21/test?password=****@****&fileName=TEST.TXT &localWorkDirectory=/in&noop=true&sendEmptyMessageWhenIdle=true The…
Gerold Broser
  • 14,080
  • 5
  • 48
  • 107
0
votes
1 answer

FTPSClient only succeeds when uploading diminute files

i have a serious (and weird) problem when uploading files to a FTPS server. I have to upload JSON files and some of them are really small (under 5kB). There is no problem with these files, I can upload them successfully. But when uploading "larger"…
0
votes
1 answer

I am having issues implementing an "Active FTP server"

I am having issues implementing an Active ftp server using java. I need a server that will send a file to a client. Wait for the client to send back a response file. (This is a master slave protocol. The client only commincates after it receives a…
0
votes
1 answer

Alternatives to long polling?

I have an application in JAVA which checks from the ftp server, whether a given file is updated or not. If the file is updated, I download the file again. I am using long polling to check, whether the file has been modified. So I ping the FTP…
CoderX
  • 942
  • 1
  • 10
  • 30
0
votes
0 answers

How to securely disconnect all clients and DataChannels in Indy10 IdFtpServer

I'm developing a ftp server (just now using Delphi XE 6 and Indy 10), all fine except at the moment of close the application. Is some client's connected but not downloading/uploading the app finish fine, but if i have some data channels opened (some…
Wo_0NDeR ᵀᴹ
  • 563
  • 5
  • 16
0
votes
1 answer

Some way to send data from one FTP server to another without intermediary?

I'm trying to move a large amount of files from one CDN to another. I know that they have a very high-speed connection to each other, so what I'd like to do is connect them directly, but the only protocol I have access to with each is FTP. Is there…
Brent
  • 23,354
  • 10
  • 44
  • 49