Using the HTML 5 version from CP6

Can you send an HTML 5 version of a project directly to someone's mobile device or does it have to be hosted on an LMS?
We are thinking of sending out an example project to managers and thought we'd send it directly to their company phones.
Susan

Hi Susan,
You can host your content to a WebServer and your managers can view them on their mobile phone if tehy are on same intranet.
LMS is a convinient option, which would allow your users to have access, anywhere.
Real below about teh process of hosting it for iPad/Mobile Devices --
Hosting HTML5 output on web servers for iPad/iPhones
HTML5 output can be accessed on iPads/iPhones only through web browsers. Upload the entire HTML5 output folder to a web server root folder and make the URL available to your users. Your users can access the URL from their iPad/iPhone and view the content that plays within the web browser.
Webserver root for IIS: C:\Inetpub\wwwroot\
Webserver root for Apache: <Apache install folder>\htdocs\
Accessing HTML5 output from iPads/iPhones
HTML5 output is supported only on iPads with OS version 5 or later.
HTML5 output is supported only on the following browsers:
Internet Explorer 9 or later
Safari 5.1 or later
Google Chrome 17 or later
Type the following URL in one of the above web browsers:
http://<webserver_hostname>:<port>/<HTML5_outputfolder>/
For example, if the HTML5 output folder is MyCpProject, the URL will be:
http://localhost:80/MyCpProject/
Thanks,Anjaneai

Similar Messages

  • At times, I receive a notice from a site that Firefox needs an update. When I go to FIrefox, it says I am using the most recent version. What goes?

    I am wondering if these sites are trying to get me to download Malware or viruses. If I go to the Firefox site and it says that I am using the most recent version, I believe what Mozilla is telling me and ask myself "why would a site tell me I need to update"? I only trust Mozilla and will not blindly download something without investigating. Am I being paranoid?

    Thanks. You confirmed my suspicions, and I hope others do not fall for this. It usually happens with the site:
    1Channel
    or
    PrimeWire.ag (This is the name for the new 1 Channel due to its being hijacked)

  • How to find out the BI Publisher Version from the Excel output file

    Hi,
    Can any one tell me How to find out the BI Publisher Version from the Excel output file generated using BI publisher.

    Take a look at it in notepad or a text viewer... it's just a MIME/HTML file...
    Example:
    From: "Created by Oracle BI Publisher 10.1.3.4.0" <>
    Subject: Created by Oracle BI Publisher 10.1.3.4.

  • Using the HTML tags in Oracle Alerts

    Hi all,
    Can we use the HTML Tags in Oracle Alerts at Alert Details window in Text(D) Column?
    Please Provide solution to format the data which is sending to Mail from Oracle Alerts.

    What version of ebusiness are you running? You should be able to utilise html tags without an issue in 11i.

  • Deployment Rule Sets do not properly launch the latest available version from the JRE6 family when the jpi-version is specified by the RIA

    Issue Summary
    In Java 1.7 Update 71, Java 1.7 Update 72 and Java 1.8 Update 25 Deployment Rule Sets do not properly launch the latest available version from the JRE6 family when the jpi-version is specified by the RIA.  We've noticed this with Oracle Forms and Reports 11g where we have forms that specify Java 1.6 Update 20.  We used to be able to specify Java 1.6 Update 26 in our Ruleset, but now the only version a that works in our ruleset is Java 1.6 Update 20 which is the same version requested by the JPI-Version attribute of the jar.  The long term solution would be to upgrade Oracle Forms and Reports, however this isn't currently in the cards.
    RuleSet.xml Test
    Ruleset.xml

    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    &lt;ruleset version=&quot;1.0+&quot;&gt;  
    &lt;rule&gt;
       &lt;id location=&quot;*.javatester.org&quot; /&gt;
       &lt;action permission=&quot;run&quot; version=&quot;1.6*&quot; /&gt;
    &lt;/rule&gt;
    &lt;ruleset version=&quot;1.0+&quot;&gt;
    &lt;rule&gt;
       &lt;id location=&quot;*.internaldomain.name&quot; /&gt;
       &lt;action permission=&quot;run&quot; version=&quot;1.6*&quot; /&gt;
    &lt;/rule&gt;
    &lt;/ruleset&gt;
    Test 1 (Control)
    Installed Java Versions:
    – 1.7 Update 51 b13 (both x86 and x64 however x86 is invoked)
    – 1.6 Update 26 b03 (both x86 and x64 however x86 is invoked)
    Deployment Ruleset works as expected for both URLs
    Test 2
    Installed Java Versions:
    – 1.7 Update 72 (both x86 and x64 however x86 is invoked)
    – 1.6 Update 26 b03 (both x86 and x64 however x86 is invoked)
    The RuleSet works for JavaTester.org however on internaldomain.name we get the following error:
    With the trace logging turned on, I suspected the version attribute supplied by the RIA. I was able to trick Java by adding the following to my system deployment.properties file:
    deployment.javaws.jre.0.product=1.6.0_20
    deployment.javaws.jre.0.path=C\:\\Program Files (x86)\\Java\\jre6\\bin\\javaw.exe
    deployment.javaws.jre.0.enabled=true
    Because the RIA requests 1.6.0_20 it matches 1.6* from the deployment ruleset sooner than 1.6.0_26. However, if 1.6.0_20 is not available 1.6.0_26 should match according to the Deployment Rule Set documentation:
    http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/security/deployment_rules.html
    The version of the JRE that is used is determined by the following order of precedence:
    1. The current version of the JRE is used if it is available and matches both the version attribute and the version requested by the RIA.
    2. The latest available version of the JRE is used if it matches both the version attribute and the version requested by the RIA.
    3. The current version of the JRE is used if it is available and matches the version attribute.
    4. The latest available version of the JRE is used if it matches the version attribute.
    If no version is available that meets the criteria, then the RIA is blocked, and a message is shown to the user. To provide a custom message, include the message element.
    As a result:
    If Java 1.6.0_20 is listed in the version requested by the RIA and 1.6.0_20 is listed in the deployment.properties file, #1 matches.
    If Java 1.6.0_20 is listed in the version requested by the RIA, but 1.6.0_20 is NOT listed in the deployment.properties file the #1 SHOULD match, but doesn’t. It used to match up-to and including JRE 1.7 Update 51 however the ruleset appears to no longer match in subsequent versions.
    #2 should never match with our current Deployment Ruleset. It would match if we specified 1.7* as a version in the Ruleset.xml.
    #3 used to be broken as well after JRE 1.7 Update 51 however this bug has been marked as fixed. See: http://bugs.java.com/view_bug.do?bug_id=8032781
    I have reproduced this issue with Java 1.7 Update 71, Java 1.7 Update 72, and Java 1.8 Update 25 when one of these versions are installed with Java 1.6 Update 26.

    I can't seem to edit this post anymore, for some odd reason.
    So here goes;
    I found this post in NVIDIA's knowledge base;
    When installing an after-market graphics card into a certified Windows 8 PC with UEFI enabled, the s...
    The interesting parts in this post are as follows;
    When an after-market graphics card is installed into a motherboard with UEFI enabled in the system BIOS, or if the system is a certified Windows 8 PC with Secure Boot enabled, the system may not boot.
    UEFI is a new system BIOS feature that is provided on most new motherboards. A UEFI system BIOS is required in order for the Windows 8 Secure Boot feature to work. Secure boot is enabled by default on certified Windows 8 PCs.
    In order to get the PC to boot with a graphics card that does not contain UEFI firmware, the end-user must first disable the secure boot feature in the system's SBIOS before installing the graphics card.
    Note: Some system SBIOS's incorporate a feature called compatibility boot. These systems will detect a non-UEFI-enabled firmware VBIOS and allow the user to disable secure boot and then proceed with a compatibility boot. If the system contains a system SBIOS the supports compatibility boot, the user will need to disable secure boot when asked during boot process
    This leads me to believe that the BIOS update that wrecked my setup was 9SKT58A/9SJT58A, which only contains one change;
    "Adds support for updating BIOS from a WIN7 BIOS to a WIN8 BIOS".
    I've just ordered a cheap UEFI-compatible GT640 from Gainward, so I hope I'll be able to try that out this weekend.

  • Using the HTML SAP GUI inside the Enterprise Portal?

    Hello everyone
    In our company we plan to set up the SAP Enterprise Portal (NetWeaver 7.0). The first application we want to provide inside the portal is the SAP GUI that connects to our SAP ERP 2005 system via single sign on. Therefor two different approaches exist:
    1: Using the standard SAP GUI inside a portal iView. In this case every client pc needs the SAP GUI installed.
    2: Using the HTML SAP GUI. In this case we have to set up the integrated ITS in our SAP ERP system.
    Now I have some questions about the second approach. Is the functionality of the HTML GUI equal to the functionality of the standard GUI? If not, what are the restrictions? How high is the additional load on the network and SAP ERP system caused by the HTML GUI? Would you recommend this approach for a system with more than thousand SAP users?

    Hi Marc,
    At least if you consider using webgui, you should test the transactions properly as there are some issues for example with scandinavian characters and lines visible in lists of search helps.
    Also you might want to consider the limitations of the screen resolutions and space which the portal framwork already takes from the gui. This of course is a topic for both HTML/SAP GUI's.
    Kind regards,
    Ville

  • How to find out the BI Publisher Version from the Excel output generated.

    Hi
    Can any one tell me How to find out the BI Publisher Version from the Excel output file generated using BI publisher.
    Edited by: 781689 on Aug 1, 2010 10:22 PM

    Hello,
    This forum is the "Oracle Reports" OTN Forum.
    The "BI Publisher" OTN Forum is here :
    BI Publisher
    Regards

  • Before using the current Mac version Yosemite, I did not have an Administrator password.  It seems now that one is required to unlock and make changes in settings.  I have tried all my usual passwords but to no avail.  any ideas???

    Before using the current Mac version Yosemite, I did not have an Administrator password.  It seems now that one is required to unlock and make changes in settings.  I have tried all my usual passwords but to no avail.  any ideas???

    Boot into Recovery. OS X: About OS X Recovery - Apple Support
    Select Terminal from the Utilities menu.
    At the prompt type,
    resetpassword
    Hit return.
    Follow the prompts in the utility to select hard drive, then user.
    Reset the password.
    Exit the utility and restart.
    You will need to log in with your new password, but your keychain will not be reset.
    I’m not sure what access you’ll have to the old keychain since it didn’t have a password. You may be able to get into the keychain and reset the password to match your login password.

  • I have a macbook white (Snow leopard), just started using mac, Is there anyway we can use the Iphone Apps( downloaded from ITune) on Mac

    I have a macbook white (Snow leopard), just started using mac, Is there anyway we can use the Iphone Apps( downloaded from ITune) on Mac, they are getting saved in Mobile applications and have ipa extension

    The operating systems for iOS devices and for Macs are completely different. Applications written for iOS won't run on a Mac no matter what fiddles you try with it. You can sometime extract data by opening the package, but it still won't do you any good. Look in the Mac App Store in your Applications folder to see if there are Mac versions or similar programs (iTunes login required).

  • How to get the HTML Source code from the active browser ?

    Hi All,
    I need to get the HTML Source code from the active browser (IE). I tried with the below code, but I am not able to get the Source code all the time, with respect to the different applications (http or https) and the user authentication has to be changes in few applications (_I dont know or not able to given that in the below code_). More over there is also a dependence of the URL to get the HTML Source code.
    Therefore what I feel is getting the HTML Source code from the given or active browser will be consistent than the URL. Since the Source code is available in the browser (IE) . Please help me with a sample code to achieve this . . . !
    HTMLDocument doc=(HTMLDocument) kit.createDefaultDocument();
    doc.putProperty("IgnoreCharsetDirective", Boolean.TRUE);
    URL url = new URL(strURL);
    Reader HTMLReader = new InputStreamReader(url.openConnection().getInputStream());
    kit.read(HTMLReader, doc, 0);Thanks in advance,
    Regards,
    Jothi Venkatachalam
    Edited by: j0o on May 7, 2009 3:11 AM

    The simple answer is: you don't.
    Not only is it simply not possible, but the entire concept of "the active browser" doesn't exist.
    You were on the right track with your code to retrieve the page directly from the server, but as you noticed that code will only work for regular http connections.
    For https and other protocols you will need to use appropriate libraries for each protocol. Something like Apache Commons can help you with that. There are networking libraries in there for a lot of commonly used protocols.

  • Iphone 4 sync issue -  My iTunes is not able to sync the iPhone 4. I'm using windows 7 32bit. At the first step it gets stuck refelcting backing up the phone then nothing happens for ages. I'm using the latest iTUnes version, does anyone have similar prob

      My iTunes is not able to sync the iPhone 4. I'm using windows 7 32bit. At the first step it gets stuck refelcting backing up the phone then nothing happens for ages. I'm using the latest iTUnes version, does anyone have similar prob??? There are no error codes which appear and the iTUNES just gets hanged, is there a solution?

    Remove the song in question from the sync list and see if the rectifies the problem.
    If it does, then iTunes believes the song no longer exists on your drive and that will need to be corrected.

  • Win 7 OS,64 Bit..Going back to ver 10.3 as I wish to use the cdbackup/restore version..I

    Win 7 OS,64 Bit..Going back to ver 10.3 as I wish to use the cdbackup/restore version..I
    wish to restore to my PC only..My aim is delete all  music files from 11.1.5.5 (a bummer)
    then uninstall it so I don't think I have to consider the itl and.xlm files..Am I thinking
    okay?.Starting 10.3  from scratch...Any foreseeable problems here?..Nicolino

    nicolini wrote:
    Will I find the"Previous ITunes Library Folder" in the 10.3 download...All cd/dvd backups are from my collection of cds....
    No. Your iTunes library folder (normally inside User's Music) will contain your main iTunes Library.itl database file and, if you've updated iTunes at some point, a collection of archived .itl files made during some of those updates is placed in a subfolder called Previous iTunes Libraries.
    Ah, perhaps I have misunderstood. Do you mean that you are trying to restore a set of iTunes backup CDs/DVDs made with an earlier version of iTunes or that you want to backup the library that you have now?
    I may be wrong, but I thought the current version of iTunes retains the ability to unpack a backup set made with an older version of iTunes. Having never relied on the feature I don't have much experience with it. If you're trying to backup your library now a folder cloning tool such as described in this backup tip is a better way to go.
    tt2

  • I have just been told by Adobe that I have to UNINSTALL ALL PREVIOUS VERSIONS OF THEIR APPLICATIONS IN ORDER TO USE THE NEW 2014 VERSIONS.

    I have just been told by Adobe that I have to UNINSTALL ALL PREVIOUS VERSIONS OF THEIR APPLICATIONS IN ORDER TO USE THE NEW 2014 VERSIONS. No software update is worth the time it will take to do that!!!!! I don't know about the rest of you but I am woefully disappointed in Adobe. I pay on time every single month SINCE CREATIVE CLOUD BECAME AVAILABLE and now they place this on me? NOT HAPPY.

    THE LATEST AND THE LAST:
    Oh, and I'm on a MAC, not a PC so how could my database be corrupted?
    Shruthi: The caps.db file is located in Library/Application Support/Adobe/caps folder
    Shruthi: Can you try uninstalling from Adobe installers.
    Susan Meredith: You folks don't understand. Most of us are very excited at the new "bells and whistles" that Adobe has introduced and in the past we've been able to QUICKLY update to the new version. We haven't had to uninstall anything to get the new. We are all working and have deadlines. This is A HARDSHIP ON ADOBE'S USERS AND THEY NEED TO FIX IT ON THAT END. Or give up some monthly fees.
    Susan Meredith: There are many ways to uninstall. I can do it through "CleanMyMac". But now I don't trust that Adobe's programs will actually download and then I'm in trouble...and out of business.

  • Why does iTunes/iPhone 4S insist it can't find a song on my PC or my phone when it is on both? This is resulting in me being unable to use the ringtones I created from these songs, but I can still play the songs.

    OK, so I'm clearly a newb. I thought if I asked a question, it would post, and now I'm being told to post a comment, so I'm asking the same question again. Sorry I sound like an idiot. I'm new to this apple/mac stuff.
    Why does iTunes/iPhone 4S insist it can't find a song on my PC or my phone when it is on both? This is resulting in me being unable to use the ringtones I created from these songs, but I can still play the songs.

    If you have added the ringtone file correctly to iTunes, it will appear under iTunes 'Tones' library.
    If you don't find Tones library in iTunes, go to iTunes menu EDIT/PRFERENCES under GENERAL tab, check the Tones Box under Library source to display Tones library in iTunes.
    iTunes accepts only m4r file as ringtone and has to be less than 40secs.

  • How to use the HTML tags in the reports.

    hi.
    can any one tell me how to use the HTML tags in the reports.
    i m using the forms 10 g rel 2 and reports 10 g rel 2 and application server 10g rel 2.

    Set the Contains HTML Tags property of an object to Yes, then the tags in the object's text (if any) will be used to format the object.

Maybe you are looking for

  • Database access in a MVC architecture

    Hi! I'm a bit confused with regards to where the database access code should be put in a MVC architecture. From reading various articles and posts on this forum, there seem to be a lot of different opinions. Some seem to put the database access code

  • OLE MSWord VB Objects

    With ActiveDocument.Sections(1)     .Footers(wdHeaderFooterPrimary).PageNumbers.Add End With Does any one know how to call this above MSWord VB object from an ABAP program using OLE Automation? Thank you guys.

  • Firefox asks to download like.php from sites with Facebook social button

    So, I don't know if this is a problem with one site or Facebook in general, but everytime I access this site, a download window for "like.php" appears four times in a row. I've seen the same problems in this forums when I searched for it, but none of

  • Process chains:Errors Occured..

    i have selected my info objects 0CRM_PROD in rsa1 and  i entered CALL MONITOR FOR BI OBJECT and then i got a monitor screen in that succesfull(42) it says...in that i have selected 0PRODUCT  > TODAY DATE> I FOUND THAT CR1 LIENT 100     02:04:56 (4 Fr

  • Authorization via Organization

    Hi HR Gurus, Do you have any idea how could I restrict authorization for Controlling object through organizational assignment of employees? Actually the problem is that I have several Cost Centers and I need to restrict the access of planning and rep