Package net.sf.jftp.net.wrappers

Examples of net.sf.jftp.net.wrappers.WebdavConnection


            String htmp = host.getText().trim();
            String utmp = user.getText().trim();
            String ptmp = pass.getText();

            WebdavConnection con;

            if(useLocal)
            {
                con = new WebdavConnection(htmp, utmp, ptmp,
                                           (ConnectionListener) JFtp.localDir);
                JFtp.statusP.jftp.addLocalConnection("Webdav", con);
                con.chdir(htmp);
            }
            else
            {
                con = new WebdavConnection(htmp, utmp, ptmp,
                                           (ConnectionListener) JFtp.remoteDir);
                JFtp.statusP.jftp.addConnection("Webdav", con);
                con.chdir(htmp);
            }

            setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
            this.dispose();
            JFtp.mainFrame.setVisible(true);
View Full Code Here

TOP

Related Classes of net.sf.jftp.net.wrappers.WebdavConnection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.