Alternate to IFrame

From what I understand, IFrame element should be used to display HTML. Unfortunately this element has been <a href="http://help.sap.com/saphelp_nw04/helpdata/en/e9/7652a84fada444bd11ca73670ce7dc/frameset.htm">deprecated in 2004s</a>, so what's the alternate ?
The problem is as follows:
We would have an "Accept" button on the view, which should pop-up with the legal language and a continue button. Once the user clicks on continue, he would be taken to another view. The legal stuff would come from a URL on the website. We would not like to hard code this as it is subject to change.
Thanks for the help.
Regards, Parag.

Parag,
If you are using WD ABAP then you can:
1. Load and parse HTML from URL (I guess ABAP has similar classes as Java's URLConnection & Co) to DOM document.
2. Transform it with XSLT to format acceptable by FormattedTextView
3. Show it on form using FormattedTextView.
For WD Java the only option is to still use IFrame. Also it is deprecated, no replacement exists.
Valery Silaev
EPAM Systems
http://www.NetWeaverTeam.com

Similar Messages

  • Alternate to iframe inside a CQ5 page

    Hi ,
    I need to load a content/mypage.htmlwhich has been developed using cq5 page component into a page component. i have used iframe to load the content.the html file has videos. here are the suggestions i needed.
    1. Alternate to iframe to load content in cq5.
    2. when i use iframe in safari 5.0, content gets collapsed.
    please help me to resolve these
    thanks,
    Raja R

    Hi Raja,
    Could you provide a little more detail?
    I think you're saying that:
    You have 2 pages - page A and page B
    You want to include some or all of the content of page A on page B
    If so - there are a number of ways you could go about this... Sling is very good at this kind of thing - as it allows you to include the output of rendering another resource at any time (check sling:include tag or sling.include within a scriptlet).
    A good start would be to try using the reference component, which uses Sling's include capabilities to dynamically include content from one parsys (ie on page A) in another (ie on page 2). If you edit the 'reference' property in the dialog directly, you can even include the whole page (header and all) although this is likely to generate invalid HTML.
    Hope this helps,
    regards,
    tom

  • The problem when using iframe

    I am trying to include a JSF page inside the iframe tag. But I have some problem here.
    The page that contains the iframe is like this:
    <html>
    <head>
    <title>IFRAME</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <IFRAME SRC="fakeMenu.faces" TITLE="menu" WIDTH=500 HEIGHT=500>
    <!-- Alternate content for non-supporting browsers -->
    <H2>book menu</H2>
    <H3>book menu</H3>
    </IFRAME>
    </body>
    </html>
    Here is fakeMenu.jsp
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <h:commandLink>
    <h:outputText value="#this is a fake menu"/>
    </h:commandLink>
    I got error like this:
    javax.servlet.ServletException: Component javax.faces.component.UIViewRoot@dcdeae not expected type. Expected: UICommand. Perhaps you're missing a tag?
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:864)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:800)
         org.apache.jsp.fakeMenu_jsp._jspService(fakeMenu_jsp.java:72)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:133)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:311)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:248)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
         com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:147)
         com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
         com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
         com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
    I also tried some other JSF tags in fakeMenu.jsp, and got similar error, UIViewRoot.... not expected type.
    Do you know what's going on?
    Thank.

    The page included by iframe should be a complete page. The include is different with tiles, which includes a subview. So here <f:view> is missed in fakeMenu.jsp.

  • Using JSF and IFRAMEs

    I have a basic JSF app that takes some input, does a request and creates a table on output. What I need to do with it now is to have the query "page" and results "page" in two iframes on the same page. Before the query has been run the second iframe should just be blank (or with some default text). After the query that frame should be populated but the query frame needs to still be there. I've managed to do part of this. The "search" page and the "results" page are in separate iframes:
    <%@ page session="true" %>
    <html>
    <head>
      <title>Frames</title>
    </head>
    <body>
    <table>
      <tr>
        <td width="100%" colspan="2">
          <iframe title="Synonyms Search" src="search.jsf"
              width="800" height="200">
          Alternate search content...
          </iframe>
         </td>
      </tr>
      <tr>
      <td width="100%">
        <iframe src="results.jsp" title="Results"
          width="800" height="800">
          Results....
        </iframe>
      </td>
      </tr>
    </table>
    </body>
    </html>The reason this page is not using jsf tags is that the iframes will need to contain other pages that themselves are not jsf (mostly servlets) and I wasn't sure I could make that work. Currently the problem is that previously the search page had a QueryBean that the results page accessed to create it's table of results. Now in iframes the results.jsp frame just has a jsp processing exception and running the query does nothing. I'm new to JSF so I'm sure there's parts I'm missing, these do work if I pull them outside the frames and write navigation rules in the faces-context.xml file.
    Thanks,
    Sarah

    nigeldeakin wrote:
    The first thing to ask is whether you are sure that
         @Resource(name = "jms/QueueConnectionFactory",mappedName = "queueConnectionFactory")
         private ConnectionFactory connectionFactory;is valid. Does it work when you use it in other places?No it is not working still giving me NullPointerException for it. I'm using JBoss AS and having hard times deploying a jms queue on it i used an xml file to configure the queue and here is the file
    <?xml version="1.0" encoding="UTF-8"?>
    <server>
         <mbean code="org.jboss.jms.server.destination.QueueService"
              name="jboss.messaging.destination:service=Queue,name=StockHistoryQueue"
              xmbean-dd="xmdesc/Queue-xmbean.xml">
              <depends optional-attribute-name="ServerPeer">
                   jboss.messaging:service=ServerPeer
             </depends>
              <depends>jboss.messaging:service=PostOffice</depends>
         </mbean>
    </server>i think it's not working because i have this null exception for queue factory.

  • JSP Session Timeout in multiple pages (iframes used)

    Hi,
    Here is my scenario. I have a JSP Page i.e. A.jsp in which I am setting a session timeout to 3 minutes. I also have another JSP included i.e. B.jsp in the same page (A.jsp) using the following code i.e.
    <IFRAME SRC="B.jsp" width="100%" height="800" frameborder="0" align="center">
             <!-- Alternate content for non-supporting browsers -->
    </IFRAME>I am also setting a session timeout to 1 minute in the B.jsp. Now if the session timeout in one of the pages i.e. A.jsp or B.jsp I want to route to a different page i.e. C.jsp.
    Now my problem is if the session timeouts in the B.jsp the C.jsp is shown inplace of the B.jsp page inside A.jsp. Means A.jsp still shows it's content at top and under it C.jsp is shown. I want to route to C.JSP page if a session timeouts in A.jsp or B.jsp and only show C.jsp.
    Any help is appreciated.
    Thanks

    Where exactly I put the javascript. Here is currently I am checking for the session timeout:
    String error = (String) request.getAttribute("Error");
        if (error != null)
            out.write("<center><strong>");
            out.write("<font color=\"Red\">");
            out.write(error);
            out.write("</font>");
            out.write("</strong></center>");
        response.setHeader("Cache-Control","no-cache"); //forces caches to obtain a new copy of the page from the origin server
        response.setHeader("Cache-Control","no-store"); //directs caches not to store the page under any circumstance
        response.setDateHeader("Expires", 0); //causes the proxy cache to see the page as "stale"
        response.setHeader("Pragma","no-cache"); //HTTP 1.0 backward compatibility
        String userName = (String) session.getAttribute("User");
        if (null == userName)
            request.setAttribute("Error", "Session has ended. Please login.");
            RequestDispatcher rd = request.getRequestDispatcher("C.jsp");
            rd.forward(request, response);
    ................The same code is in A.jsp and B.jsp. If I want to use the javascript to check if it's the top frame or not and redirect properly where exactly I need to put that code.
    Thanks

  • BEx keep reloading in IFRAME

    Hi,
    We need to embed BEx template and query in a HTML iFrame, the putting it in a simple html page like this.
    i-frame
    http://ep.negc.com.cn:50000/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?&TEMPLATE=ZHR_W001 i-frame
    but the page just keep reloading.
    I found the same issue in BEx in IFRAME 2004s there is a guy said "The relaoding problem for us was due to the "standard" URL which we changed into http://sd2n1v3.sap.kmd.dk:52200/irj/servlet/prt/portal/prtroot/com.sap.ip.bi.web.portal.integration.launcher?template=..."
    When i tried this, got u201C No esid foundu201D or ,Per Note 1166422, it says: com.sap.ip.bi.web.portal.integration.launcher is an SAP internal component and using the same in your iView URLs is not supported.
    Could anyone give suggestion?
    Edited by: Dongkai Li on Mar 30, 2010 11:26 AM

    Hi
    I was initially going to suggest you run the template from the WAD, and then use that URL, but I see that is the URL that you 1st tried.
    An alternate is to create an iview of the web template, then preview the iview, and use that URL. I get something like this:
    http://itretbidev.itretgrp.net:50100/irj/servlet/prt/portal/prtmode/preview/prtroot/pcd!3aportal_content!2fSpinneys!2fcom.sp.iViews!2fcom.sp.Retail!2fcom.sp.SAH!2fZD_RET_SAH_001?sap-config-mode=true
    Perhaps that will help you out.
    Cheers,
    Andrew
    Edited by: Andrew Lewis on Mar 30, 2010 11:32 AM

  • A weird issue involving iframe

    Hello
    Take a look at folloiwing demo application.
    http://apex.oracle.com/pls/apex/f?p=2174:18:2176889821918906:::::
    The region "goodluck" on the right side is the iframe from HTML region that has following code.
    <IFRAME src="f?p=&APP_ID.:17:&SESSION." 
    style="width:600px;height:600px" 
    name="details" 
    scrolling="no" marginwidth="0" marginheight="0" 
    frameborder="0" vspace="0" hspace="0"  />  Under the good luck region the report that you are see is from page 17.
    Now the issue
    The demo application as you can see is working without any issue.
    But when I exactly develop to my production application, it does not recognize above iframe. Instead, it opens up a separate window on IE with page 17 on it. In addition, when I remove radio buttons then the report works as expected , i.e. the tree node redirects output to desired iframe(just as shown in the demo). But when I put four radio buttons back, it does not recognize i-frame anymore and ends up opening a new window altogether.
    Any idea what could be causing this? I have checked million times by comparing demo app with my production app but could not isolate element that would cause the tree leaf redirect to new window instead of iframe :(
    Thanks,
    R
    Edited by: Rich V on May 22, 2010 11:01 PM

    Mark,
    Thank you for your feedback.
    As a last resort, I ended up deleting the HTML region(that has iFrame) and re-created. But now when I do, collapse and expand, the regions associated with remaining last three buttons dont show up.
    Actually, this is how i expect it to work.
    [1]. There is a region associated with last three radios. The first radio has tree associated with it.
    [2]. If first radio is selected, it launches the tree. When the tree leaf is selected, it will launch the iframe(where another page is being called)
    [3] If any other radio is selected it launches report region associated to each radio.
    Two problems are preventing me from achieving above.
    1)Click on collapse/expand buttons or any parent leaf on the tree node makes entire tree disappear and the iframe page keeps showing all the time no matter what radio is selected.
    2) All regions associated with radio 2,3 and 4 remains disappeared when iframe page gets loaded.
    Looks like radios dont work well on tree regions.
    That is why I am looking for some alternate designs and exploring possibility of displaying region from other page into current page without help of Iframe
    Please see my other post at : Cross referencing regions
    Thanks,
    R

  • Family Sharing - Your Family Is Managed By Alternate Apple ID

    All,
    I asked this in the iCloud Forum, but, now I think my problem needs to be discussed here based on on what I have discovered......
    I just got a new iPhone 6 Plus.  I set it up as new rather than restore from backup of my old iPhone.  I signed into my own iCloud account for iTunes/Apps, Family Sharing and etc. I am a parent/guardian and NOT the organizer.
    The issue is when I go to the App Store>Purchased on the 6 Plus, I notice the following message:
    "This iTunes account is setup to use Family Sharing with a different iCloud account than 'Organizer's Primary Apple ID'. Learn More"
    I do see my other family members and their purchases.  I am also able to download their purchases as well.  So Family Sharing on the App Store appears to be functioning properly with the exception of the message.  iTunes and iBooks do not show the message.
    My old iPhone and my iPad also do not display this message when I go to the App Store.
    This is what I have noticed on my iPhone when I go to Settings > iTunes & App Store > Apple ID: My ID > View Apple ID > Family Sharing
    "You are part of a Family.  The payment method for your Family is managed by 'Organizer's ALTERNATE Apple ID'......."
    The organizer has only signed into iTunes, iCloud and set up Family Sharing using the Primary Apple ID, so I do not understand why the Alternate Apple ID appears to be used in the background to manage our Family. I think this is what is causing the above error message.
    Any ideas deals on how to fix?
    Thank you

    Yeah - not sure why that is happening only for Apps. Might be best for you to give Apple Support a call. You are still within your 90-day period, so the support will be free of charge. Here's the link - just follow the prompts and it will take you to a page where you can set up a call:
    https://getsupport.apple.com/GetproductgroupList.action
    Sorry I couldn't be of more help
    GB

  • Path in IFrame

    Hi All,
    I have an IFRAME and i want to display a HTML file in iframe. Please let me know how to link the both ?
    I am trying to give as "c://Document and settings/username/desktop/filename" but its throwing runtime exception as Invalide URL.
    Please let me know how to find out the path of my HTML fine to link in to Iframe.
    -Pavan

    Pavan,
    Upload the file into KM and metion the file path in your inframe.
    To upload the doc into KM
    Add the content management role to your user id
    Content management -> explorer -> documents -> folder -> new -> upload
    Ram

  • Iframe content in YUI tab disappearing - only in firefox 11

    We have an internal web site developed with YUI which uses the tabview control along with some content provided through an iframe. When the page initially loads the iframe is displayed but when switching between the YUI tabs the iframe content disappears. This stopped working with the upgrade to Firefox 11. It was working with all previous versions including up to 10.0.2.

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • Need help to get alternate or better way to write query

    Hi,
    I am on Oracle 11.2
    DDL and sample data
    create table tab1 -- 1 millions rows at any given time
    id       number       not null,
    ref_cd   varchar2(64) not null,
    key      varchar2(44) not null,
    ctrl_flg varchar2(1),
    ins_date date
    create table tab2 -- close to 100 million rows
    id       number       not null,
    ref_cd   varchar2(64) not null,
    key      varchar2(44) not null,
    ctrl_flg varchar2(1),
    ins_date date,
    upd_date date
    insert into tab1 values (1,'ABCDEFG', 'XYZ','Y',sysdate);
    insert into tab1 values (2,'XYZABC', 'DEF','Y',sysdate);
    insert into tab1 values (3,'PORSTUVW', 'ABC','Y',sysdate);
    insert into tab2 values (1,'ABCDEFG', 'WYZ','Y',sysdate);
    insert into tab2 values (2,'tbVCCmphEbOEUWbxRKczvsgmzjhROXOwNkkdxWiPqDgPXtJhVl', 'ABLIOWNdj','Y',sysdate);
    insert into tab2 values (3,'tbBCFkphEbOEUWbxATczvsgmzjhRQWOwNkkdxWiPqDgPXtJhVl', 'MQLIOWNdj','Y',sysdate);I need to get all rows from tab1 that does not match tab2 and any row from tab1 that matches ref_cd in tab2 but key is different.
    Expected Query output
    'ABCDEFG',  'WYZ'
    'XYZABC',   'DEF'
    'PORSTUVW', 'ABC'Existing Query
    select
       ref_cd,
       key
    from
        select
            ref_cd,
            key
        from
            tab1, tab2
        where
            tab1.ref_cd = tab2.ref_cd and
            tab1.key    <> tab2.key
        union
        select
            ref_cd,
            key
        from
            tab1
        where
            not exists
               select 1
               from
                   tab2
               where
                   tab2.ref_cd = tab1.ref_cd
        );I am sure there will be an alternate way to write this query in better way. Appreciate if any of you gurus suggest alternative solution.
    Thanks in advance.

    Hi,
    user572194 wrote:
    ... DDL and sample data ...
    create table tab2 -- close to 100 million rows
    id       number       not null,
    ref_cd   varchar2(64) not null,
    key      varchar2(44) not null,
    ctrl_flg varchar2(1),
    ins_date date,
    upd_date date
    insert into tab2 values (1,'ABCDEFG', 'WYZ','Y',sysdate);
    insert into tab2 values (2,'tbVCCmphEbOEUWbxRKczvsgmzjhROXOwNkkdxWiPqDgPXtJhVl', 'ABLIOWNdj','Y',sysdate);
    insert into tab2 values (3,'tbBCFkphEbOEUWbxATczvsgmzjhRQWOwNkkdxWiPqDgPXtJhVl', 'MQLIOWNdj','Y',sysdate);
    Thanks for posting the CREATE TABLE and INSERT statments. Remember why you go to all that trouble: so the people whop want to help you can re-create the problem and test their ideas. When you post statemets that don't work, it's just a waste of time.
    None of the INSERT statements for tab2 work. Tab2 has 6 columns, but the INSERT statements only have 5 values.
    Please test your code before you post it.
    I need to get all rows from tab1 that does not match tab2 WHat does "match" mean in this case? Does it mean that tab1.ref_cd = tab2.ref_cd?
    and any row from tab1 that matches ref_cd in tab2 but key is different.
    Existing Query
    select
    ref_cd,
    key
    from
    select
    ref_cd,
    key
    from
    tab1, tab2
    where
    tab1.ref_cd = tab2.ref_cd and
    tab1.key    <> tab2.key
    union
    select
    ref_cd,
    key
    from
    tab1
    where
    not exists
    select 1
    from
    tab2
    where
    tab2.ref_cd = tab1.ref_cd
    Does that really work? In the first branch of the UNION, you're referencing a column called key, but both tables involved have columns called key. I would expect that to cause an error.
    Please test your code before you post it.
    Right before UNION, did you mean
    tab1.key    != tab2.key? As you may have noticed, this site doesn't like to display the &lt;&gt; inequality operator. Always use the other (equivalent) inequality operator, !=, when posting here.
    I am sure there will be an alternate way to write this query in better way. Appreciate if any of you gurus suggest alternative solution.Avoid UNION; it can be very inefficient.
    Maybe you want something like this:
    SELECT       tab1.ref_cd
    ,       tab1.key
    FROM           tab1
    LEFT OUTER JOIN  tab2  ON  tab2.ref_cd     = tab1.ref_cd
    WHERE       tab2.ref_cd  IS NULL
    OR       tab2.key     != tab1.key
    ;

  • I am told that my browser does not support iframes when trying to access a web site.

    This is Google's cache of http://sitetrail.com/askearth.com. It is a snapshot of the page as it appeared on Sep 19, 2010 10:44:02 GMT. The current page could have changed in the meantime. Learn more
    Full version These search terms are highlighted: history askearth com
    * Contact Us
    SiteTrail - Website News and Analysis
    * Business
    * Dev & Design
    * Entertainment
    * Mobile
    * Social Media
    * Tech
    Search in SiteTrail askearth.com (visit site) This data was last updated 6 months ago (update data).
    Site Profile Estimated Value: $5,582.16 USD Estimated Revenue: $7.60 USD per day $227.90 USD per month $2,772.81 USD per year Estimated Pageviews: 3,355 per day 100,648 per month 1,224,551 per year Alexa Rank: #447,581 Google Index: show google links Yahoo Index: show yahoo links Bing Index: show bing links History: show history Site Title: Interesting Questions - AskEarth Site Traffic
    Site Server Server IP Address: 140.174.79.37 Server IP Decimal: -1934733531 Server IP Location: Pordenone, Friuli-Venezia Giulia, Italy
    Your browser does not support iframes. Whois Information Welcome to the Network Solutions(R) Registrar WHOIS Server.
    The IP address from which you have visited the Network Solutions Registrar WHOIS database is contained within a list of IP addresses that may have failed to abide by Network Solutions' WHOIS policy. Failure to abide by this policy can adversely impact our systems and servers, preventing the processing of other WHOIS requests.
    To see the Network Solutions WHOIS Policy, click on or copy and paste the following URL into your browser:
    http://www.networksolutions.com/whois/index.jhtml
    If you feel that you have received this message in error, please email us using the online form at http://www.networksolutions.com/help/email.jsp with the following information:
    Whois Query: askearth.com YOUR IP address is 174.129.155.56 Date and Time of Query: Tue Feb 23 00:49:37 EST 2010 Reason Code: IE DNS Records Host Class Type IP TTL Target Other askearth.com IN A 140.174.79.37 7199 askearth.com IN NS 7200 ns53.worldnic.com askearth.com IN NS 7200 ns54.worldnic.com askearth.com IN SOA 7200 mname: NS53.WORLDNIC.com rname: namehost.WORLDNIC.com serial: 108121504 refresh: 10800 retry: 3600 expire: 604800 minimum-ttl: 3600 HTTP Headers HTTP/1.1 302 Found Date: Tue, 23 Feb 2010 05:59:34 GMT Server: Apache/2.2.11 (Unix) mod_fastcgi/2.4.2 PHP/4.4.9 with Suhosin-Patch mod_ssl/2.2.11 OpenSSL/0.9.7m mod_apreq2-20051231/2.6.0 mod_perl/2.0.3 Perl/v5.8.7 Location: http://askearth.com/go/home Content-Length: 417 Connection: close Content-Type: text/html; charset=iso-8859-1
    HTTP/1.1 200 OK Date: Tue, 23 Feb 2010 05:59:35 GMT Server: Apache/2.2.11 (Unix) mod_fastcgi/2.4.2 PHP/4.4.9 with Suhosin-Patch mod_ssl/2.2.11 OpenSSL/0.9.7m mod_apreq2-20051231/2.6.0 mod_perl/2.0.3 Perl/v5.8.7 Set-Cookie: id=11010246; EXPIRES=Sun, 01-Apr-29 00:00:00 GMT; PATH=/ Set-Cookie: pass=u0zit0yv; EXPIRES=Sun, 01-Apr-29 00:00:00 GMT; PATH=/ Set-Cookie: since=1266904775; PATH=/ Connection: close Content-Type: text/html Firefox Add-on SiteTrail Firefox Add-onPerform SiteTrail lookups via right-click menu straight from your web browser! Popular Lookups
    * google.com#1
    * facebook.com#2
    * youtube.com#3
    * yahoo.com#4
    * live.com#5
    * baidu.com#6
    * wikipedia.org#7
    * blogspot.com#8
    * msn.com#9
    Browse Lookups
    A B C D E F G H I
    J K L M N O P Q R S T U V W X Y Z Recent Lookups
    * askearth.com#447,581
    * evdenevenakliyatv.com#442,990
    * mytaskhelper.com#756,476
    * fikralari.net#639,299
    * typemytape.com#1,547,530
    * tmmod.info#1,078,434
    * torrentplus.org#233,938
    * communitycollegelistin...#430,008
    * cadbury.co.uk#104,852
    * myhobbyblogs.com#297,443
    Random Lookups
    * solidmastermind.com#931,183
    * homelegance.com#277,584
    * homepage-anleitung.de#1,091,134
    * icicigroupcompanies.co...#1,513,887
    * ptiboo.ch#744,058
    * fachportal-paedagogik....#312,102
    * lcpo.com#336,926
    * spitinet.gr#904,561
    * sportingpulse.com#37,069
    * v-pillsbuyutucuhap.com#543,342
    * sameskyboard.com#51,252
    * alparslanpazarlama.com...#1,444,281
    * ventausa.com#221,470
    * dentalmag.org#234,937
    * digitalfoci.com#1,214,872
    * blank-label.com#273,247
    * efun.ir#446,350
    * greatamericandays.com#579,258
    * it007.com#58,123
    * hairyclipz.com#760,892
    Navigation
    * Contact Us
    Categories
    * Business
    * Dev & Design
    * Entertainment
    * Mobile
    * Social Media
    * Tech
    Recent News
    * VP of Twitter Says Twitter is NOT A Social Network
    * Google Puts White Spaces To Use
    * YouTube Instant Experiment Gives Creator a Job At YouTube
    * YouTube Time Machine – A New Website To Waste Hours On
    * Google’s New Instant Search – Saving 11 Hours Every Second
    * Facebook Notes Gets New Tools
    Recent Lookups
    * askearth.com#447,581
    * evdennakliyateve.com#442,990
    * mytaskhelper.com#756,476
    * maximumwoman.com#639,299
    * typemytape.com#1,547,530
    * tmmod.info#1,078,434
    © 2010 SiteTrail. All Rights Reserved.

    I'm not clear on where you are seeing that text. When I view Google's cached page from the page found in this search
    https://www.google.com/search?q=site%3Asitetrail.com%2Faskearth.com
    It doesn't match yours exactly. There is an iframe with a Google map in it in the "Hosting Analysis" section, which in your pasted page seems to be the "Site Server" section.
    Which Google site did you search?

  • Unable to upload video files via iframe in safari version 3.0

    I m not able 2 upload video files via iframe in safari 3.0.
    i m facing this issue when i try 2 upload a video file via an iframe.
    file gets uploaded properly if i m not using iframe to upload the same.
    this issue is seen only in safari version 3.0 and not in the newer version i.e (3.2.1)
    do anyone has the asnwer for this problem.....???
    would be thankful to him/her...

    Are you using a BT Home Hub with the IP Phone attached. This holds onto the SIP port that iChat uses. There is no way to get the router to release this port.
    I had to return it all to BT as unfit for purpose and switched to Eclipse!

  • Recognizing alternate connection pool

    hi..
    Currently, If a connection pool fails due to a TNS failure, application instance also fails, it has lost connectivity.
    But I need, my application to recognize an alternate connection pool, such that if transactions time out on one connection, application would recognize that the primary pool is not responding and retry the transactions on a secondary data connection pool via the alternate DB instance.
    If I get the solution for this, it will be appreciable
    Thanks in advance
    Suresh

    Hi. Look at our documentation on multipools.
    Joe
    Suresh Kumar wrote:
    hi..
    Currently, If a connection pool fails due to a TNS failure, application instance also fails, it has lost connectivity.
    But I need, my application to recognize an alternate connection pool, such that if transactions time out on one connection, application would recognize that the primary pool is not responding and retry the transactions on a secondary data connection pool via the alternate DB instance.
    If I get the solution for this, it will be appreciable
    Thanks in advance
    Suresh

  • Indexing in alternate runs of a loop

    I would like to send data out of a for loop only in alternate runs like i=1,3,5,7,9....etc...But i want to use the indexing feature to send the data out of the loop..so any idea how this can be done..or do i need to store in an array and then send the whole array oout of the loop at the end of the loop?

    Not sure I completely understand. Is this data supposed to be used while the loop is running? If so, you need to use some other mechanism for getting the data out of the loop. The mechanism depends on who is the consumer of the data. You have lots of options: local variables, global variables, shared variables, queues, notifiers, etc. One should not be automatically discounted simply because somebody has a personal dislike of them. Although I'm sure at this point you'll get the usual flurry of local variable haters and global variable haters. Cue the bandwagons!
    If the data is to be used after the loop completes, then you can simply use a shift register to populate the final array. The best way to do this is to pre-allocate the array ahead of time and use Replace Array Subset inside the loop within a case structure that's driven by the loop iteration being even or odd. 

Maybe you are looking for

  • Report J_1IEWT_CERT getting cancelled, generating ABAP dump!

    A long running report J_1IEWT_CERT in background mode is getting cancelled after running for a while and generating the following dump : Error analysis     When changing or deleting one or more lines of the internal table     "\PROGRAM=J_1IEWT_CERT\D

  • Application crashes when calling DLL built with LabVIEW 2011

    Hello everybody, Our application calls DLLs built with LabVIEW 2010 SP1. We installed LabVIEW 2011 and built some DLLs. So far so good. If we start our application and run 2010 DLLs it still works fine. If we run a 2011 DLL just once no error happens

  • Backup to tape drive

    HI, We are running Oracle 11gR1 on AIX 6.1. We have a standalone tape drive attached to this server and I am wondering can i backup the database directly to the tape drive without media manager? Thanks, Denny

  • Equium L10 - Is running very slowly

    I have a Toshiba Equium L10 (496MB RAM, 1.5Ghz celeron M Processor, 37.2GB HDD) It has been running very slowly for a while now and am getting really annoyed with it. It takes like 8 minis for the desktop to load plus a few more mins for the programs

  • SSL implementation not available on WebSphere 4.0

    I am hitting a wall. I am trying to make an https connection from my servlet code on WebSphere 4.0 to another server. I've installed the jsse as an extension into the java/jre/lib/ext in the websphere directory. I've updated the java.security to the