Problem keeping web pages within Portal Framework

Hello,
I am having a difficult time trying to force a URL (e.g. my.yahoo.com) on my TopLevelPage(for Oracle Portal Ver.1) to remain under the portal frame when I click on a link on the web page itself.
Specifically, I can easily display my.yahoo.com on my TopLevelPage and keep it within the portal framework (eg displaying tabs, the Navigator button, etc.). However, when I click on an article, for example, it is displayed in the entire browser window. I no longer can view the tabs, Navigator button, etc. without hitting the back button. How do I keep the article under the portal framework?
Any suggestions would be GREATLY appreciated!
Thank you.

Check out Portal PDK and look for "iframe".

Similar Messages

  • Web page within a IFrame

    Hi all,
    I want to open a web page within a IFrame of Web Dynpro.
    How can I do it? Could any body give me the code and suggestion?
    Thanks & Regards
    sudip

    Hi Sudip,
    There is UI element called IFrame (see http://help.sap.com/saphelp_nw04/helpdata/en/e9/7652a84fada444bd11ca73670ce7dc/frameset.htm).
    Best regards, Maksim Rashchynski.

  • I'm having problems loading web pages on a vmware workstation 6.05 guest OS using Firefox 3.5.9. I can ping external websites fine from the guest. No proxy. Any ideas?

    I'm having problems loading web pages on a vmware workstation 6.05 guest OS using Firefox 3.5.9. Also tried the latest 3.6 version. I can ping external websites fine from the guest. No proxy. Any ideas?
    == This happened ==
    Every time Firefox opened
    == I installed a guest OS

    I'm using the same swear words as you. There are several threads about this problem - no answers.
    I have a LaserJet 8100N and 8150DN, get the 79.01FE error on the 8150 from print outs from Safari, Firefox, and Preview, for only some sites/documents. CNN.com has become my test site, seems I can crash the printer 90% of the time with their home page at any given time in the day.
    A summary of what I have tried:
    - Upgraded the firmware to the latest for both the JetDirect card and the printer.
    - Swapped the JetDirect cards between the 8100 and 8150.
    - Swapped ram on the 8150 board.
    - Disconnected external trays, bins, and removed extra RAM and hard drives from the 8150.
    - Tried setting the JetDirect link and matching switch port link to 100FD, 10HD, 10FD, 100HD, as suggested by a poster.
    - Tried having client's print to the printer through a XServer Print Server.
    - Can consistently create the error from multiple systems running 10.3.9, 10.4.5, and 10.4.6 (didn't have an install base of 10.4 before 10.4.5).
    Someone in the 'know' (which means they're likely not), said 10.4.7 will likely fix this. Being Apple has not even addressed that the problem exists (that I could find), I doubt the magic fix is a release away.
    Apple's software is triggering something that Windows systems appears not to be, so one could say it's an Apple problem; but ulimately it's HP's software/hardware that is at fault in that it is allowing their system to crash from input alone.
    G4/G5 XServes    

  • How to change the start up page in Portal Framework..

    Hii guys...
    I have created a webcenter portal framework application, with two new pages - a myLogin page and a Document page(which will display content from webcenter content).
    The pages are working fine.
    I simply want to display the myLogin page when i run the application as startup page.
    For this i have made changes into the index.html fine by changing the url to the "webcenter/portalapp/pages/myLogin"
    When i run the application for the first time its working fine..
    But when i am running it for the second time the page is automatically redirecting to some login.jsp and keep getting refresh.
    I also tried running myLogin page directly by making changes in the welcome file option in web.xml.
    I have deleted index.html from welcome file list and instead added the myLogin page.
    But when i run the application it automatically load the index.html and the same problem continues.
    Do anyone knows where i am making mistake or what changes should i make to simply display the myLogin page when i run the application..!!
    Thanks..

    Hi,
    WebCenter has its own forum: WebCenter Portal
    Frank

  • Problem creating login page in portal webapplication

    Hi all,
    I have been working with ADF for quite some years. Now, I have found webcenter portal on my path.
    I'm telling you this is square one all over again.......trying to figure out why the most simple things do not work like they should. like this one
    I'm on a project that has to build a new portal application. when you start it, you should be taken to a page where you have to log in.
    This is the only public page in the portal app. after logging in, you will see the start page of the portal app. From here you can go to other pages through a menu tree on the left side of the page (=within the page template).
    Anyway, I seem to no even get this to work........
    I have made two pages. a loginPage and a landingPage. I know you get a login.jspx and a home.jspx for free, but I want to make my own since I had problems attaching my custom pagetemplate. Some other thing that doesn't work........
    Anyway, I have made these two pages within the faces-config.xml I have tied the login_success action to my landingPage and the logout_success to the loginPage. I have also altered the login.html to redirect to my loginPage.jspx instead of the login.jspx On the loginPage Ideally, I would like to drag a login taskflow with a page-fragment where I have two inputfields and a button, which are connected to the o_w_s_l_LoginBackingBean. But that is for later, since it doesn't even work when I have put those two inputfields and button directly on my loginPage.jspx
    I have tried several different configurations using both the pages.xml file and the jazn-data.xml, but to no avail.
    What am I doing wrong? in the pages.xml, what should be the one with home as it's id? should both the loginPage and the landingPage be in there?
    Even when I manage to get the loginPage first at startup, the button (who's action is pointing to the doLogin of the o_w_s_l_LoginBackingBean) does nothing. Also nothing in the logs.
    Can anyone please tell me how I can get this to work?
    thanks a lot in advance.....

    Hi fisherman,
    custom login page can be created and it can be used in your custom template by simply creating your own login class :o_w_s_l_LoginBackingBean instead of using the default one.
    otherwise the second type of solution is :
    create a subform and write the following type of code in your jspx/jsff page.
    <af:subform id="sub_id">
    <af:panelFormLayout id="pt_pfl1" >
    <af:panelGroupLayout id="pgl1" layout="vertical" >
    <table>
    <tr>
    <td width="50%">
    <af:activeOutputText value="username"
    id="aot199"/>
    </td>
    </tr>
    <tr>
    <td width="50%">
    <af:inputText id="pt_it1" simple="true"
    value="#{o_w_s_l_LoginBackingBean.userName}"
    />
    </td>
    </tr><tr>
    <td width="50%">
    <af:activeOutputText value="password"
    id="aot198"/>
    </td>
    </tr>
    <tr>
    <td width="50%">
    <af:inputText id="pt_it2" simple="true"
    value="#{o_w_s_l_LoginBackingBean.password}"
    columns="30" secret="true"
    />
    </td>
    </tr>
    </table>
    </af:panelGroupLayout>
    </af:panelFormLayout>
    <af:spacer width="3" height="3" id="pt_s2"/>
    <af:panelGroupLayout id="pt_pgl14" layout="horizontal" halign="end" >
    <af:commandButton id="pt_logincb"
    action="#{o_w_s_l_LoginBackingBean.doLogin}"
    >
    </af:commandButton>
    this is a sample code,may be some errors are present.but it should work definity if you mention the login success page in faces-config.xml.
    Hope ,it will help you.
    Regards,
    Hoque

  • All of a sudden I have problems printing web pages wwith Firefox 3.6.8 (XP), but printing pdf pages is still fine (printing with other software as well)

    Suddenly I can't print web pages with Firefox 3.6.8 anymore, but pdf pages pose no problem - the same applies to printing with any other software

    Thanks edmeister for your trouble!
    I guess I should have written that I had tried the tips on 'reset printer' and 'does not print to paper at all' before I posted the question - to no avail.
    The printer starts as normal: it's the right printer selected, the dialogue window shows the progress of sending the data to the printer - and after that: that's it. It simply vanishes from the queue, and nothing happens.

  • Linksys active x problem with web pages

    When i install linksys active X for viewing live video with camera WVC54GCA i cannot open other web pages.I am using Windows XP and Internet explorer 8.Is there any solution for this problem???
    Solved!
    Go to Solution.

    Installation of Active X does not prevent any web pages to load, if you have installed Active X then you certainly should be able to view all the web pages inclucding the web pages that contains flash that helps in viewing certain kinds of files, and displaying animation...
    Adjust your browser settings : 
    Open an IE, click Tools >> Internet Options, then delete all files, cookies, history, forms...Goto "Connections", make sure Never Dial a Connection is checked, click on LAN Settings and make sure all the options are unchecked...Once you are done click on O.k...Close the IE and re-open it...
    Did you try to browse the Internet using a different web browser ?

  • Omniportlet problems using web page as data source

    When trying to set up an omniportlet using a web page as a data source
    I get as far as defining the sectioning and scraping parts of the web clipping process.
    When going on to the "filter" step of the process I always get an error message like:
    Error
    Failed to open specified URL. Check the following:
    is the URL is active; is there a valid proxy setting or,
    if HTTP authentication is required, check user name and password.
    [http://oslap03.agra.int:7777/portalTools/webClipping/webData/omniPortlet/wcserver/jsp/show.jsp?_orawcs_providerId=39337338&_orawcs_portletId=1&_orawcs_p
    ortletInstanceId=33731_OMNIPORTLET_39337338&_orawcs_userI
    d=-&_orawcs_responseType=rowsetRow]
    We are not using proxy servers for accessing external web pages in other cases
    (so I wouldn't think we needed to now either), and this even happens for web
    pages residing within our own network.
    Any tips are much appreciated.

    Please provide support for the above request.
    It appears that Oracle 10g reports doesn't support Web Service as pluggable data source. Is this option is available in Oracle 11g Reports or Oracle Discoverer Or OBIEE?

  • WRT330N Problems loading web pages (DNS??)

    I have a new WRT 330N.  I get a weird effect when using it.  While web surfing, it is common that the browser (IE or FireFox) will return an error that they can not find the web page.  If you reload many times you will finally load it.  I have a high latency link (Satellite), but before you suspect the satellite, my older Linksys router does not have this problem.  The error returns so quickly, I believe the router must be trying some kind of DNS caching or something.  After you have been to a site one time, it responds fine (for some period of time (Hours)), but the next day you get to enjoy the error again.
    This problem happens on both my PC and MAC.
    I have tried it without using any security (WPA or WAP) and with.
    I have changed my DNS servers, but am sure the ones I am using are quality.
    I have the 1.00.3 firmware.
    Thanks

    The problem is still here, but I think I have found more clues.
    If I look in the admin logs I se messages about blocked packets (No active connection). Could the router be loosing track of his TCP connections?
    Note: I tried turning off firewall security on the router.
    The text below has firewall on, but none of the three options is active.
    [INFO] Thu Jan 17 19:01:02 2008 Log viewed by IP address 192.168.15.102
    [INFO] Thu Jan 17 18:57:54 2008 Blocked incoming TCP packet from 205.188.7.134:5190 to 69.71.157.162:56745 as RST:ACK received but there is no active connection
    [INFO] Thu Jan 17 18:56:54 2008 Blocked incoming TCP packet from 205.188.7.134:5190 to 69.71.157.162:56745 as ACK received but there is no active connection
    [INFO] Thu Jan 17 18:54:54 2008 Previous message repeated 2 times
    [INFO] Thu Jan 17 18:54:46 2008 Blocked incoming TCP connection request from 69.3.240.218:4341 to 69.71.157.162:135
    [INFO] Thu Jan 17 18:54:01 2008 Previous message repeated 1 time
    [INFO] Thu Jan 17 18:53:54 2008 Blocked incoming TCP packet from 205.188.7.134:5190 to 69.71.157.162:56745 as ACK received but there is no active connection
    [INFO] Thu Jan 17 18:53:40 2008 Blocked incoming TCP connection request from 69.3.240.218:4341 to 69.71.157.162:135
    [INFO] Thu Jan 17 18:53:22 2008 Previous message repeated 3 times
    [INFO] Thu Jan 17 18:52:54 2008 Blocked incoming TCP packet from 205.188.7.134:5190 to 69.71.157.162:56745 as ACK received but there is no active connection
    [INFO] Thu Jan 17 18:49:54 2008 Previous message repeated 3 times
    [INFO] Thu Jan 17 18:47:26 2008 Blocked incoming TCP packet from 216.236.127.75:443 to 69.71.157.162:56756 as RST:ACK received but there is no active connection
    [INFO] Thu Jan 17 18:47:26 2008 Blocked incoming TCP packet from 216.236.127.75:443 to 69.71.157.162:56751 as RST:ACK received but there is no active connection
    [INFO] Thu Jan 17 18:46:35 2008 Blocked outgoing TCP packet from 192.168.15.102:56751 to 216.236.127.75:443 as PSH:ACK received but there is no active connection
    [INFO] Thu Jan 17 18:46:35 2008 Blocked outgoing TCP packet from 192.168.15.102:56756 to 216.236.127.75:443 as PSH:ACK received but there is no active connection
    [INFO] Thu Jan 17 18:46:34 2008 Time synchronized
    [INFO] Thu Jan 17 18:46:34 2008 Requesting time from 207.46.232.182
    [INFO] Thu Jan 17 18:46:23 2008 Blocked outgoing TCP packet from 192.168.15.102:56745 to 205.188.7.134:5190 as FIN:ACK received but there is no active connection
    [INFO] Thu Jan 17 18:46:23 2008 Blocked outgoing TCP packet from 192.168.15.102:56745 to 205.188.7.134:5190 as PSH:ACK received but there is no active connection
    [INFO] Thu Jan 17 18:46:18 2008 Initialization complete, starting DHCP server
    [INFO] Thu Jan 17 18:46:16 2008 DHCP Server Parameter 19 was added to the parameter database
    [INFO] Thu Jan 17 18:46:16 2008 DHCP Server Parameter 3 was added to the parameter database
    [INFO] Thu Jan 17 18:46:16 2008 DHCP Server Parameter 1 was added to the parameter database
    [INFO] Thu Jan 17 18:46:14 2008 Starting WAN Services
    [INFO] Thu Jan 17 18:46:14 2008 Gateway remote administration enabled on port: 8080
    [INFO] Thu Jan 17 18:46:14 2008 WAN interface is up. Connection to Internet established with IP Address 69.71.157.162 and default gateway 69.71.157.161
    [INFO] Thu Jan 17 18:46:14 2008 Bringing up WAN using Static IP Address
    [INFO] Thu Jan 17 18:46:14 2008 WAN interface cable has been connected
    [INFO] Thu Jan 17 18:46:13 2008 Wireless system with MAC address 0017F246E72F associated
    [INFO] Thu Jan 17 18:46:12 2008 DHCP Server Parameter 6 was added to the parameter database
    [INFO] Thu Jan 17 18:46:12 2008 LAN interface is up
    [INFO] Thu Jan 17 18:46:12 2008 LAN Ethernet Carrier Detected
    [INFO] Thu Jan 17 18:46:11 2008 Device initialized
    [INFO] Thu Jan 17 18:46:11 2008 Wireless Link is up
    [INFO] Thu Jan 17 18:46:11 2008 No Internet access policy is in effect. Unrestricted Internet access allowed to everyone
    [INFO] Thu Jan 01 00:00:00 1970 Loaded configuration from non-volatile memory

  • Problems loading web pages - Macbook Pro

    Hi all, so this has been going on a lot recently and I have no idea why.
    Websites on my Macbook Pro are slow to very slow to load, and sometimes won't load at all. For instance, YouTube hasn't worked on my laptop for approximately 2 weeks. The sites I go to most often tend to load alright, but there are times nothing will load. But it seems even in those times, my cell phone (which accesses my WiFi) loads webpages just fine when using my wireless internet.
    I've had the same internet provider at two different houses, and it worked just fine with my laptop at my last residence. I've upgraded my router (2 months ago, seemed to help some) so that it is better suited to handle the number of devices and square footage. I have 20 mbps internet speed and it is pretty consistent.
    I'm wondering if anyone else has had this problem? Like I said, YouTube won't load at all (says data not received on Google Chrome, just never loads on Safari) and other web pages are slow to load if at all (also get a data not received on Chrome, nothing on Safari). Usually when this is going on I try different websites on my iPhone while it's on WiFi and my internet is working fine. At this point I just don't know what else to do.

    Ditto, I think. I believe it started when I loaded Yosemite... Happens at work as well as at home (same Mac). I have a MacBook Pro 15 Inch Mid2010. Status bar shows that it starts to load and then just quits 1/8 of the way through.
    It usually works after I restart my computer, but obviously that's not how I want to operate when I am working on important projects.
    Any help would be awesome! Thank you.

  • Creating Links for other Web pages within Flash C23

    Hello Everyone,
    First of all, I'm sure you're tired of answering the
    questions regarding "Links". Although, I'm having a very
    difficult time with this issue. I just purchased Flash C23,
    taken all the tutorials from www.lynda.com, but
    I do not find answers for linking one web page to another
    within Flash C23. I have read all the answers
    on this forum and still can not get my buttons to link up to
    my other web pages.
    I have figured out how to create the buttons, although, I'm
    not doing something right when I try to link up my web
    pages. You have to realize I'm coming from Adobe Golive (no
    need for codes or scripts). I do not want to stop
    using Flash... Can someone help?
    Thank you so much, it's appreciated.

    replace 'siteName' with whatever you use to target your site
    in a browser. 'FranchelleDesigns' is what you named your page in
    GoLive.
    function loadPage(event:MouseEvent):void{
    var myURL:URLRequest = new URLRequest("
    http://www.siteName.com/FranchelleDesigns.html");
    navigateToURL(myURL,"_blank");
    my_btn.addEventListener(MouseEvent.CLICK, loadPage);
    EX: my website is
    http://www.damonedwards.net
    lets say I create some HTML page that I want to link to, and I save
    it as, ContactMe.html... this is what I would use in flash to link
    to it
    function loadPage(event:MouseEvent):void{
    var myURL:URLRequest = new URLRequest("
    http://www.damonedwards.net/ContactMe.html");
    navigateToURL(myURL,"_blank");
    my_btn.addEventListener(MouseEvent.CLICK, loadPage);

  • 1.1.3 problems displaying web pages

    After updating (and paying $20) to 1.1.3 Safari on my iTouch is now not displaying web pages nicely. Most don't fully load. Some load as text instead of html. Often I get "can't locate server." even for CNN and Apple.com. Google search doesn't work.
    All these pages load to some degree but something is missing?!?!?
    "Cannot connect to YouTube"
    "Error Retrieving Chart" when trying to get stocks from Yahoo widget.
    Anyone else having these issues??

    Misery loves company..... I'm having the EXACT same symptoms. The Weather app also gets a failure trying to update. It's even erratic trying to access the iTunes on my iPod. Most times, I get an unable to connect to server message after it appears some items are downloaded. On Mail, it works, but even though I'm accessing Gmail via POP, after accessing it okay it then tries to access via IMAP, and gives me an error. And it sometimes will give me an entry saying "Download next 25...." and shows me I have a few million unread emails. But if I tap that entry it goes away. I'm also using a WRT54ag, but I really have a problem having to swap this out to get wireless going again. Hopefully, Apple will come to the rescue before I decide I need to go down that path. I also tired to restore the iPod, but after a few minutes it told me it couldn't restore. I've seen workarounds for that, but.... Anyway, at least I know I'm not hallucinating all these quirky problems.

  • Show web page within abap web dynpro

    Hi,
    I am looking for a way to show a web page (like www.google.com for instance) inside an abap web dynpro application.
    Any suggestions would be very welcome.
    Regards,
    Bert

    I dont think you can open a Web Browser within a Browser.
    But you can call the URL in a new window using the following code;
    data lo_window_manager type ref to if_wd_window_manager.
    data lo_api_component  type ref to if_wd_component.
    data lo_window         type ref to if_wd_window.lo_api_component  = wd_comp_controller->wd_get_api( ).
    lo_window_manager = lo_api_component->get_window_manager( ).
    CALL METHOD lo_window_manager->CREATE_EXTERNAL_WINDOW
      EXPORTING
        URL            = 'http://www.google.co.in/'
        MODAL          = ABAP_FALSE
        HAS_MENUBAR    = ABAP_TRUE
        IS_RESIZABLE   = ABAP_TRUE
        HAS_SCROLLBARS = ABAP_TRUE
        HAS_STATUSBAR  = ABAP_TRUE
        HAS_TOOLBAR    = ABAP_TRUE
        HAS_LOCATION   = ABAP_TRUE
      RECEIVING
        WINDOW         = lo_window.lo_window->open( ).

  • Buttons opening a web page within a web page.

    I want to click on a button that will open a web page inside the same web page. How how I do this?
    Thanks, L

    The frame option is to use an inline frame, or <iframe> into which you place a source url, which can be a page on your site or a pdf or a page on the internet. This call is placed inline, as its name implies. You might want to experiment with its placement in your page, floating, various widths and heights, until you get it the way you want it.
    <iframe src="http://[path to your page here]" name="appropriateName">Content 1</iframe>
    Be sure to style your iframe tag to have an adequate width and depth; those will not style automatically.
    If you want it accessible only by mouse-click, consider putting it into a Spry Collapsing Panel that defaults to "closed". Be sure to put the <iframe> tag and its closing tag </iframe>, in this case, in the content area on the Collapsing Panel.
    Beth

  • Can Spry display another web page within a detail region?

    I currently have a non-Spry enabled site I would like to add
    Spry to. Basically, it is a story/photo web site and I have
    separate pages created already for each photo "event" that includes
    text, pictures, etc. Right now I have a menu with all of the
    stories that the users clicks on and it takes them to that
    particular story. I also use templates to control a common look and
    feel and header, but basically, one web page per story (they are
    all similar, but varying # of pictures, paragraphs, etc.). It works
    fine, but it does reload the web page for every story.
    So, what I would like to do is have one region defined where
    I have a sorted list of "stories" with dates and brief descriptions
    and when a user clicks on one of the stories I would like it to
    display the web page I have already created in another
    region....kind of like message preview in Outlook. Anyway, I know
    it is easy enough to create an XML data set that defines the title
    of the story, date, etc., and I could even include a relative link
    of the actual web page story in the data set to define where the
    web page is. I guess my main question is, how would I display an
    entire web page inside the detail div "region"? I know if you just
    had a simple picture, it would look something like this: <img
    src="images/{@path}"><br/>Name:{@path}, but what tag could
    you use to pull in an entire web page to preview inside the detail
    div region?
    Thanks in advance!

    Well I don't know if this is exactly what you're looking for, but you can have a browser window pop up from an event in an applet. If you use something like:
    getAppletContext().showDocument(new URL(theUrl), "_blank");
    a new browser window will pop up with whatever URL you want.
    Hope that helps a little.
    -Sheepy.

Maybe you are looking for