home *** CD-ROM | disk | FTP | other *** search
- function External_OnClose()
- {
- ssSubmitSIOnClose(gGlobalServer);
- }
-
- function ssSubmitSIOnClose(strServer)
- {
- // Get date and format it
- var objDate = new Date();
- var strDate = objDate.getDate();
- var strYear = objDate.getFullYear();
- var strMonth = objDate.getMonth();
- var strHour = objDate.getHours();
- var strMinutes = objDate.getMinutes();
- var strSeconds = objDate.getSeconds();
-
- var formattedDate = new Date(strYear,strMonth,strDate,strHour,strMinutes,strSeconds);
-
- var strFullDate = strMonth + "/" + strDate + "/" + strYear + " " + strHour + ":" + strMinutes + ":" + strSeconds;
-
- ssSetReg("timeFlow", ssGetReg("timeFlow") + strFullDate + "<br>");
-
- var strErrorMessage = "";
- var issueId = ssGetIssueID();
- var issueFile = document.si.GetIssueFile(issueId);
- var displayMain;
- var stat = false;
-
- if (strServer == "")
- {
- strServer = " ";
- }
-
- // Check basic connection before submitting SI
- if (!ssTestConnection(TEST_CONNECT_INT_ADD,TEST_CONNECT_INT_PORT))
- {
- strErrorMessage = "<b>Error:</b> " + MSG_CONNECTIVITY_ERROR;
- stat = false;
- }
-
- // We have connectivity, so go ahead with SI submission
- else
- {
- document.si.EnableErrorExceptions(false);
- ssSetReg('CurrentSubmittedSI',issueId);
-
- var errCode = 0, stat = false;
-
- // Error handling if server is not found
- if (document.si.GetLastError() == 536870965)
- {
- var fullError = document.si.GetLastErrorMsg();
- var errorSplit = fullError.split("=");
- strErrorMessage = errorSplit[1];
- alert(strErrorMessage);
- }
- else
- {
- // Update the SmartIssue with new key/values
-
- document.si.StartXMLIO(issueFile);
-
- // Break SI fields into chucks smaller than 300 characters to accommodate dynamic table limitations
- // on the server
- var pflowLength = ssGetReg("pageFlow").length;
- var pflowString = ssGetReg("pageFlow");
- var trimmedString, className, pageIndex;
- var startIndex = 0;
- var endIndex = 294;
-
- if (pflowLength > 295)
- {
- var counter = Math.ceil(pflowLength/295);
- for (i=0; i<=counter-1; i++)
- {
- className = "PageFlow" + i;
- if (endIndex > pflowLength-1)
- {
- endIndex = pflowLength;
- }
- trimmedString = pflowString.slice(startIndex,endIndex);
- document.si.UpdateXMLFile("PageFlow", i, "PageFlow", trimmedString, "");
- startIndex = endIndex;
- endIndex += 295;
- pageIndex = i;
- }
- }
- // if data is <= 295 characters
- else
- {
- document.si.UpdateXMLFile("PageFlow", 0, "PageFlow", ssGetReg("pageFlow"), "");
- pageIndex = 0;
- }
-
- // Break SI fields into chucks smaller than 300 characters to accommodate dynamic table limitations
- // on the server
- var tflowLength = ssGetReg("timeFlow").length;
- var tflowString = ssGetReg("timeFlow");
- var tTrimmedString, tclassName, timeIndex;
- var tstartIndex = 0;
- var tendIndex = 294;
-
- if (tflowLength > 295)
- {
- var counter = Math.ceil(tflowLength/295);
- for (j=0; j<=counter-1; j++)
- {
- className = "TimeFlow" + j;
- if (tendIndex > tflowLength)
- {
- tendIndex = tflowLength;
- }
- tTrimmedString = tflowString.slice(tstartIndex,tendIndex);
- document.si.UpdateXMLFile("TimeFlow", j, "TimeFlow", tTrimmedString, "");
- tstartIndex = tendIndex;
- tendIndex += 295;
- timeIndex = j;
- }
- }
- // if data is <= 295 characters
- else
- {
- document.si.UpdateXMLFile("TimeFlow", 0, "TimeFlow", ssGetReg("timeFlow"), "");
- timeIndex = 0;
- }
-
- document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "LastStep", ssGetNameIndex(ssGetCurrentPage()), "");
- document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "LastPage", ssGetCurrentPage(), "");
- document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "PageIndex", pageIndex, "");
- document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "TimeIndex", timeIndex, "");
- document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "Adapter", ssGetReg("SelectedAdapter"), "");
- document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "AdapterName", ssGetReg("AdapterName"), "");
- document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "FilterDemo", ssGetReg("FilterDemo"), "");
- document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "ModemDemo", ssGetReg("ModemDemo"), "");
- document.si.UpdateXMLFile("SDC_SAInfo", "SDC_SAInfo", "language", ssGetReg("language"), "");
- document.si.UpdateXMLFile("SDC_Connectivity", "ConnectionData", "PostToQueue", "0", "");
-
- document.si.EndXMLIO();
-
- // form local cab file name and location
- var cabIssueFile = issueFile.replace(/xml$/i, "cab");
-
- // compress the xml to cab
- var success = window.external.CompressFile(issueFile, cabIssueFile, true);
-
- // form remote cab file destination
- var issueDir = strServer;
- issueDir += "\\issue\\";
-
- var rcabFn = issueDir + issueId + ".cab"
-
- // submit SI to remote location through HttpRequest
- window.external.EnableErrorExceptions(false);
- stat = window.external.HttpRequest(2, cabIssueFile, rcabFn);
-
- }
- }
-
- return stat;
- window.external.EnableErrorExceptions(true);
-
- }
-