Is it possible to have a secure FTP connection using private key authentication?

Is it possible to have a secure FTP connection using private key authentication to connect to a folder on Business Catalyst?

Hi,
Not available at this stage as the only options can be found in the SFTP set-up article.
- http://helpx.adobe.com/business-catalyst/partner/connecting-site-using-ftp-client.html
Kind regards,
-Sidney

Similar Messages

  • Secure FTP Connection

    Dear Sir/Madam,
    Do you know how to build and secure FTP connection using sun.net.ftp.FtpClient? Thanks in advanced for the help.
    Regards,
    Stanley

    In one word: don't. sun.* packages are not only undocumented - they're subject to change or disappearance w/out notice. Depending on them is a bad idea.
    I believe there are Java FTP classes available on the 'net somewhere - have you tried Googling for them?
    Grant

  • Is it possible to have multiple search results page using one Search Enterprise Center site?

    Hi,
    We're using SharePoint 2013 and I'm trying to modify the search results page for one site collection. By default, it uses the search results page from the parent site which is the search center being used by default for the web application. I need to make
    sure that the site collection will only retrieve search results within the site collection (search everything has to be disabled). I found a way but I had to create another search center site to accomplish this, otherwise, it will affect the search center
    site of all other site collections on the web app.
    Now is it possible to have multiple search results page using one Search Enterprise Center site?

    Hi,
    According to your description, you want to retrieve the search results within the site collection.
    As a workaround, you can create a custom result source for the site collection and you will retrieve the search result within the site collection.
    More information about how to create result source in SharePoint 2013, please refer to :
    http://technet.microsoft.com/en-us/library/jj683115(v=office.15).aspx
    http://techmikael.blogspot.com/2013/04/limiting-search-results-in-sharepoint.html
    Best regards

  • Is it possible to have a phone line connected to a Mac Mini (OS X10.8.2) so you can use your computer with Parallels (Windows xp) to dial into a modem to download data being collected and stored at the remote location?

    Is it possible to have a phone line connected to a Mac Mini (OS X10.8.2) so you can use your computer with Parallels (Windows xp) to dial into a modem to download data being collected and stored at the remote location?

    Hi, do you mean a real Dial-up Modem as in the old days?
    As I recall, the Apple USB Modem won't work in 64 bit OSes, but there are others that will, I think this is one of them...
    http://www.zoomtel.com/products/dial_up_external_usb.html
    Or is the Modem on the other end Cable/DSL/FiberOptic?

  • Ftp connection using java

    Hi All,
    I need to upload a file through ftp connection uisng java calss. any one know please reply me
    Thanks
    K.Kalikumar

    Hi Kali,
    I have worked on similar issues sending you the code.. hope it should work. I had written a TelnetInterface class where I did all operation inside the constructor.
    import javax.servlet.http.HttpSession;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import java.io.InputStream;
    import java.io.PrintStream;
    import org.apache.commons.net.telnet.TelnetClient;
    public class TelnetInterface {
         private TelnetClient telnet = new TelnetClient();
         private InputStream in;
         private PrintStream out;
         private String prompt = ">";
         private boolean isConnected ;
    public TelnetInterface(){
         public TelnetInterface(HttpServletRequest request) {
                   HttpSession session = request.getSession();
                   PropertyReader propReader = (PropertyReader)session.getAttribute("propReader");
                   String host=null,user=null,password=null,port=null;
                   int unixPort= 0;
    //                Get Unix credentials
                   if(propReader != null){
                        host=(String)propReader.getProperty("UNIX_HOST");
                        user=(String)propReader.getProperty("UNIX_UNAME");
                        password=(String)propReader.getProperty("UNIX_PWD");
                        port=(String)propReader.getProperty("UNIX_PORT");
                        unixPort = Integer.parseInt(port) ;
    //                    Connect to the specified server
                   System.out.println("Inside telnet Interface");
                   try{
                        telnet.connect(host, unixPort);
                        isConnected = true;
                        in = telnet.getInputStream();
                        out = new PrintStream(telnet.getOutputStream());
    //                    Log the user on
                        readUntil("login: ");
                        write(user);
                        System.out.println("user:"+ user);
                        readUntil("Password: ");
                        write(password);
                        System.out.println("password:"+ password);
                        sendCommand("su - loginuser");
                        su(" password");
                   }catch (IOException e) {
                        e.printStackTrace();
                        isConnected = false;     
                   }catch (Exception e){
                        e.printStackTrace();
         }

  • Need a Secure Reliable connection Using IDSL and dsl routers

    I need to get a fast secure remote connection to my database. I am using oracle 8i database and the 6i developer for my applications. I need to connect to from remote sites to my office using my internet dsl router.
    I managed to do this using the web remote desktop , but i need to use a differnt method for tow reasons :
    1- I am worried that i might face performance problems when having many remote desk top connections.
    2- I still need security measures where i want to restrict connections to only specific computers that i have identified by reading hard disks serial numbers etc.
    I will appreciate it if any one can help me and show me a suitable way to connect to the data base remotely using the idsl lines while the application (forms and reports runs in the clients computer) or any other methods to connect using the idsl and the routers and not compromise the security issues of restricting the connections based on hardware information.

    Hi,
    it seems to be a JRE Problem. When I use the Kerberos implementation from "Vintela Single Sign-On for Java" I can establish a "aes256" secured LDAP connection to the AD Server.
    This LDAP connection allows to change the passwords of the users stored in the AD.
    The problem is that "Vintela Single Sign-On for Java" is not free, so it would be nice to have a solution which works with the Kerberos implementation of the JRE.
    The error is the same for "aes128" and "aes256" encryption.
    And with Wireshark I can not see any differences in the packets send to the AD and received from the AD.

  • Opening FTP connection using a bat file by Runtime class

    Hi
    I'm trying to run the following file from Runtime.getRuntime().exec(XXX) command and getting an error saying that login failed.
    I have set the user id and password in the ftpcommand.bat file as below
    User nkamar
    pass narendra
    and when I run this bat file from command prompt it doesn't work why???.It says Login failed.
    C:\>ftp -s:ftpcommand.bat 134.133.210.24
    Connected to 134.133.210.24.
    220 sdqa33 FTP server (SunOS 5.6) ready.
    User (134.133.210.24:(none)):
    331 Password required for User nkamar.
    530 Login incorrect.
    Login failed.
    ftp> opsnet1
    Invalid command.
    ftp> Invalid command.
    can you please help me in resolving this.
    A sample example file for setting the username,pwd and opening the ftp connection would be very helpful.
    Thanks in advance.
    Regards,
    Narendra.

    Rewrite your script as follow:
    open 134.133.210.24
    nkamar narendra
    Save it as ftpcommand.scr then call it.
    C:\>ftp -s:ftpcommand.scr
    If this still does not work try rewritting the script as follow:
    open 134.133.210.24
    user nkamar
    password narendra
    Save it and try again.
    Hope this works.
    ER

  • Is it possible to have 2 Apple computers connected to one ISP line?

    I just purchased the latest iMac, and instead of selling the old iMac (4 years old), my wife wants it for her desk... (both computers for home use).  We have one ISP line that comes in... (fiber optics DSL).  Is it possible to connect both computers to just the single ISP line?
    Thanks,
    Jim

    Neophutos wrote:
    I currently have the Cisco Linksys WirelessN Router with 4Port Ethernet Switch E1200 which you indicated..
    So, I can just hook a cable from one of the empty Linksys Ports and run it to the other computer?
    Yes, you can use an Ethernet Cable for both or go Wireless to one if it's setup in a different room.
    Neophutos wrote:
    Also, we currently have both of our email address's on the old computer.  We want to separate that also to each computer.... would one of us need to get a new email address to do that?
    Thanks,
    Jim
    Not if the accounts are already different, beside most Internet Service Providers allow for several Sub Accounts.
    You could remove one account from the old iMac for privacy if you wanted, but it's really not necessary.
    Personally when I passed down my old iMac to the Wife and Grandkids, I left most everything intact on it and then personalized the new Mac just for me.

  • Is it possible to have two hard drives connected to my airport extreme and use one to store my itunes library/iphoto and the other to backup via time machine?  Will the second (larger) drive back-up both my mac HD and my other external airport drive?

    For the past year I've been using an external hard drive (HD1) connected to my airport extreme as the back-up location for time machine.  This has worked fine without any issues.  What I would like to do now is to move my itunes and iphoto libraries off of my laptop (space constraints) and store them on a second external hard drive (HD2) connected to the airport extreme.  I have successfully connected the second hard drive using a Belkin powered USB hub.  What I am wondering is if I direct my time machine back-ups to HD1 will it back-up both my mac HD as well as HD2?  I apologize if this has already been answered but i've read conflicting responses on various message boards and a number of responses were dated so I wanted to make sure I received the latest information. 
    thank you

    kosty wrote:
    For the past year I've been using an external hard drive (HD1) connected to my airport extreme as the back-up location for time machine.  This has worked fine without any issues. 
    That may be true, but you need to know that backing-up that way is unreliable and not supported by Apple.   See:  Using Time Machine with an Airport Extreme Air Disk.  Do not be surprised if those backups suddenly turn up corrupted.
    What I am wondering is if I direct my time machine back-ups to HD1 will it back-up both my mac HD as well as HD2?
    No.  Time Machine cannot back up from any network location.  The 3rd-party utilities CarbonCopyCloner and ChronoSync may be workable alternatives.

  • Deploy projects over FTP and Secure FTP connections

    This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusionBuilder/2.0/Using/WSf01dbd23413dda0e1736ebc1213a528a b0-7feb.html

    This doc is invalid for ColdFusion Builder 2.

  • Row Level Security in OBIEE using OID as authentication Mechanism

    Hi OBIEE Gurus,
    I am trying to implement Row Level Security in OBIEE . Currently I have setup OBIEE to have OID do the user authentication.
    I want to implement RLS by doing the following :
    1. Have Security Groups defined in OID and assign users with group membership.
    2. Import these Security Groups into OBIEE metadata
    3. Apply filters to these Security Groups
    4. Run Answers requests to see if RLS works or not
    Please let me know if this approach works. If this is not the right way or most efficient way to do this, please let me know if there is any document I can follow to accomplish this.
    Appreciate your help.
    Edited by: drakesh on Sep 26, 2008 7:09 AM

    Follow the steps in the following link to set up OID and Row level security:
    http://www.rittmanmead.com/2007/05/21/using-initialization-blocks-with-ldap-and-database-queries-to-control-authentication-and-authorization/
    Instructions for the link above:
    1.In place of Edit Data Source as database you have to select LDAP,define the groups and default initializer as filter expression.
    2.A more simpler approach ,is to create the groups explicitely using the Security Manager in BI Administrator, add filters to those groups, and assign users to those groups.
    Otherwise follow Matt's view
    Thanks,
    Amrita

  • Securing FTPS with Oracle WSM gateway (10g)

    Does anyone know whether it is possible to secure FTPS traffic using the OWSM gateway (10g)
    I have a service which is sending encrypted files into our system using FTPS and we would like to check and decrypt the files before we persist them on the FTP server. Is it possible to use the OWSM gateway to authenticate and decrypt the files in a DMZ before processing them any further?
    Please note that I understand that 11g does not currently have a gateway and we are not looking to upgrade and therefore 10g OWSM gateway is an option for us.

    Yes, true,
    I was assuming a firewall protecting internal zone is part of DMZ setup, and infrastructure is on 10g, and owsm gateway, according to initial poster.
    Protecting the internal URL, only allowing gateway requests to pass through would require the requesthandler (service URL) to look into the request.
    What we did was to let the owsm gateway do the authentication/authorization, and adding a policy step to "insert SAML".
    So the client request contains a valid username/password to be authenticated towards LDAP. After authZ an additional SAML header is added, containing a magic token known only to owsm gateway, and internal requesthandler, processing the service URL request.
    If the request did not pass through gateway it will not contain the saml magic token, and thus be rejected by requesthandler.
    11g has some improvements when it comes to protection using agents, but as long as the weaknesses are not covered (lack of gw-functionality) it would be wise to handle this in current infrastructure.
    Suggesting a switch to 11g infrastructure to solve his issue is a bit over the top., switching the entire SOA infrastructure is not something done overnight.

  • Is it possible to have listener for orcale shut won event ?

    Hi,
    We know that during normal shut down of the oracle database, message is sent to the clients. Is it possible to have listener for that event using JDC ?
    Any suggestion is welcome.
    TIA,
    Sudarson

    This is not something that Verizon would handle or be able to change.  It would be something that Google would have to change in the Android source code, or the OEMs in their device specific versions.  Or you could just look for another app.

  • I have installed Grease Monkey plugin using unsafeWindow.Engine.init() function. It says unsafeWindow.Engine undefined. Please help as soon as possible.

    I have installed Grease Monkey plugin using unsafeWindow.Engine.init() function. It says unsafeWindow.Engine undefined. Please help as soon as possible.

    I have installed Grease Monkey plugin using unsafeWindow.Engine.init() function. It says unsafeWindow.Engine undefined. Please help as soon as possible.

  • Delete files over secure FTP

    Hi all.
    We're using the "secure FTP get" step successfully in our package, using certificate-based authentication.
    A new requirement has come up: we must delete the remote file after we retrieve it.
    Is there a way to do this, say, in Jython? It's not clear whether the snpsftp library supports SSL connections using certificate-based authentication.
    Thanks,
    -John

    John,
    snps FTP doesnt not support SSL connections.
    And I couldnt find a Jython lib that supports SSL.

Maybe you are looking for

  • Apple TV 1

    I am curious to know if the hard disk has priority on playback, for example if I have Itunes open on my mac 1: Using remote to control ATV will it play from the hard drive on the ATV or the Mac assuming the same music file is on both. 2: When streami

  • Fans Overworking in Leopard

    Hi All -- Since installing Leopard, my cooling fans (PowerMac G5 Dual tower) periodically go nuts. Sometimes they correct themselves, but this morning, I awoke to find them running at top speed and I couldn't get the computer to wake up from black sc

  • HT1353 I have a IPOD 5th generation with more than 1000 titles of music

    I bought it in 2007. I then lost it and lost my itune access too. In 2012 I started a new i tunes account and downloaded around 20 titles of music. After that I received my IPOD back. Now I do not know how synchronize my IPOD in a way that my laptop

  • Never showing my file and folder in desktop also..

    never showing my file and folder in desktop and hardisk also....how to fix that....

  • LMS 4.2 forward traps to Netcool

    We want to forward LMS 4.2 traps to a remote NMS (Netcool). In order to translate the traps into an event, we need the MIB's which LMS 4.2.3 is using. Does anyone know the location of the directory on the LMS server of these MIB's?