Embedding an Interview into a webpage

We can embed the wizard within a page using an iFrame, but when we do this it keeps saying that “The interview session has expired.”. 
Can anyone assist in troubleshooting this issue?

Hi Jasmine and Fiona,
We are still have difficulties. See below the info I have been provided by our Web Services Team:
We’d already looked at the two help topics that they’ve linked to below and I believe we’ve got the correct code snippet:
<iframe height="580" src="https://tra-opa.custhelp.com/tra_opa/web-determinations/startsession/TRAWizardv3" width="100%"></iframe>
We’ve even tried putting it in an (extremely) simple HTML page and we still get the same issue.  I’ve attached a copy of the page for your reference.  We’ll need to investigate further.
We will need to resolve this in order to move our 'wizard' rulebase into a production website.
Thank you
Bryce

Similar Messages

  • Embedding MP3 files into dreamweaver webpage

    I've embedded mp3 files into my webpage, but every time someone opens the page, they are prompted to either open or save the file.  I want the viewer to be able to play the song using the embedded player, without the prompt.

    Embedded players are very old school.  And it won't work for many since they need a player and appropriate browser plugins installed on their end.  The modern approach is HTML5 <audio> which is widely supported by all browsers, including mobile and tablets.  For an example of HTML5 audio, copy and paste this code into a new, blank document.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Audio Demo</title>
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <style>
    header {
        width: 500px;
        margin: 0 auto;
        text-align: center
    audio { color: red }
    figure {
        margin: 20px auto;
        padding: 20px;
        width: 500px;
        text-align: center;
        border: 1px #ccc dashed;
        clear: both;
    figcaption {
        display: block;
        clear: both;
        text-align: center;
        font-style: italic;
        padding-top: 15px;
    dl {
        text-align: left;
        margin-left: 40%
    dt {
        clear: both;
        float: left;
        width: 4.5em;
        font-weight: bold;
    line-height: 150%
    dd {line-height:150%; color:maroon}
    </style>
    </head>
    <body>
    <header> <h1>HTML5 Audio Demo</h1>
    <p><a href="http://www.w3schools.com/html/html5_audio.asp">HTML5 Audio Tutorial</a></p>
    </header>
    <figure>
    <audio preload="auto" controls >
    <!--replace demo audio files with your own-->
    <source src="http://alt-web.com/Media/Fake-Empire.ogg" type="audio/ogg">
    <source src="http://alt-web.com/Media/Fake-Empire.mp3" type="audio/mp3">
    Looks like your browser is outdated and doesn't support the audio element.
    Please upgrade to a modern browser that does.
    </audio>
    <figcaption>HTML5 Audio using OGG &amp; MP3 files. <br>
    Works in all current browsers &amp; mobile devices.<br>
    </figcaption>
    </figure>
    <dl>
    <dt>Title:</dt>
    <dd>Fake Empire</dd>
    <dt>Year:</dt>
    <dd>2007</dd>
    <dt>Artist:</dt>
    <dd>The National</dd>
    <dt>Album:</dt>
    <dd>Boxer</dd>
    </dl>
    </body>
    </html>
    Nancy O.

  • Embedding interactive documents into a webpage

    Hi there,
    Does anyone know of a solution, in the catalogue of Apple Technologies, that would help achieve the following interactive « read-only » result of embedding a PDF or iWork document into a webpage? Example: http://dunod.ebrochure.fr/10-plaies-internet/netbook_dunod.php (no need to refer me back to web-based hosting solutions, I need something as DRM-safed as iBooks Author for iBooks Store, but for an author’s website!).
    Thank you

    Hi Jasmine and Fiona,
    We are still have difficulties. See below the info I have been provided by our Web Services Team:
    We’d already looked at the two help topics that they’ve linked to below and I believe we’ve got the correct code snippet:
    <iframe height="580" src="https://tra-opa.custhelp.com/tra_opa/web-determinations/startsession/TRAWizardv3" width="100%"></iframe>
    We’ve even tried putting it in an (extremely) simple HTML page and we still get the same issue.  I’ve attached a copy of the page for your reference.  We’ll need to investigate further.
    We will need to resolve this in order to move our 'wizard' rulebase into a production website.
    Thank you
    Bryce

  • Embedding a Slideshow into a Webpage - Help Please!

    Do any of you good people know a way of / have experience of creating a slideshow of images and embedding them in a webpage?
    I have created a flash slideshow through Photoshop, It will run as a webpage on its own, however I cannot get it to embed in an existing webpage in Dreamweaver. I am using Photosho[p CS3 and Dreamweaver MX2004
    If not, do you know of any other way that I can create a slideshow and embed it into my Dreamweaver page.
    Any ideas / advice would be gratefully and greatly appreciated!
    Thank you!

    In a word, jQuery.  Flash isn't as widely supported these days.
    A boat load of possible jQuery slide shows and image galleries:
    http://www.1stwebdesigner.com/css/fresh-jquery-image-gallery-display-solutions/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Embedding gigapan panorama's into a webpage

    Hello all,
    I'm having a little issue with embedding a panorama hosted by Gigapan into my webpage. I can successfully use this chunk of code to embed it:
    <iframe src="http://gigapan.com/xxxxxxx.html" frameborder="0" height="400" scrolling="no" width="100%"></iframe>
    I want to be able to zoom in and out of the panorama with the mousewheel WITHOUT simultaneously scrolling up and down on the webpage itself. Does anyone have an recommendations? I thought of maybe using onmouseover to lock the webpage from scrolling while on the panorama but couldn't find a way to use onmouseover in an iframe.
    Also I fully acknowledge that I am a huge noob
    Thanks for your help in advanced!

    Hi Phil and welcome to our community
    The Captivate output files are a bit like a house of cards.
    All elements are critical. Here's how they pan out.
    You upload all the files to your server. Normally in the same
    location.
    You point your user to the HTML file.
    User clicks the link pointing to the HTML file and it loads
    up into the browser.
    The HTML file looks for the standard.js file. Assuming it is
    found, more code is added to the HTML file.
    The MainMovie_skin.SWF is then loaded into the browser
    window.
    Internally, the MainMovie_skin.SWF knows to look for the
    MainMovie.SWF and it loads up.
    As each slide pointing to a .FLV is encountered, the .FLV is
    loaded at that time and plays.
    As for embedding into an existing page, you will need to sift
    through the code for the Captivate created HTML file for clues. Are
    you using a Web Development tool such as Dreamweaver, FrontPage or
    Expression Web designer?
    Cheers... Rick

  • Can you embed a jar into a webpage?

    Hi, I worked out how to embed my .class file into a webpage with <applet>.
    Im using netbeans which also creates a jar which includes my audio files in the archive.
    Could I just upload the jar file and embed that into a webpage?

    slenkar wrote:
    say if i just wanted to upload the jar to the server and nothing else, could it be embedded as an applet?Yes you can. You only need to mention the jar in your HTML. Don't ask me for specifics, it's been ages since I wrote an Applet.

  • Embedding FLV Video Into PDF Files

    I have been testing out embedding FLV files into PDF's to simplify presentations (no need for Powerpoint, DVD player, DVD player software, etc..).  It is a bit slow when a big video file will load, but I think it is worth it for the simplified presentation method.
    My problem is this, whenever I embed an FLV file into a PDF, it seems to degrade the quality down a notch or two.  I am not concerned about file size since these will always be played locally from a hard drive or CD so I created the embedded FLV file to be high quality and very crisp (720 x 486, ~2200kbs bit rate).  However, no matter how good a file I embed, after it becomes embedded it always looks worse.  At this point, it has mainly been trial and error, but the original quality does not seem to matter as to how it will look in the PDF.
    Does Acrobat Pro re-encode the video no matter if it is FLV or not?  And is there anyway to change the settings so it does not alter the existing quality?
    Thank you.

    Are you inserting a screen capture FLV of the whole screen.  I use camtasia Studio to capture my desktop in video... and if the playback is NOT at the same size as the original...then it can look blurry.

  • Embedding LR4 Gallery Into iWeb

    Hello,
    After looking at many options, I had decided to use Airtight SimpleViewer in Lightroom 4 to create photo galleries with the intention of embedding these galleries into my website created with iWeb (3.0.4).
    However, I am stumbling at the html snippet stage.
    I have tried both uploading the gallery to my FTP site as well as exporting the gallery and then using Fetch to upload the gallery.
    I tried using the html snippets reported in www.iwebfaq.org:
    <iframe src=
    "http://web.me.com/username/Slideshow/index.html"
    style="width:615px; height:500px;
    border-color:#990033;
    border-style:solid;
    border-width:0px"
    scrolling="yes" >
    </iframe>
    Can anyone tell me what I am doing wrong?
    Thanks

    I put the slideshow folders into my public folder in my Dropbox:
    When I insert the following into the HTML snippets, I don't get the Simple Viewer Gallery either in iWeb or on my blog after putting it with Fetch:
    When I click on the index.html file within the Public Dropx folder for the Ice Fishing slideshow, this is the link I get: https://dl-web.dropbox.com/get/Public/Slideshows/Ice_Fishing/index.html?w=AABKs1 m6rARJTOqw4plIXFTCkvdEqU3X-D1J9yWfiSObZQ; and this is the result in both iWeb and my blog:
    I have Adobe Flash installed so that is not the issue. When I hit the Gallery link, I get this error message:
    Thanks for your help thus far. I think I am much closer, but still obviously doing something wrong.

  • How to enter excell formulas into a webpage using Dreamweaver CS4

    I am new at dreamweaver and recently purchased CS4 web premium. I also bought some training videos from an Abode affilated training center on dreamweaver CS4. I was wondering how to create or hide formulas into a webpage. I am trying to enter my MS excel calculator into a webpage. Can anyone help me?
    thanks
    Mike

    Unfortunately this will not work directly in DW.
    You probably have 2 alternatives and that is, A - use JavaScript (if you are new to DW/webdesign probably not an option). B - See if there is an extension or plug-in for doing something similar.
    For pre-built extensions for DW try:   http://www.adobe.com/cfusion/exchange/index.cfm?event=productHome&exc=3&loc=en_us
    An alternative (you would have to copy/paste the code yourself would be one of the following (also check with the Microsoft site as this is (hopefully) something that may have come up before)).
    http://developer.yahoo.com/
    from Microsoft, you could check out: http://www.microsoft.com/downloads/details.aspx?FamilyID=7287252C-402E-4F72-97A5-E0FD290D4 B76&displaylang=en
    HTH
    PZ

  • How do I insert video into my webpage?

    I am using Dreamweaver 8. I have taken my camcorder video and uploaded it to youtube and copied the mp4 file to my hard drive.
    I have created a page with several videos on the page. I created a screenshot of the video and sized it to the appropriate size. I then created a link to the video mp4 file. However it opens in a separate page.
    I want to have the video open on the same page in the same location as the screenshot. Click on the image and it just starts playing.
    I notice that I can get it to do this if it is a flash (.flv) file but since all of my videos are mp4 that won't work.
    How do I insert video into my webpage? Do I convert the mp4 files to flash? How? What do I do?
    Thanks
    Matt

    The help docs tell you how:
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSc78c5058ca073340dcda9110b1f693f21-7c9 fa.html
    or:
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSc78c5058ca073340dcda9110b1f693f21-7ca da.html
    Or other media objects:
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSc78c5058ca073340dcda9110b1f693f21-7c9 2a.html

  • Problems embedding an FLV into the timeline

    Hello,
    I'm interested in embedding a video into my swf file automatically. Therefore, I managed embedding an flv file onto the stage, but the problem is that after I give the embedded video an instance name and refer to the instance in a command (f.e change x,y coordinates or change width/height), on execution of the swf, the video stays frozen while the audio plays. If I don't refer to the embedded video instance, the video plays normally, just not placed correctly on the stage.
    Is there any way to place the video correctly???
    Thanks,
    Ori

    The problem here is that I want to automate the creation of the SWF. Therefore, I am using some sort of simulation program which takes control of GUI objects. The only problem I had was controlling the width, height, x and y controls that appear as simple text (not as regular text boxes),
    Anyhow, that's why I tried giving the embedded video an <instance name> and editing it through actionscript code of the FLA file. But that gave me the phenomena that I explained where the embedded video is placed & sized correctly, but it appears frozen with audio running normally in the resulting SWF.
    I hoped that there's a way to handle this problem (casting to a different object, using a certain function etc.), or that someone is familiar with this phenomena.
    Thanks and still waiting for any suggestions,
    Ori
    P.S - If you want to see the phenomena, take an FLA file and embed it into the timeline on the stage. Later on, give it an <instance name> (via control+F3 to open the properties window of the object). Insert code to the FLA:
    <instance name>.x = 0;
    <instance name>.y = 0;
    <instance name>.width = 100;
    <instance name>.height = 200;
    You'll see that the video does not play, while the audio is head normally.

  • Embedding Captivate content on a webpage

    Hi there - apologies if this is a simple question, but it's different to how I normally produce Captivate content (which is as a zipped file that is uploaded to our server with the URL placed in various locations on our site).
    Our web developers have asked if I can produce some demos that we have in a version that can be uploaded to Youtube.  I've tried converting the files to avi, flv, mp4 etc but lose the interactivity.
    Basically, they just want to be able to embed the files into pages on the website and they want them in the same format as Youtube accepts.  I'm not sure why they can't just embed the swfs - possibly they are too large and wouldn't look good on the screen (the files are 750x550).
    So - my questions are:
    - Does anyone know of a way to convert the swf files to a format acceptable to Youtube, but that keeps interactivity?  I have a table of contents and several click boxes throughout each file.  I lose all of this when publishing as f4v, and haven't been able to get Youtube to accept that file anyway.
    - Or, does anyone know how to embed a file into a webpage so that it is small to begin with but expands when the user starts it?  I did think we could just embed a thumbnail on the page that links to the swf which opens in a new window when clicked, but maybe there's a more elegant solution?
    Thanks!!

    Hello and welcome to the forum,
    If you want to keep interactivity a video format (like f4v) is not possible, you do need SWF. I'm also a bit puzzled by your mentioning the SWF to be too large, normally video formats will result in bigger file sizes. If you want to reduce the SWF-filesize you could try to choose a smaller resolution, put all the compression settings that are possible and choose a low image format. And reduce the preloader % (by default set to 100) to have the SWF played before it is totally loaded.
    Lilybiri

  • Embedding youtube channel into muse

    hello,
    I know how to embed a YouTube video into muse.
    Is there a way I can embed the channel so it can automatically show the most recent video that has been posted.
    Is this possible to do?
    Thanks Ben.

    Hi Ben
    You can try the steps shown here :
    http://stackoverflow.com/questions/9209217/how-to-embed-a-youtube-channel-into-a-webpage
    https://www.youtube.com/watch?v=GwuJRHMfGCM
    Thanks,
    Sanjit

  • Embedded OWD interview within a Siebel applet using a Symbolic URL

    I'm trying to embed the actual Web Determinations interview within a Siebel applet (this will allow our internal Siebel users to use the exact same interview as is avialable to external users). I'm using Siebel OOB Symoblic URL Configuration within an applet.
    Currently I have the Web Determinations up and running, the Siebel applet is correctly displaying the Web Determinations interviews and I can successfully click an interview link to begin an investigation inside the Siebel applet.
    My problem is that once I answer the first set of questions and click the first Submit button at the bottom of the very first interview page. My IE window appears to be overtaken by the Web Determination interview. It navigates me out of Siebel and the embedded applet where the interview was running and uses the entire browser window for the next interview page. The interview also stops responding.
    For my Siebel Symbolic URL configuration I'm using the following parameters.
    URL
    Url to my web determinations
    FixUp Name
    Inside Applet
    SSO Disposition
    IFrame
    any tricks to this (browser setttings, Symbolic URL settings, etc) or does anyone have experience embedding an interview inside a Siebel applet?

    Under WEB-INF\classes\configuration, in the expanded WAR located in the app server directory
    Open appearance.properties and scroll down a little
    You should see a section on frameset
    Make the following changes
    use-session-frameset=false
    frameset-top-target=_self
    commentary-target=commentary_frame

  • How can I embed ical into my webpage

    Is there an easy way to embed my iCal calendar into my webpage? I already know it can be done using Google Cal but I stopped using Google Cal.

    I don't believe this can be done directly from iCal. A work around might be to save it has a .pdf file and put that in the site. Or save and upload it to Google Calendars and then insert it into the site with the supplied code. There is software that will sync iCal with Google, but I'm sorry, I can't remember what it's called.
    Good luck

Maybe you are looking for

  • How can I stop ITunes from starting up on the Radio tab?

    Hi, at my workplace web radio sites are restricted. I like to connect my phone to the computer to charge and to listen to my playlists through the computer's speakers. It also gives me the ability to control the volume and tracks with my keyboard or

  • Error while creating MBO with web service data source

    Hi All,      I am trying to create MBO by selecting web service as a data source type in SMP 2.3. I am providing sharepoint webservice url of type wsdl with HTTP basic authentication. However, I am getting following error can anyone help me in that.

  • OCR for numbers in a PDF

    Hi guys I've got a situation where I need to take numbers from a PDF file which is a previsouly scanned-in copy of an invoice. The PDF will be opened alongside a data entry form for the user to complete the form with information from the invoice. How

  • Reports of opening and closing balnaces (Date Wise)

    Hi all           Here my ques is that i am not able to get opening balance of item day wise with  closing balance in excel reporting? Thanks & Regards Amit

  • How to Find Peak Concurrent Users in weblogic

    Hi If anyone can help. I have very simple questions regarding application monitoring. I need to write a program to get the following parameters. Heartbeat Successful Logins Heartbeat Login Failures Average CPU Utilization Average Concurrent Users Pea