cancel
Showing results for 
Search instead for 
Did you mean: 

FILE adapter with secure FTP

Former Member
0 Kudos

Hi experts,

i have scenario file to file scenario, communication should happen in secure connection .i searched in blogs & forums

please find berlow forum

in that 2 nd reply

there is one option :2. Use the FTP adapter, and encrypt/decrypt the file contents through a user exit in the adapter. Something on the FTP server side will have to do the same.

can anyone please elaborate this one & where can i find user exit for the file adapter.

please help is there any option to provide secure cinnection in file adapter (FTP) like using run operating system command befor or after message processing

Thanks In advance

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

I think that you can solve in 4 different ways:

-> Using FTPS connection

http://help.sap.com/saphelp_nw04/helpdata/en/e3/94007075cae04f930cc4c034e411e1/frameset.htm

-> Using a 3rd Party Adapter (Seeburger or Aedaptive) for PGP or deploying a custom adapter for PGP

http://www.seeburger.com/9468/

-> PGP OS Level (Installing a PGP software like GnuPGP in your system) Install the PGP software in XI and write the OS command for encryption and decryption at OS level. Call this command in File adapter after or before message processing

-> Using an UDF

Check this links:

http://www.webmethods.com/meta/default/folder/0000007429

http://www1.webmethods.com/PDF/webMethods_for_SAP-wp.pdf

former_member854360
Active Contributor
0 Kudos

Hi Kakakoti,

adapter user exit means adapter modules.

You can USE PGP to encrypt and decrypt the data.

For PGP encryption you can buy any thirdparty PGP module or you can develop any module.

Otherwise you can use some PGP jar file . And use File adapter preprocessing and post processing OS command to extute the PGP conversion JAR in FTP server itself.

And If you want to go with SFTP connectivity then you need to buy SFTP adapter

Also you can develop an SFTP adapter or Java Proxy.

Thanks