Skip to Main Content

LiveLabs & Workshops

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

I Just Want to integrate FTP in my oracle apex in pl/sql

User_IKHJ2Feb 15 2022

I am using this code
DECLARE
l_conn UTL_TCP.connection;
BEGIN
l_conn := ftp.login('ftp.company.com', '21', 'ftpuser', 'ftppassword');
ftp.ascii(p_conn => l_conn);
ftp.get(p_conn => l_conn,
p_from_file => '/u01/app/oracle/test.txt',
p_to_dir => 'MY_DOCS',
p_to_file => 'test_get.txt');
ftp.logout(l_conn);
END;

I have created ACL and grant access to it
and still getting this error.
FTP.png

Comments

darrylburke
sylhouette, please don't multipost and don't use the browser's back button to edit your posts, as that creates multiple posts.

I've removed the thread you started just after this one with the same question.

db
843810
ok, sorry. i'll keep that in mind
1 - 2

Post Details

Added on Feb 15 2022
5 comments
682 views