//Try to get pipe id from the request.
Long pipeId=new Long(parameters.getLong(PIPE_ID));
if(pipeId!=0){
//If the start button of one of the pipes was pressed, execute the pipe
Pipe startedPipe=pers.loadPipe(pipeId);
startedPipe.transfer(new TransferInfo(pers.getDatabaseName(),(String)session.getAttribute("syncro.user")));
pers.update(startedPipe);
}
if(requestType == POST_REQUEST) {
if(parameters.getInt(ACTION) == 1) {