Captivate 3 not sending correct completion information

Hi all, we are using Captivate 3, and are in the process of uploading our content to Element K's LMS.  We have tested some of the content, and its marking courses complete even though the completion criteria have not been met.  We have run through the content and achieved a failing grade, but the status changes to complete.
Here is how we have set up our courses:
In the Reporting Options, we have set Complete/Incomplete under Report Pass or Fail (Element K tells us they need this setting), Quiz Results only under Choose Report Data, Percent under Report Score to LMS as.  We have selected Never Send Resume Data under LMS Customization Settings.  In Pass or Fail options, we have 80 % or more of points to pass, and If failing grade Allow user Infinite attempts.  We are publishing as SCORM 1.2 (required by Element K).
Can anyone shed some light on this?  Should a Captivate course send "completed" to the LMS on a failed assessment?  Help!  We are under very tight deadlines, so anything anyone can suggest would be appreciated!
Thanks,
Diane

I've not lookede through the previous thread, but you've done variations on the settings?
You have tried Pass/Fail instead of Complete/Incomplete? Generally, if you want a score to show, you need to use Pass/Fail. That's not always true, but a score is generally not associated with Complete/Incomplete in SCORM 1.2 (in my understanding).
Have you tried the lesson through any test suite outside the LMS itself? That'd be my next step. The ADL Test Suite is the 'offical' tool for such testing but isn't very user friendly. Otherwise I'd suggest Rustici's Test Track
http://www.scorm.com/scorm-solved/test-track/
or the Reload Editor (which I've not used and am not 100% sure is for SCORM validation)
http://www.reload.ac.uk
Run the lesson through some SCORM tester and see if the values passed are what you expect. If not, change the settings, publish, and test again. A lot more efficient, hopefully, than going through the LMS itself and allows you to possibly determine an LMS issue over a lesson issue.
HTH
Erik

Similar Messages

  • PrintWriter does not send correct text over HTTP

    Hello All,
    I need information to resolve a problem I am having with PrintWriter and sending text using HTTP.
    I am developing a client/server system. A client will be used to connect to a Tini (a Dallas Semiconductor designed embedded system). Currently, to understand HTTP operation, I wrote a server that resides on the tini that listens for a connection attempt and when one is made prints the HTTP message in Dallas' JavaKit application window. The resultant Tini display includes some hardcoded tini text (italics only in (b) and (c) below) along with that received from the client app (italic bold in (b) and (c) below).
    I have also written some test client side code (see (a) below) in Sun's Java Studio Creator that sends a couple of lines of text so that I could see what my client app would actually send. I tried a few different ways of creating a PrintWriter object as shown in the code at (a) below just to see if it was a character set problem.
    The problem is that I get two different results under the following conditions:
    [Condition 1]: Entering "HTTP://tini" in the browser and pressing Enter. See result (b) below. This is correct and shows what the browser sends to the tini. The tini outputs the text immediately after pressing Enter.
    [Condition 2]: Running my client code in the browser. See result (c) below. This is incorrect and sends just a bunch of "y"s with umlauts as the message. The tini immediately outputs text up to the "cnt=0" line and then can take up to a couple of minutes to complete the message.
    1. Can anyone tell me why the client sends those "�" instead of the strings I encoded for all character sets?
    2. Why does the client code takes so long to complete after the initial transmission?
    3. Can anyone provide me with links to information that explains this behavior? I searched Sun and the forum but found nothing.
    (a) Here is the current test client side code that sends a couple of strings to the tini:
        public String button3_action() {
            // TODO This should send the tini a request for its IP address
            String protocol = "HTTP";
            String host = "tini";
            try{
                 URL tiniURL = new URL("http://tini");
                 URLConnection tiniConnection = tiniURL.openConnection();
                 tiniConnection.setDoOutput(true);
         //     Comment out one then the other to see if there is a difference in result (there is not!)
         //        PrintWriter tiniout =  new PrintWriter(new OutputStreamWriter(tiniConnection.getOutputStream(), "UTF-16"));
         //        PrintWriter tiniout =  new PrintWriter(new OutputStreamWriter(tiniConnection.getOutputStream(), "UTF-8"));
         //        PrintWriter tiniout =  new PrintWriter(new OutputStreamWriter(tiniConnection.getOutputStream(), "ISO-8859-1"));
         //        PrintWriter tiniout =  new PrintWriter(tiniConnection.getOutputStream());
                 PrintWriter tiniout =  new PrintWriter(new OutputStreamWriter(tiniConnection.getOutputStream()));
                 tiniout.println("GET / HTTP / 1.1\r\n");
                 tiniout.flush();
                 tiniout.println("IPaddress?");
                 tiniout.flush();
                 tiniout.close();
            catch(MalformedURLException e){
                e.printStackTrace();
            catch(IOException e){
                e.printStackTrace();
            return null;
    (b) Result displayed in JavaKit from Condition 1:
    just starting
    Waiting for a connection attempt
    Start thread
    Thread's run() method entered!
    Try to create a new StringBuffer
    StringBuffer created
    Read the buffer in this loop cnt =0
    Read the buffer in this loop cnt =1
    Read the buffer in this loop cnt =394
    Read the buffer in this loop cnt =395
    Out of loop.
    Now print HTTP message.
    GET / HTTP/1.1
    Host: tini
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040804 Netscape/7.2 (ax)
    Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8 ,image/png,*/*;q=0.5
    Accept-Language: en-us,en;q=0.5
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    "v"is at position390
    "e"is at position391
    "is at position392
    ""is at position393 "
    "is at position394
    java.lang.StringIndexOutOfBoundsException: String index out of range: 395
    No other stack trace info available.
    (c) Result displayed in JavaKit from Condition 2:
    just starting
    Waiting for a connection attempt
    Start thread
    Thread's run() method entered!
    Try to create a new StringBuffer
    StringBuffer created
    Read the buffer in this loop cnt =0
    Read the buffer in this loop cnt =1
    Out of loop.
    Now print HTTP message.
    ���������������������������������������������������������������������������� �������������������������������������������������������������������������������� �������������������������������������������������������������������������������� �������������������������������������������������������������������������������� �������������������������������������������������������������������������������
    "�"is at position390
    "�"is at position391
    "�"is at position392
    "�"is at position393
    "�"is at position394
    java.lang.StringIndexOutOfBoundsException: String index out of range: 395
    No other stack trace info available

    This is to anyone that is having trouble sending data via a stream using a browser client. I found the answer after many different searches on the Sun site in a bug report: Bug ID: 4192018.
    The problem arises from the way the API actually uses outputstreams. It appears that you must add an InputStreamReader to actually flush the OutputStreamWriter buffer. After reading this bug report I added
    (tiniConnection.getOutputStream(), "ISO-8859-1"));
            OutputStreamWriter tiniout =  new OutputStreamWriter(tiniConnection.getOutputStream(), "ISO-8859-1");
            InputStreamReader tiniIn =  new InputStreamReader(tiniConnection.getInputStream(), "ISO-8859-1");
            tiniout.write("GET/HTTP/1.1\r\n");
            tiniout.flush();
            //This is necessary to actually send data.
            tiniIn.read();
            tiniout.write("IPaddress?");
            tiniout.flush();
            //This is necessary to actually send data.
            tiniIn.read();
            tiniout.close();
            catch (MalformedURLException e){
                e.printStackTrace();
            catch (IOException e){
                e.printStackTrace();
            }NOTE: The preliminary program still does not perform correctly but it does send data that is displayed in tini's JavaKit window. At least I can continue to verify how the browser sends data.
    I hope this helps someone.

  • WRT54G Problem- SSID not showing in list & router not sending correct IP address

    Everthing was humming along.  Comcast Internet = fine.  WRT54G router, several XP Pro/SP 3 computers, 1 Powerbook + wireless printers. etc = fine.  PCs find network SSID and auto-connect without fail.
    Then, Comcast Internet down.  Reboot everything. Network back up.  Computers then get wrong IP Address or do not see SSID.  (No config changes on computers.)
    So I:
    1.  Reinstall WRT54G firmware (v8) - no change.
    2.  Install new fresh WRT54G - using CD to install  - no change
    3.  Update firmware in router used in #2 - no change
    4.  Complete reset cycle and reinstall -no change.
    5.  Repeat same reset with original router -no change
    6.  Using static IP address/default gate way/DNS address - PC finds and connects to SSID but does not access Internet.
    Result - no computers find SSID.  (SSID is hidden.) Don't find it when it's not hidden either.
    Ethernet cabled PC works just fine.  Gets correct IP Address & Internet  access is fine.
    Cable modem = Motorola Surf Board.  No physical locations of any omponent has changed.
    Is it possible that both WRT54G's are not working? 
    Is it somehow a Comcast problem? 
    Should I try some other router settings?
    Many thanks!

    Thanks.  These are great instructions and quite useful for setup.  Unfortunately, my problems seemed much more complex. 
    In the end, I redidi all the networking from scratch from the router through all the connected devices.  Finally got things back up.  I don't know how, but the Comcast failure seemed to corrupt lots of the settings even if they all looked OK.

  • PHP mail not sending correctly, instead Dovecot delivers to _www mailbox

    I've already searched  discussions and the web to no avail.
    Since moving my websites over to Mac OS X Server Snow Lepard 10.6.1 my PHP mail forms don't work correctly. They should send mail (from Wordpress 2.8.4 and Drupal 5.x) to a specified mail address. One of the recipient's domains is mail hosted on the same server, the other one isn't. Mail itself works perfectly.
    Instead of PHP sending mail to the correct mail address the mail is delivered via dovecot to a local mailbox for the _www user which is of course undesired.
    I can't find anything helpful in the logs of the mailservices and apache. (Even with debug)
    I'm using the standard PHP 5.3 included with Mac OS X Server and use SMTP via localhost to send mail in php.ini.
    Any hints on where to further investigate the problem? It's kind of annoying having to use a terminal as root to dig into the forms (not)mailed to me by directly looking at the dovecot store.
    Best regards
    Pepi

    Have you tried and traced the mail messages through mail.log?

  • Yosemite does not display correct Storage information

    Take a look at the screenshot, there is no way this is right. I think my apps take up at most 25GB, but its displaying double of that. Yet the total Free Space seems to be correct.

       Re-index Macintosh HD.
       Spotlight reindexing will take a while to finish.
       System Preferences > Spotlight > Privacy
       http://support.apple.com/kb/ht2409
       You will see a new category  “Other” in the Storage Display.
        About “Other”:
       http://support.apple.com/en-us/HT202867
    Note:
      If you don’t have Macintosh HD icon on the desktop,
      Finder > Preferences > General > Show these items on the desktop:
      Enable “Hard disks”.

  • When sending email from my Mac, Word documents do not send correctly. The recipient cannot open them. Any idea why???

    I have been dealing with this forever. No matter what format I save a Word document in (.doc .docx or whatever else), the recipient (microsoft user) is still not able to open the file in word. Does anyone have any idea why? It's driving me a little nuts.

    Right, I may have misunderstood what you meant by download to desktop. When I click the attachment, I can either "Open with: Text Edit (drop-down menu)" or Save. But save doesn't save to desktop. I can "Open with: Microsoft Word" fine.
    When I compose an email, I click attach. I select the file that is in a .docx format. It appears to load to the email correctly, and if I click that extension, it opens correctly in Word out of the pre-sent email. After being sent, it appears in god knows what format and wishes to open from TextEdit.
    Was I doing something wrong when you wanted me to download to desktop?

  • Mac Mail Template Not Sending Correctly - Yosemite

    Hi, folks,
    Upgraded to 10.10.1 on a Mac Pro Tower a month or so ago. When I use one of the few Mac Mail templates to send emails to a group, the artwork embedded in the template, and the text are separating, so the art ends up on the bottom of the email, under the text.
    I am using AOL as my mail provider, through Verizon Fios ISP.  Below is an example, showing the bottom of the mail message as I received it. The Mac template includes a blue background, and a trophy icon - they are supposed to be at the top of the email. After I enter a headline (which I made into a smaller font point size) and entered my body copy (which I recolored from light gray to black) I sent the email to many users, including myself. When I open the email, the headline appears at the top, then the body copy, but the trophy artwork which should be at the very top has been pushed to the bottom, separated from the blue background of the template.
    Also, as an aside, does someone know where there are other good-quality Mail templates that can be added to Apple's minuscule selection?

    Me too, very frustrsting. In addition, a few days before this happened, these same clients received emails from me from a gmail server based email address than I don't ever use for business. I think this started the day after I got the icloud email. Coincidence or not?
    So:
    1. I sent an email from email address 1 (definitely address 1) but the client received it from email address 2!
    2. When I spotted the replies from the clients, I checked and no matter what I did, the system overrode the sending email to be email 2.
    3. A few days later, all the clients I'd been having issues with, are having the same server message when sending as Sam. Very frustrating and wasting huge amounts of my time. What's gong on and what do I need to do about it? I've already deleted the gmail address and re-set it up which sorted the problem yesterday but it's back again today.
    Macbook Pro
    Mail Version 5.3,
    OSX 10.7.5

  • RSMIPROACT not sending the GR information to SNC

    Hello SNC Experts .
    Need your help on the below issue .
    I have make the below setting in We20.
    partner type LS (logical system) and create outbound parameter:
    Message Type:STPPOD
    Receiver Port:<XI> which connects to PI from ECC
    Transfer IDoc Immed checked with Output mode=2
    Basic type:DELVRY03
    Checked Cancel Processing After Syntax Error.
    No other setting is required in above outbound parameter.
    When I execute RSMIPROACT report then  get this message "No transfer
    exists for goods. I have do the GR against ASN and I did not found any I doc created for this .
    Is there any setting I am missing ? .
    With Regards
    Mahesh

    Hi Mahesh,
    You are using scheduling agreement?
    if you have scheduling agreement and ASN created then RSMIPROACT will trigger GR.
    Regards,
    Nikhil

  • POPUPKEY_FROM_LOV in multi update table not sending correct value.

    Hi,
    I have a query (report) region based on 10 different tables and working fine for updating multiple records at a time with APEX_ITEMs and process.
    Now I changed one of the item from TEXT to POPUPKEY_FROM_LOV. Now when I select a value in the LOV it's not populating the corresponding item (populating different item in the table). How do I tie the item with it's corresponding LOV value. Any help would be appreciated.
    Thanks,
    SP

    Scott,
    Here is the part of the code...
    select      APEX_ITEM.HIDDEN(10,W.ID) WATCH_ID,
         EMP.watch_cd WATCH_CD,
         star_no star_nos,
         EMP_NAME,
         APEX_ITEM.HIDDEN(1,AA.ID) A1,
         APEX_ITEM.CHECKBOX(2,AA.PRESENT_FOR_DUTY) A2,
         EMP.employee_position_cd TITLE_CD,
         EMP.employee_no,
         APEX_ITEM.TEXT(3,AA.ABSENCE_CD,3,3) A3,
         APEX_ITEM.TEXT(4,AA.ABSENCE_EXPLANATION,10) A4,
         APEX_ITEM.TEXT(5,CPD_UNIT_DETAIL_NO,5) A5, --vehicle_no,
    APEX_ITEM.POPUPKEY_FROM_LOV(6,(CASE WHEN (((select
    CPD_UNIT_DETAIL_NO from
    pps_emp_unit_history h
         where CPD_EMPLOYEE_ID = EMP.id
    and (end_date is null or end_date >= :P1_AA_DATE)
    and h.current_status_cd in ('UDAPP','UDFDAPP','UDDBAAPP','UDEND')
    and h.id = (select max(y.id) from pps_emp_unit_history y
              where y.cpd_employee_id = EMP.id
    and y.current_status_cd in
    ('UDAPP','UDFDAPP','UDDBAAPP','UDEND'))
    and effective_date <= :P1_AA_DATE) is NOT null)
    and (EMP.CPD_UNIT_ASSIGNED_NO = :P1_UNIT_NO )) THEN
    NULL
         ELSE
              (select watch_beat from pps_employee_watch w
              where w.CPD_EMPLOYEE_ID = EMP.id
              and id = (select max(id)
    from pps_employee_watch w2
    where w2.cpd_employee_id = EMP.id))
         END),'BEAT_CODES',3) A6, --watch_beat,
    APEX_ITEM.TEXT(7,additional_info,15) addtl_assignment
    from      cpd_employees emp, pps_employee_watch w,
         cpd_units cu, et_facilities ef,
         employee_positions ep,pps_aa_sheets aa
    where emp.id = w.cpd_employee_id
    and cu.cpd_unit_no = :P1_UNIT_NO
    and EMP.watch_cd = nvl(:P1_WATCH,EMP.watch_cd)
    and emp.employee_position_cd = ep.cd
    AND w.id = aa.pps_employee_watch_id (+)
    and emp.status_i = 'Y'
    and emp.cpd_employee_i = 'Y'
    and emp.organization_id = '1461'
    and ef.cpd_unit_no = :P1_UNIT_NO
    and (((select CPD_UNIT_DETAIL_NO from pps_emp_unit_history h
         where CPD_EMPLOYEE_ID = emp.id
    and (end_date is null OR end_date >= :P1_AA_DATE)
    and h.current_status_cd in ('UDAPP','UDFDAPP','UDDBAAPP','UDEND')
    and h.id = (select max(x.id) from pps_emp_unit_history x
         where x.cpd_employee_id = emp.id
    and x.current_status_cd in ('UDAPP','UDFDAPP','UDDBAAPP','UDEND'))
    and h.effective_date <= :P1_AA_DATE) = :P1_UNIT_NO))

  • Why I can not send correct content in webserver?

    hi,All:
    I write some to send a email that have attachment, and it look ok when I run it in IDE, but when I run it in the webserver(jetty), I get a email like this:
    ------=_Part_2_26331059.1232704896093Content-Type: text/plain; charset=us-asciiContent-Transfer-Encoding: 7bit fdsfdsf------=_Part_2_26331059.1232704896093Content-Type: application/octet-stream; name=UK5.PDFContent-Transfer-Encoding: base64Content-Disposition: attachment; filename=UK5.PDFContent-Description: UK5.PDF JVBERi0xLjQKJeLjz9MKNCAwIG9iaiA8PC9GaWx0ZXIvRENURGVjb2RlL1R5cGUvWE9iamVjdC9M
    and subject are disappeared.
    does anybody can help me?

    thank you for your help, I found here have 3 java mail in my classpath, 1.4.1, 1.4.0 and geronimo-javamail_1.4_spec, remove 1.4.0 and geronimo-javamail_1.4_spec, it is ok now.

  • Captivate Quiz not sending back input

    I have created a captivate movie that has one question that
    is essay format. it is emailing when a person uses the movie, but
    not sending me the information they are putting in the essay box.
    how can i make the movie send back the users answer?

    Did you export this as standalone or swf? Standalone (.exe)
    does not seem to email results once complete. Try exporting as swf
    to see if you get better results.

  • Why can I not import pictures any more? Lightroom says "Your Lightroom 5 64-bit does not work correctly"

    Why can I not import pictures any more?
    Lightroom says "Your Lightroom 5 64-bit does not work correctly"
    Technical informations:
    PC with Windows 7 64-bit, Lightroom 5.7.1 64-bit installed.
    What I have done:
    I downloaded the newest LR 5.71 and installed it again - mode repair; without success
    I checked my PC with Norton 360: full scanning and optimizing registry
    I restarted the PC and than I installed the LR 5.7 again - repair
    Trouble 1:
    Two days ago I could work with my LR 5 and to import pictures from a SD was no problem. Now I can start LR 5 and I can watch/modify pictures, but as soon as I try to import new pictures LR 5 stops and gives the message "your LR 5 64-bit does not work correctly - searching for solution". I have not changed anything in my computer since lasttime LR 5 worked properly, only the registry was optimized by Norton 360.
    Trouble 2:
    I live in Switzerland and my language ist German. I dit not find a place where I can present my problem in German, e.g. a phone number oder email-address oder german-chat. My English is to week for a discussion for computer problems and do understand it.
    Help:
    I would very appreciate if anybody can help me, either to trouble 1 or to trouble 2. Thanks.

    Sehen Sie diesen Beitrag:
    Photoshop CS4 & Lightroom 2.6 X64 funktionieren nicht mehr
    Wacom Tablet-Treiber-Problem?

  • TS1307 I am holidaying in Auckland using my daughters orcon internet account for sending mail but it will not send. I am sure I am putting in the correct information but it still says orcon offline. I have spent half an hour with Orcon putting in correct

    I am holidaying in Auckland using my daughter's Orcon internet account for sending mail but it will not send. I am sure I am putting in the correct information but it still says mail.orcon.net.nz(Offline). I have spent half an hour with Orcon putting in correct info. They do not know how to help me further and neither does telstra clear, my own internet provider.
    Any advice appreciated.

    On the Mail menubar > Mailbox, make sure Take all accounts online is selected.

  • Microsoft Outlook 2010 The delegates settings were not saved correctly. Cannot activate Send-on-behalf-of list. You do not have sufficient permission to perform this operation on this object.

    I am trying to assign delegation to a user and I receive the following message.
    The delegates settings were not saved correctly.  Cannot activate Send-on-behalf-of list.  You do not have sufficient permission to perform this operation on this object.
    We are using 2010 for the server and client.  There are only specific mailboxes that this is happening for after being migrated from Lotus Notes.  The user can use their mailfile fine however it is just the delegation that appears corrupted somehow. 
    I'm not sure how to fix this.  I have checked the access through the security tab in ad and that looks fine.
    Any help would be appreciated.

    I did some more digging and I solved it.
    This would be the solution:
    In Active Directory Users and Computers
    -Click on VIEW
    -Click on ADVANCE FEATURES  (this is important otherwise you won't see
    the complete list in the next steps)
    -Click on the USERS container
    -Find the problem user's account
    -Right mouse the account and click on PROPERTIES
    -Click on the SECURITY tab
    -In the top box, click on the SELF account
    -In the bottom portion of the screen make sure the READ PERSONAL
    INFORMATION  & WRITE PERSONAL INFORMATION  should both be checked for
    ALLOW
    If you can compare the permissions for 'SELF' with another user you probably should set them accordingly to be safe. I noticed that for the user where setting delegates (SOB) did
    not work, more than those 2 permissions were missing.
    Good luck!
    David

  • Captivate Quiz Not Reporting Correctly in LMS

    I am using Captivate 5.0 to publish a project to an EKP LMS. I am able to get the file to show complete in the LMS, but the quiz is not reporting correctly. Instead of a percentage it is reporting the number of points earned. Is there any way to have a percentage reported instead? I would appreciate any suggestions.  Grace

    Hi Grace,
    Can you check the Highlighted part and reset your Radio button to 'Percentage'--
    Thanks,
    Anjaneai

Maybe you are looking for

  • Cascading Prompts - Display issues

    Hi all , I built a Cascading Prompt report in Answers and intergrated in one of my dashboards. Now in Dashboard I want it to show as a report but the complete report dispayed as simple Prompt (with 1st input ) .When I click on 1st input the prompting

  • Skip 1 Line in ALV report.....

    Hi Experts, I have made ALV report in which user wants one blank line after each row. How to skip one line after each row in ALV ? Yusuf

  • Currency configuration in classical scenario

    Hi all, I am working on a SRM 3.0 in a classical scenario. I checked at IMG (SAPWAS->General Settings->Currencies) that there are lots of customizing that can be done here (currency codes, decimal places, exchange rates, quotation, expiring curencies

  • Kalman estimation - Thermocouple

    Hello The attached VI is a trial to estimate a correction for a thermocouple measurements. The reference transfer function is converted to a state-space model to use it for the estimation of the actual temperature. My problem is in the last block, th

  • Error after closing Firefox

    Sometimes when I close Firefox I get error and nothing happens. I dont know why this happens, and everything except this. [http://i33.tinypic.com/2mxe7ur.pngm image]