Return Page (AICC) url

To date we have only worked with SCORM 1.2 training files in OLM. We are looking to launch a course from a 3rd party vendor and to test they are asking for our return page (AICC) url.
Does anyone know where I can find this to supply to this vendor?
Thank you,
Lisa Hart
Manager, Learning Management Services
Haemonetics Corporation
[email protected]

Hi Lisa,
One way is to set up a learning object with the tracking type of HACP (if you don't have one), offer it and set up a class, and enroll yourself.
When you launch AICC/HACP course, view the source of the OLM Player. There should be a variable in the source code of the page that says AICC_URL = with a URL value. That value is your return page (AICC) url.
Scott
http://www.seertechsolutions.com

Similar Messages

  • Read html from a cgi returned page using URL

    i have a problem with the following case.
    i want to quote google's searching result in my program, and what i do it like this.
    1> open a connection
    URL url = new URL("http://images.google.com/images");
    URLConnection connection = url.openConnection();
    connection.setDoOutput(true);
    2>post a parameter
    PrintWriter out = new PrintWriter(connection.getOutputStream());
    out.println("q=singapore+satellite+image");
    out.close();
    3>Read the result
    BufferedReader in = new BufferedReader(
                        new InputStreamReader(
                        connection.getInputStream()));
         String inputLine;
         while ((inputLine = in.readLine()) != null)
         System.out.println(inputLine);
         in.close();
    However, i get the following result:
    <HTML><HEAD><TITLE>Bad Request</TITLE></HEAD>
    <BODY><H1>400 Bad Request</H1>
    Your client has issued a malformed or illegal request
    </BODY></HTML>
    Press any key to continue . . .
    can anyone tell me what is wrong?
    thanks a lot.
    post on networking p2p.wrox.com

    Without looking it up, I seem to recall there's a setMethod() method, and you give it "GET" for a parameter. But you could look that up. With the Get method, the parameters are appended to the URL after a question mark, like this:
    http://images.google.com/images?q=singapore+satellite+image
    where as with the Post method, the parameters are sent in a separate stream, the way you wrote your program. Get can usually extend only to 255 characters (or some small number like that), Post is theoretically unlimited.
    If you look at the URLs that a Google search produces, you will see that it uses the Get method.

  • Code to call another Page Flow URL from one page flow URL

    Can anyone send me the code to call another pageflow url from one page flow URL.

    thanks...
    In my appication there is no Form page. Only based on Canvas in that ,
    i implemented Text box, Text Field And Drop down list etc..by own coding without using any abstract methods.
    I did every thing with in single Midlet file.While developng goes on i got the problem ,
    Like "your application exceeds the memorylimit you cant
    use more than 32Kb of byte code in Canvas"...
    So the application is not opened.
    I tried to call the next file in same package to proceed, i got it. codition goes to next file, but its not return back to the Main(MIDlet) file, throws the excepton as "Security exception".
    How to solve this problem,is any other way? please...

  • How do i send the username and password to yahoo web page through url

    how do i send the username and password to yahoo web page through url i.e as Query string so that my account in yahoo will open...

    If you don't mind using a library, then download and use the Apache HttpClient library. It takes care of all these details for you.

  • How to display the one BSP View page (not a start page)Through URL link..

    Hi Sir/Madam,
                 I want to open one BSP view page through URL link...
    Let me Explain clearly..
                I have an Z application ZHRRCF_APPROVAL..In this application approve.bsp file i have added som more Fields..and Finally I am going to click ApproVe Buton /Reject Button.When i click the reject button the the items are rejected.Its working fine.....
              My Requirement is :
                   1. I want to display the approval page directly when i click the URL link from mail box.--i am getting this .. No issues..(Got the URL link from function module)
                   2. After opening the approval page when i click URL link, when i click the reject button-- i am getting the error "The following Error Text was processed in the system GR2."Access via NULL object reference not possible"
                   3. How to proceed the this URL link without error .. the URL link is
    https://abd00093.de.abb.com:8200/sap(bD1lbiZjPTIwMA==)/bc/bsp/sap/zhrrcf_approval/application.bsp?objid=50003421&otype=NB&plvar=01&requestdate=20090121&requestedRsnCode=01&requestedstatus=1&requester=USRECRUITER1&SAPWFCBURL=https%3a%2f%2fabd00093%2ede%2eabb%2ecom%3a0000000000008200%2fsap%2fbc%2fwebflow%2fwshandler%3f_sapwiid%3d000000018491%26_saptask%3dTS51807979%26_saplogsys%3dGR2CLNT200%26_sapuname%3dLINEMANAGER%26_saplangu%3dE%26sap-client%3d200
    ( I got this URL directly using my own function module.. In this function Module i was not getting the SAPGUID -- the error is because of that i am not sure..)How to get this sapguid dynamically..
                    Please guide me to proceed this req asap..
    I am waiting for your reply ....Please
    Thanks and Regards
    Mohan,P

    Please have BPEL loggers both at domain and system level to DEBUG mode. Set all loggers to DEBUG as you are interested to see the entire sequence flow..however, some loggers give you unnecessary info ;/ apart from cube, activation, delivery, dispatch, persistence.
    Added to this, you might want to try SOAPUI, Fiddler, HTTP Analyzer.

  • Generalizing the return page number when linking to a page in another app

    Hello.
    I know how to link to a page in another app within the same workspace. However, my problem arises when the user tries to go back to the page in the first app.
    Is there a way to "generalize" the "return path". I do not want to hard-code the return page number within a "back link" element on the target page. I was wondering if there is some sort of substitution string I can use in the return http address that automatically "knows" what the returning page number is. Hope I'm making sense here.
    Thanks for any help/advice.

    Funky:
    I have tried some work but no success
    I don't know what you are asking of me. I have given detailed step-by-step instructions on how to implement what I suggested earlier on in this thread. Look at my postings on 9/13/2006. What part are you having trouble with?
    Could you be more specific?
    I'm afraid I am going to have to ask you the same question.
    if page is not submited (called through Tab)
    Apex standard tabs do submit the page and fire after-submit computations defined on the calling page before branching to the "current" page for the tab you click on.

  • Previous Page's URL in JSP/JSTL

    Dear Sirs,
    Could you please advice me how I could get the previous page's url( ie, the page the the user was visting before coming to the current page) in JSP/JSTL..
    Thank you in advance

    You mean the referrer? You can just get it from the HTTP header.
    String referrer = httpServletRequest.getHeader("referer"); // Yes, with the legendaric misspelling.

  • The returned page had no content type

    I'm trying to install a application OTA but get this error "The returned page had no content type, and therefore cannot be processed" . I get this on the 8900 and 8300, (4.6) the 8100 (4.5) works fine. I tried using different browsers, cleaning up cache and so on but nothing helps.
    Anyone got some idés?
    regards
    jol 

    The app may not be compatible with:
    1. the phone model
    2. the OS
    Check the app website for these before attempting to install them.
    Kijana
    Please remember to:
    1. Mark Accept as Solution on the appropriate post once your issue has been resolved
    2. Give Kudos to helpful posts (click the star next to the post)
    Thanks

  • IOS Content Filtering Using TrendMicro: Can I customize the block-page redirect-url?

    I have IOS content filtering using the Trend Micro subscription service working on a 2911 running 15.1.(3)T3 with the security license option and a 30 day demo Trend subscription.
    Once I figured out that the content filtering for Trend appears to be completely broken in 15.2 (even using docs for 15.2) I went back to 15.1 and it works great.
    Everything seems great so far except I would like to have a more 'fancy' or custom blocked page where a user can have a couple links to either go to the trend micro reporting page http://global.sitesafety.trendmicro.com/result.php or some other page, and maybe some branding so they know the page is coming from our network and is not some fake security thing or phishing attempt or whatever.
    I know I can use the 'parameter-map type urlfpolicy trend ' section to do a tiny bit of customization of the text that appears on the default blocked page display and there is an option for it to go to a simple redirect instead ('block-page redirect-url') but I wonder if anyone has any ideas on how to do more with either the built in page or the redirect-url to keep the information of what page the user was trying to access and why it was blocked (category etc.) while adding more features.
    Thanks!
    Oh, one last thing, this doesn't support any kind of 'user override' or anything like that does it? So that a network can have a filter applied but an admin could override the filtering to allow temporary access to something?

    Hmm... no thoughts over the weekend. Anyone?

  • Portal Page Dynamic URLS & Search Engines

    Hi,
    I have created a portal site. These portal pages urls are created dynamically.
    How can I optimize this dynamic (and long) URL for a search engine?
    I am having trouble getting them spidered and ranked in major search engines.
    Any suggestions?
    Thanks.

    Despite many posts on this issue, I am skeptical that there
    is a problem
    with search engines indexing pages with query strings. I have
    a number
    of pages with URLs like showdetail.cfm?articleID=25 and they
    are always
    indexed by Google and other search engines.
    It is my understanding it largely depends on how you link to
    the detail
    pages. If you have direct anchors to the detail pages Google
    will index
    them. If you use a form or something else, Google is much
    less likely
    to follow.
    For example:
    <a href="showdetail.cfm?articleID=25">The best red ball
    ever</a>
    <!--- This will be followed by Google to be indexed--->
    <form action="showdetail.cfm" method="get">
    <select name="articleID">
    <option value="25">The best red ball
    ever<option>
    <option value="26">The best green ball
    ever<option>
    <option value="27">The best blue ball
    ever<option>
    </select>
    <input type="submit"/>
    </form>
    <!--- This will not be followed by Google to index the
    detail pages. --->
    This makes some sense, because how can a robot complete a
    form even if
    it could determine it is for navigation.

  • Capturing xml data returned from a url post in a jsp page

    Hi,
    We are writing a interface which will capture data returned from an other website. The data returned will be in XML form.
    http://www.ecrm.staging.twii.net/ecrmfeed/ecrmfeedservices.sps?eCRMFeedInputXml=<twii><ecrmfeedinput><data%20method="Login"><username>[email protected]</username><password>password</password></data></ecrmfeedinput></twii>
    When the above url is executed in a browser, it required NT authentication. The username and password is getcouponed. Once the username and password is fed, we can see the output in the form of a xml. We require the xml in a String variable in a jsp page. We need to know the steps on how to execute the url in a jsp page. We used the url object to do the same, but we get a error saying "java.net.UnknownHostException: www.ecrm.staging.twii.net".
    Can anyone help?
    Regards,
    Gopinath.

    Hi,
    I would like to know if I can use the java.net package to get anything out of a website which requires authentication. In this case NT authentication.
    Thanks in advance,
    Gopinath.

  • Still Can't Figure Out Returning to Page with URL Parameters

    Hi,
    I am trying to figuring out how after submitting a form to
    return to a previous webpage with URL parameters in it.
    Any ideas?
    Thanks,
    Craig

    I am using dreamweaver and coldfusion. I have been searching
    everywhere for the answer so if you can shed some light on this
    that would be great.
    Thanks,
    Craig

  • Workflow task hyperlink with [%Current Task:Form_URN%]&Source= not returning to Source URL

    I've successfully used the format [%Current Task:Form_URN%]&Source=http://server/site/list/mylist/allitems.aspx
    in SP 2010 workflow emails to return the user to the All Items view of the main list, rather than to the task list, after completing the task. For some reason, this doesn't work in a 2010 workflow running on SP 2013. The user gets returned to the All
    Items view of the task list, which I think is quite confusing. Any idea why this might be happening? I see no obvious difference between the two URLs that are produced in the different environments.
    Thanks

    Hi,
    I understand that you use SharePoint Designer 2010 approval process workflow running on SharePoint 2013.
    I try to reproduce the issues, however, everything works well.
    In my on SharePoint 2013 environment, I can get the URL as below in the email body:
    https://site2013name/_layouts/15/WrkTaskIP.aspx?List=a1a1c6c3%2D8235%2D4773%2Db4a4%2D20f548523582&ID=9&Source=https://site2013name
    /Lists/test/AllItems.aspx
    Then I open it in the Brower, after I approve the task, it return to the test list.
    In my on SharePoint 2013 environment, I can get the URL as below in the email body:
    http://site2010nmae/_layouts/WrkTaskIP.aspx?List=72d2f66d%2Db651%2D49ed%2D9851%2D89d4612ae739&ID=2&Source=
    http://site2010name/Lists/customlist/AllItems.aspx
    Then I open it in the Brower, after I approve the task, it also return to the customlist list.
    Please make sure you open the task in the Brower using the URL in the email body. If you open the task in the Task list, then after you approve the task, it will return the task all items page.
    Thanks,
    Linda Li
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Adding Dialog Page to URL Link

    Hi All,
    I have a requirement to add a dialog page ( with a message with Yes & No option) whenever User clicks on a link.
    The Home page has as Image(Express Receive) which has a destination URI as:
    OA.jsp?OAFunc=ICXPOR_RCV_REVIEW_PAGE&reqHeaderId={!ReqHeaderId}&porOrigin=ICXPOR_RCV_HOME_PAGE
    I want to extend the Controller on this HomePage so as to capture whenever the User clicks on the Image, I would prompt with the dialog page.
    Depending on the YES/NO, I have to return back to Home Page or process as per the Destination URI value.
    Pls advise on how to capture the CLICK on URL/Image by User in processFormRequest
    Rgds
    Rakesh

    Hi Sumit,
    Thanks for replying.
    There is no button through which the OAFunc is called.
    The Home Page has image withits Destination URI property set as OA.jsp?=OAFunc=(NewPage)
    I need to show a dialog page, whenever the Image is clicked.
    Rgds
    Rakesh

  • Default/Return page

    I am new for Oracle Portal. We are using Oracle Portal 10g (904) to create a company page. There are three tabs, Welcome tab for public users and registered users, and other two tabs, Product and Contact, for registered users only.
    I have problem for setting default tab -- Welcome page.
    When an user login, will see the Welcome page, then go to other tab, either Product or Contact tab, then logout. After click Return button, only see an inactive Welcome tab there without page content (We can see the Welcome page after click Welcome tab.). If the user login again even not same user, he/she will be the tab before the user logout.
    We want to see the active Welcome tab with page content anytime the user login/logout.
    I am not sure if I explain clear. Please help me to solve the problem. Thanks a lot for any help.
    Jane

    Hi Jane -
    I tested on a newer version of Portal, but it should work the same. To be sure I understood your issue - I tried the following:
    1) created a page viewable to Public
    2) added login portlet to page
    3) created 3 tabs
    4) tab1 made available to public
    5) tab 2 and tab 3 set to AUTHENTICATED_USERS to view
    6) viewed page ... ensured tab 1 was selected and copied the URL in browser
    7) go back to edit mode on the page and edited the login portlet and pasted the URL of Tab 1 selected in the success and Cancel URL's for the portlet
    tested by viewing the page, clicking to tab 2 or three and click logout ... when return tab 1 was shown and I could see the text item on the tab.
    I suggest checking that your URL's to make sure they reference tab 1.
    Regards,
    Candace

Maybe you are looking for

  • KT3 Ultra-ARU SB Live! problem when using onboard Promise MBFasttrak 1

    Hello ! I have one little problem with my motherboard. I know it's a little bit older compared to today's MSI production.. I have a MSI KT3 Ultra-ARU motherboard. I used only VT8233A southbridge's IDE until now, and everything worked perfectly. But n

  • Problem with SQL Server data on webpage

    Hello, we recently 'upsized' from Access to MS SQL Server 2005. I'm trying to port over my webpages but have run into a very bizarr behavior, some data from some fields in my table appear on my web pages and some do not. In fact, depending on where I

  • Java Printing in j2sdk 1.4.2_04

    Configuration: =========== S.O.: Windows 98 SE RAM: 256 Procesador: AMD DURON 800 Printer jobs: 50 Error: ==== no free system resources Problem: ======= The following code run ok in jdk 1.3, and is not run correctly in jdk 1.4.2_04 import java.awt.*;

  • How to adjust space between table lines in smartform

    Hi experts, I created a smartform and use table to display content. But I find the space between 2 table lines is always wider than the space between to text lines. I'm using font 10, 6 lines per inch in the style. Is there any way to adjust the heig

  • Do i have to pack all files into the war file/

    Hi, suppose a file (say bb.html, for example) within a war has a link to a document outside the war, say c:\aa.doc for example, after deploying the war into the j2ee application server, the linked file cant be found, simply because the file(aa.doc) i