Subversion Repositories SmartDukaan

Rev

Rev 28264 | Rev 28320 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28264 Rev 28266
Line 330... Line 330...
330
		return specificationGroups;
330
		return specificationGroups;
331
	}
331
	}
332
 
332
 
333
	private ChannelSftp setupJsch() throws JSchException {
333
	private ChannelSftp setupJsch() throws JSchException {
334
		JSch jsch = new JSch();
334
		JSch jsch = new JSch();
335
		Session jschSession = jsch.getSession("root", "50.116.10.120");
335
		Session jschSession = jsch.getSession("root", "192.168.179.131");
336
		jschSession.setPassword("spic@2015static0");
336
		jschSession.setPassword("spic@2015static0");
337
		jschSession.setConfig("StrictHostKeyChecking", "no");
337
		jschSession.setConfig("StrictHostKeyChecking", "no");
338
		jschSession.connect();
338
		jschSession.connect();
339
		return (ChannelSftp) jschSession.openChannel("sftp");
339
		return (ChannelSftp) jschSession.openChannel("sftp");
340
	}
340
	}