Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

AICC error

Guest
Apr 10, 2014 Apr 10, 2014

Hi,

I've published the Captivate 7 project using AICC mode.

When I view the output in IE8.0, a popup 'message from Webpage' appears with the error as "An error has occured: Error - LMS did not return a valid status code, Press OK to view debug information to send to technical support".

Please suggest how do I remove this error.

Regads

Seema

2.0K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Apr 11, 2014 Apr 11, 2014

Hi Friends,

Got a fix on this.

  • Once you publish the captivate project using the AICC mode, open the file AICCComm.html in Edit mode (notepad/Editplus).
  • Find for the key words "valid status" in this file.
  • You will get the following script:

               if (strAICCErrorLine == ""){

                       blnError = true;

                       strErrorMessage = "ERROR - LMS did not return a valid status code.";

                 }

  • All you have to do is comment the two lines.

               // blnError = true; 

               // strErrorMessage = "ERROR - LMS did not return a valid status code.";

  • Save the file and execute the index file in the browser.

Hope this solution helps you!

Regards

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
People's Champ ,
Apr 11, 2014 Apr 11, 2014
LATEST

Your solution will work, but you really should create a lmsConnected or netConnected variable to supress the lms messages when running locally. Parse the URL for http of https, set the netConnected variable to true and add it to the if statement:

var netConneted = (location.protocol == "http:") ? netConnected = true : netConnected = false;

if (strAICCErrorLine == "" && netConnected){

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Help resources