Publish portal page on internet ??

Hi all !
I have a problem that I need some guide. I assume that I have just finished my portal page, so now I want publish my page on Internet.
Which tool that Oracle AS portal support to me solve this problem ???
Thanks alot.

You need to set your server and Internet connection to be used for this purpose, for that you need to open your ports where the portal is going to be accesed and check the IP that you have for internet, and this will be used to acces. If you want to access using a name, you need to get a domain and register the IP that you have for internet.
Also you may have to add an entry in WebCache to tell to attend any request that cames from the internet IP.
Greetings.

Similar Messages

  • How to set up reverse proxy to allow user access portal site from internet

    Hi all,
    I have installed 10g(10.1.2.0.2) AS on same machine(single IP for both mid and infra with different users respectively). there is a DMZ on which windows IIS is working through which we need to redirect the request to application server such that users access portal page from internet (within intranet all URLs are working fine). I have went through technet documentation where i found 3 ways : through this link
    http://download.oracle.com/docs/cd/B14099_19/core.1012/b13998/variants.htm
    Section 9.2.1.1, "Configuring OracleAS Web Cache as a Reverse Proxy"
    Section 9.2.1.2, "Configuring the Oracle HTTP Server as a Reverse Proxy"
    Section 9.2.1.3, "Configuring Internet Information Services as a Reverse Proxy"
    I am confused to which option to use. Also i went through the metalink document 270160.1
    Please help me which option to choose to do this.
    Thanks.

    Hi Hozy,
    May be it's too late, I am thinking to go in the same route for our sap portal access to external customers. Please can you share your experience , like what are the challenges have you faced? what is the complexity? what are all the resources we need to configure this?
    I appreciate your feedback.
    Thanks
    Krish

  • How to publish news on a portal page of Oracle CS

    Hi everybody!
    Please help, how to publish news on a portal page of Oracle Collaboration Suite
    Thanks a lot for your helps.

    I have the resolution but don't have time right now to put it.
    Refer/search in
    metalink.oracle.com
    How To Edit The News Portlet     332930.1

  • [Portal 7.4] WPC exception while publishing a page

    Hi all,
    I am having some troubles publishing some pages after I changed the content. These pages are located under: staging area --> area --> PAGE. The page was published before and I had to change some links in the content. Saving the changes works but I can't publish it. When I try to publish the page I get the error message "Exception caught during event invocation" (see screenshot). The page is localized. We have portal 7.4 SP 4
    Is is possible to see some logs to figure out what the problem is? I checked the NWA but can't find any logs concerning WPC.
    As far as I understood there were some problems in portal 7.0 and 7.3. I couldn't find any similar reported error with portal 7.4 SP 4.
    Thanks for any help!
    Andreas

    This was a simple lock error. After a day I couldn't reproduce the error anymore and WPC works fine since.
    Regards

  • Publishing Web Pages in a Federated Portal

    Hi all,
    we´re running WPC pages in a Federated Portal. We create the pcd structure in the root system and publish the roles in the federated portal. For that we created web pages on the root system. As it isn´t possible to publish WPC pages in a federated portal, we created a WPC runtime iView for each of the pages.
    But, when we´re logged on in the federated portal only one of the iViews is visible.
    Can anyone help me out?
    Thx and Rgds,
    Andreas

    Hi all,
    we changed our mind an decided to build a new portal landscape for our project. So the problem doesn´t exist any longer.
    Cheers,
    Andreas

  • Publishing content from reports server to a portal page

    I have a system with Forms/Reports 6i in a client/server implementation. I have 6i reports server from this on the server tier. I have added 9iAS (minimal install) to get Portal and HTTP server. I have completed the configuration and I can have the portal page submit jobs to the reports server and they are displayed properly.
    But I also wish to run reports from the application. This app submits jobs to the reports server via RWCLI60. I was hoping I could use 'File' as the destype and drop off content into a directory the web server knows about and then have a portal page that will generate links to the files. These could be pdf or html output.
    Can anyone tell me if this is possible and provide a short list of steps to configure it? Thanks.

    there is an example of this on dev2dev, see sample code, "redirect" example
    (dev2dev.bea.com)
    "Lancy Mendonca" <[email protected]> wrote:
    >
    All
    In a webflow how is it possible to redirect to a portal page from a input
    processor.
    The situation I have is as follows. I have a homepage that has a login
    portlet.
    The user enters the username and password and after performing the validation
    and authentication I need to redirect to another portal page that is
    available
    only to logged users.
    Any help will be creatly appreciated

  • BI Publisher report page not getting displayed on ADF

    Scenario: OBIEE 11g integration to Webcenter Portal
    The Dashboard pages which are developed in Answers are getting displayed correctly to ADF Page.
    ISSUE: But a dashboard page with BI Publisher report page displays error 404 on integration to ADF Page via BI Presentation services connection.
    This BI Publisher report shows up without any errors on the OBIEE Dashboard Page.
    thanks
    Reshmi

    Hi,
    kindly refer the below one
    http://www.rittmanmead.com/2011/05/oracle-bi-ee-11-1-1-5-new-jdeveloper-extensions/
    http://jdevelopertips.blogspot.com/2009/08/integrating-bi-publisher-into-jdevelo.html
    Thanks
    Deva

  • Background image in a portal page??

    Hi,
    How can I set a background image or watermark in a portal page instead of the plain background that comes by default.
    Regards
    Sreeram

    Ofcourse Chris, very true. I should have mentioned the workaround in the previous post itself. Infact the solution is based on your suggestion in the previous post.
    Every community page that is generated by the portal has a <div> element with a unique id. The id of div element is made up of the following string "pt-portal-content-" followed by the object id of the community page (which is unique). This <div> element has the style portalContent set to it by default.
    I knew the page I would want the background to be applied to. And I knew the portlets that would go only on this page. These portlets are content portlets created from the publisher.
    So in the presentation template code for one of these portlets I included a javascript function and set the background property of the div element, conditionally checking the div element's id to make sure that it is the community page I wanted to modify. And this javascript function is registered to the onload event.
    Regards
    Sreeram

  • Small pop up window inside a portal page

    My portal page has one html portlet. I need to have a small pop-up window on this page which contains periodically changing messages(message is retrieved from a table in the database). The popup window should appear if the message inside the popup message has changed, otherwise it should not appear.
    this is my code below:
    declare
    cursor cur_popup is
    SELECT POPUP_MSG_READ_FLG
    FROM app_users
    WHERE PORTAL_USER_ID = portal30.wwctx_api.get_user();
    BEGIN
    open cur_popup;
    fetch cur_popup into msg_read;
    close cur_popup;
    IF msg_read = 'N' THEN
    url := PORTAL30.wwv_user_utilities.get_url('CAPS.LINK_POPUP');-- links to a portal page with popup
    portal30.wwv_redirect.url(p_url => url);
    ELSE
    url := PORTAL30.wwv_user_utilities.get_url('CAPS.LINK_without_popup');--links to a duplicate portal page without popup
    portal30.wwv_redirect.url(p_url => url);
    END IF;
    END;
    I don't want to maintain duplicate portal pages -one with onLoad=window.open('popup') and the other page without the pop up.
    Pls. suggest an alternate method. How can I pass parameters to the portal page and retrieve it in my portlet's javascript? Please let me know as I need it urgently.

    Hi Lavanya. I have implemented the same.
    Within my oracle tags, I'm using htp.print to produce the javascript for opening the window if it has not yet been viewed. It gets a bit confusing to produce one language syntax with another, but seems to work fine - you're kind of saved by pl/sql's single quote syntax vs. javascript double quotes!
    Some improvements I'd like to make are for cases where the browser has cached the content (which tells the browser to open a popup window) and to produce a receipt when the user clicks "OK" in the popup, rather than when the page is delivered.
    Let me know how it goes. Sounds like a common need - maybe we should get together and publish a new portal component! :^) Thanks, Luke.
    My portal page is not generated from within my pl/sql. My code just calls the link which,in turn calls the portal page. The portal page contains a html portlet, and the popup window is opened from <body onLoad = window.open(.....)>
    so, i cannot use htp.p here.
    Pls. help!!

  • Email address on Portal page incorrectly copied into email form

    I have a 'staff directory' on a Portal page that contains email addresses. Upon clicking on an email address an email form pops up. However, the email address in the TO: line sometimes reflects the email address correctly, and sometimes it repeats characters from the email address - that is, my email address might be correctly copied in as Caryn@mail or incorrectly copied in as Caryncaryn@mail.
    Any help or ideas would be greatly appreciated!!

    So called e-mail obfuscation scripts may work up to a point, but client side scripts are easily defeated by turning off JavaScript.   Also, e-mail links don't work for everyone. With so many people using web mail (yahoo, hotmail, g-mail, etc...) instead of e-mail software, they may not have an e-mail client on their device.
    For many reasons, a contact form with a form to email processing script that has built-in spam protection is the way to go.
    If your server supports PHP, this script from DBMasters is good.
    http://dbmasters.net/index.php?id=4
    Tectite
    http://www.tectite.com/formmailpage.php
    Forms to Go from Bebosoft (script generating software)
    http://www.bebosoft.com/products/formstogo/overview/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • I WANT TO OPEN A PORTAL PAGE INTO A PORTAL REGION

    I have two pages published as portlets(P1,P2). P1 have a portal link to P2 and
    it works perfectly. My problem occurs when:
    1) I create a new group of pages.
    2) In this group, i create a new Portal page(P3).
    3) In a region of P3 I load p1 as a portlet.
    When I click in the link of P1, P2 is loaded in a complete window. I want to
    load P2 in the region that contains P1, no in a new window. I want to keep the
    other P3 content when i click in this link.
    thanks alot

    guess the only way to do so is to create a HTML Portlet which has an iframe that displays your P2.

  • Cant access my portal applicaion via internet

    hi
    i have installed 10.1.0.2 OAS infrastructure and middle tier "portal and wireless"
    OS = win 2003 server
    /etc/host file I have included 10.132.12.132 myservername.dpw.gov.za mytest
    my machine is on the domain=dpw.gov.za
    i have created page_group named PG_myapp and configure it to be accessed bu public user"checked display to public users "
    i can access the pagegroup by using http://myservername.dpw.gov.za/portal/page?_pageid=33,1&_dad=portal&_schema=portal on:
    1.the machine/pc that the apllication(OAS) is installed ()
    2.the machine/pc that is on the same domain as myserver= copying the page group url and paste it on the other machine that is on the same network and share the same domain
    my problem is: i cannot access the same url/pagegroup using my laptop (not on the domain) uses mobile connection to the internet
    my aim is to create application that will be access by users via network and internet sitting in different provinces
    please help, what do i need to do
    thanks
    user599495

    hi all
    i got my answer, its a departmental/organisational issue
    they need to put on the production and configure url(after testing the app on test machine )then give the url to outside user to access the app
    thanks

  • Javascript:void(0) error in portal page

    Hi,
        I am using EP 7.1. IE 6. when i am working in content admin, user admin or system admin some time entire roles are working fine. But in frequent way i am getting error in portal page like JavaScript: void (0) and at the mean time i am unable to work in portal like not able to create users, not able to add iView with page or some tab is not functioning at all.
    Can someone explain me the region, why this error i am getting and how we can resolve this error?
    Thanks,
    Kundan
    Edited by: Kundan 2009 on Mar 17, 2010 11:17 AM

    Hi Kundan,
    Please check with Basis for server session timeout and clear browser cache and temp files
    Also check below thread if it helps :
    http://www.topbits.com/javascript-void-0.html
    [How to enable JavaScript in Internet Explorer|http://www.topbits.com/how-to-enable-javascript.html]
    Hope it helps,
    Regards
    Arun
    Edited by: Arun Jaiswal on Mar 17, 2010 4:15 PM

  • Content Area in Portal Page: subfolder vs category

    Hi everybody,
    i've tried to publish a content area + navbar in a portal page: if i click to a SUBFOLDER on the folder portlet , the subfolder appears in the context of the portal page. But if i click a link to a CATEGORY, the category is loaded in the content area and not in the portal page. Does anybody know how to keep the content area in the portal page, that is
    to refresh the
    portlet in the context of the portal page ?
    Thanks.

    Currently not possible. We're considering this for a future release.
    Regards,
    Jerry

  • Error when trying to run UCM from browser -The portal page for your Content

    Hi
    When I try and run the UCM in a browser using "http://localhost/idc", it showing
    "The portal page for your Content Server needs to be rebuilt. Start the WebLayout Editor as a standalone application and select Update Portal... from the Options menu."
    I did see a previous message that says to go to Weblayout Editor Applet - Options - Build Home Page - Update -Ok, but I was not able to see the Build Home Page option in the drop down.
    Any ideas what may be causing this issue?
    Thanks in advance for your help
    Cheers
    Sylvia

    Hi Srinath
    Thanks for your reply.
    Commenting out the following lines still does not fix my problem.
    <div align=center><b>Welcome to UCM10g for SIF DEV</b></div><br>
         <$if IsLoggedIn$>UserName = <i><$UserName$></i><br><$endif$>
         <$if IsDynamic$>Current Time = <i><$dateCurrent()$></i>
         <$else$>This is a static page.
         <$endif$>
    I have installed this product on two environments following the same kind format.
    In our dev environment I am able to type in the following to get to the Welcome to Content Server Page
    http://devenv/idc/
    In the other environment I use the following and I get that the error "The portal page for your Content Server needs to be rebuilt. Start the WebLayout Editor as a standalone application and select Update Portal... from the Options menu."
    http://testenv/idc
    So the only way to get to the Content Server Page is to type the full path as below which I don't want to do, because I want the welcome screen to appear first.
    https://testenv/idc/idcplg?IdcService=GET_DOC_PAGE&Action=GetTemplatePage&Page=HOME_PAGE&Auth=Internet
    Is there a way I can configure the application to get to my welcome screen instead of getting the error message detailed above?
    Thanks
    Sylvia

Maybe you are looking for

  • I need a scrubber to remove printer port conflicts.

    Trying to install a color Okidata printer.  I'm told by Oki tech support that I need a scrubber from HP to clear ports and then install okidata driver first, before any HP drivers.  Where do I get this scrubber.  I used to have an HP 1200.  Using Win

  • Message during Process

    Dear All, i want to display a message like MESSAGE 'say something' TYPE 'S'. during a abap report is running. But messages like this are only displayed at the next screen. So how can i show them at the time when the command MESSAGE is processed? I on

  • Link between batch stock and stock transport order no.

    hello all, my client want the report for stock in hand against batch and sto no..in standard tcode mb52(stock in hand) we can see the stock against batches.but i want the report for which sto no. stock is recieved corresponding to batch. pls tell me

  • JPEG compression confusion

    Please help me to prove that I'm not crazy. I recently got photos developed from 35mm film at a local "professional" store. When I looked at the files on my computer, I was confused to see that they were only around 500 KB each. When I asked the shop

  • PEAP failed with ACS3.3

    Hi Sir, I would like to find out is there anyone facing any problem when implementing PEAP using XP clients with ACS 3.3 and integrate with Microsoft AD to manage user database. I have used ACS to generate self certificate and copy the .cer file and