//------------------------------------------------------------------------------
// Licensed Materials - Property of IBM
// (c) Copyright IBM Corporation 2001,2002 All Rights Reserved.
// US Government Users Restricted Rights - Use, duplication or disclosure
// restricted by GSA ADP Schedule Contract with IBM Corp.
//------------------------------------------------------------------------------
// Main Progress
//
// Filename: main_complete.htm
//
// This file is the page that is displayed while an operation is in progress.
// The main_progress page is redirected to from the requesting page when the
// operation is started. main_progress displays time elapsed since the
// operation was started until it receives a POST from another page (the page
// handling the operation). When the POST is received, main_progress submits
// its outgoing form (returning result information to the original request
// page.
//
// Input: POST data
// url original request page
// errorCode result of operation
// returnMessage text information about the operation results
//
//
// Ouput: POST ('form_out')
// sortBy sort information for the target page (defaulted)
// sortIn sort information for the target page (defaulted)
// llView filter information for the target page (defaulted)
// enclView filter information for the target page (defaulted)
// errorCode result of operation
// Message message flag = message in POST data
// returnMessage text information about the operation results
//
//
// Change History:
//
// Date Defect Changed By Description of Change
// ---- ------ ---------- ---------------------
// 07/21/2005 rwinston File Created
// 01/24/2006 romeog Added fileName post request option
//------------------------------------------------------------------------------
// if this is a post, this is a return from an operation
// retrieve the return info to forward to the original requester (url)
if( $_SERVER['REQUEST_METHOD'] == "POST" )
{
$url = $_REQUEST['url'];
$errorCode = $_REQUEST['errorCode'];
$returnMessage = $_REQUEST['returnMessage'];
$fileName = $_REQUEST['fileName'];
$cartView = $_REQUEST['cartView'];
$operation = $_REQUEST['operation'];
}
?>