Hostname and IP change of Portal 3 (needed b'cause migration to Portal 10)

Hi
I have to copy Portal 3 (Solaris 8) to an other machine (Solaris 10) to be able to test Oracle Portal 10.
1. question: Is there anywhere Portal 3 software downloadable. (because this version is already out of support for years)
2. is there a migration manual existing to move portal 3. (because of not using OID I guess it should be easier than Portal 10)
Thanks in advance
Reto

Well, luckily we already found the solution ourselves:
JDeveloper has added the following lines to our faces-config.xml:
<lifecycle>
<phase-listener>
Oracle.adf.controller.faces.lifecycle.ADFPhase-listener
</phase-listener>
</lifecycle>
After removing these lines, everything works fine!!!
One question remains: Why does JDevoper add these lines to the faces-config file? Can anybody answer that question?
Kind regards,
Monique Oosterholt

Similar Messages

  • I had apple account and I changed my password, need help getting iTunes back on my pc with my new password.

    I had my pc repaired , They took off  itunes. My apple ID  is the same , but I changed my password, I have download 3  iTunes executive files , But ITunes is not on my pc. Can you help ,me. thank you

    Unless you can find a copy of iLife on eBay or Craig's list, you'll have to buy it from Apple or erase your drive.
    Reinstalling from your original discs and then upgrading will take a while, but you'll save the cost of iLife.

  • Can I reinstall last month and then change back if needed?

    If I select my HD and reinstall back from say January 1 and it does not solve my problem can I reinstall yesterday and get everything as it is yesterday. I guess also that it will take a long time like the first time it backed up.
    I have a program for wireless printers and for some reason the software worked for one or two days and not upon opening says "SXUPTP Driver has not been installed. Please install the application again."
    I am trying to get back to when it worked and don't really know what the problem is. But I have installed it on another MacBook and it works fine. So it something in mine.
    Thanks
    Larryb

    I've found that out but this software from Sitex is suppose to install that driver in the right place and for some reason it does not. I have been in contact with their technical people and they have not figured it out so far. They are now going to Japan which is their engineering I guess.
    See I have Fusion with XP also and this software is supposed to handle all of it. It works fine with the PC here. Worked for a day or two on the mac also then quit.
    LarryB

  • How to change IP, Hostname and domain name for Oracle Application R12

    Hi,
    I'm new to Oracle, we used to have one production and one test server for Oracle Application R12, but the test server was corrupted, so we decided to clone production server and create a new test server, after cloning and creation of test server, how should we do to change IP address, hostname and domain name for test server?
    Our production and test server environment is:
    Linux Enterprise AS 2.6.9
    Application module: E-Business Suite Treasury only
    Your advice will be much appreciated.
    Regards,
    Kenneth
    Edited by: 850209 on Apr 7, 2011 5:37 PM

    850209 wrote:
    Hi,
    There are few tnsnames.ora and listener.ora files in the system, how to know which one are effective? If I change tnsnames.ora hostname entry, do I need to change listerner.ora file also?
    Thanks.
    Regard,
    Kenneth.tnsnames.ora is used only by client processes. listner.ora is used only to configure the listener, and that is a server side issue only. In addition, the listener can start without any listener.ora at all, using all default values. See my discussion of tns issues at edstevensdba.wordpress.com
    If you are using dbcontrol, you will most likely need to reconfigure it, using the emca utility.

  • Change domain, hostname and IP after installation

    Hi,
    I installed BO XI 3.1 SP3 on a Windows Server 2008. Now it's maybe necessary to change the domain, hostname and IP adress of the server. I guess this will affect the BusinessObjects installation as well.
    Is it enough to enter the new hostname in CCM? Do I need to make changes somewhere else?
    Thanks!

    Hi
      As per my understanding, you don't need to do anything, Should work fine by default, but following points should be considered.
    1. For web application's Tomcat URL should use new Hostname,
      i,e http://<OLDHOSTNAME>:<PORT>/InfoViewApp  to http://<NEWHOSTNAME>:<PORT>/InfoViewApp
    2. The System Name while logging should be <OLDHOSTNAME>:<CMS PORT>, even after chaning Servers Hostname.
    3. From BOE Server machine, Make sure that After changing to new domain & hostname, you are able to access your DB machine which hosts your CMS DB.
    Regards
    Ashwini

  • Change hostname and IP-address by a script

    Hey!
    I want to migrate a collaboration suite from a standalone machine to a virtual machine. Their I need to change the hostname and the IP-address from the whole collaboration suite.
    My question is: Is it possible to change the hostname and the IP-adrdress and if yes! Is their any script from Oracle which I could use?
    By the way: I use the same host configuration as before (SLES 9) and have a FULL environment backup.
    Thanks ahead..

    Hi, try to look here:
    http://download-uk.oracle.com/docs/cd/B25553_01/collab.1012/b25490/ch_changing_netconfig.htm#BHBBJEBF
    and here:
    http://download-uk.oracle.com/docs/cd/B25553_01/collab.1012/b25490/ch_backing_up.htm#i1010667
    You can change the ip address but you can't change the hostname

  • Getting portal hostname and displaying on the portal masthead.

    Dear SCN
    I have some requirement, where in my portal masthead I need to display some string based on the portal hosname.
    eg, if my hostname is portaldev.abc.com then in my masthead I need to display a string portal development system.
    I  am new to the portal development, can somebody pls suggest me in getting the portal hostname and pls give me some code snippet on this. appreciate your help , many thanks.
    Thanks
    RAD

    The following portal component could be used to replace your masthead iView . Basically it makes a small table which has the normal masthead plus a bit of code that works out which host you're on and puts out a message,
    Make an iView from it and add it to your framework page in place of the regular masthead and you'll then get the appropriate information.
    public class WhoAmI extends AbstractPortalComponent
        public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
              IPortalComponentProfile profile = request.getComponentContext().getProfile();
              StringTokenizer st = new StringTokenizer(System.getProperty("SAPMYNAME"),"_");
              String message1 = "You are on the ";
              String host = "development";
              for (int i=0;st.hasMoreElements();i++) {
                   String s = st.nextElement().toString();
                   if (i==0) {
                        if (s.equals("abcdef")) host = "production";
              String message2 = " server";
              response.write("<div id=\"WhoAmIArea\"><table width=\"100%\"><tr>");
              response.write("<td align=\"left\" width=\"90%\"><iframe width=\"100%\" height=\"38\" src=\"/irj/servlet/prt/portal/prtroot/com.sap.portal.navigation.masthead.default\"></iframe></td>");
              response.write("<td  align=\"right\" width=\"10%\">");
              response.write("<span class=\"urTxtStd\">"+message1+host+message2+"</span>");
              response.write("</td></tr></table></div>");

  • What is the procedure to change the hostname and IP address of iAS?

    Dear all,
    I would like to change hostname and ip address of iAS, is it just only
    change the kregedit or i need to change some config file?
    Thank you for your help!
    Angus

    Hi,
    i am not sure what do you mean by changing ip address and machine name.
    Is the IP address and machine name of the installation machine changed?
    Then you can change the ip address and machine name from kregedit. If
    you want to run it from some other machine, you wont be able to do it.
    regds
    parsuram panigrahi
    Angus Yiu wrote:
    >
    Dear all,
    I would like to change hostname and ip address of iAS, is it just only
    change the kregedit or i need to change some config file?
    Thank you for your help!
    Angus

  • Hello   my i phone was dropped and i changed its battery now i need to activate it but  i forgot my apple id and password who can unlock my i phone 5 with IOS 8.1.3  your answer will be highly appreciated

    hello
    my i phone was dropped and i changed its battery now i need to activate it but  i forgot my apple id and password who can unlock my i phone 5 with IOS 8.1.3
    your answer will be highly appreciated

    Use the links provided.
    Recover your AppleID via https://appleid.apple.com/
    Reset your password via iforgot.apple.com
    If the iPhone is asking for an AppleID you do not recognize, the iPhone
    is Activation Locked. Only the person who initiated the Activation Lock
    can remove it. There is no workaround for Activation Lock.

  • HT201363 my i phone was dropped and i changed its battery now i need to activate it but  i forgot my apple id and password who can unlock my i phone 5 with IOS 8.1.3

    my i phone was dropped and i changed its battery now i need to activate it but  i forgot my apple id and password who can unlock my i phone 5 with IOS 8.1.3

    Use the links provided.
    Recover your AppleID via https://appleid.apple.com/
    Reset your password via iforgot.apple.com
    If the iPhone is asking for an AppleID you do not recognize, the iPhone
    is Activation Locked. Only the person who initiated the Activation Lock
    can remove it. There is no workaround for Activation Lock.

  • I have a MacBookPro6,2 and would like to connect an older Dell flatscreen, model L17BNS. I would welcome any information about the type of cable I need and any settings I might need to change, etc. Thank you for your time.

    I have a MacBookPro6,2 and would like to connect an older Dell flatscreen, model L17BNS. I would welcome any information about the type of cable I need and any settings I might need to change, etc. Thank you for your time! I really appreciate the assistance. Kathy

    According to:
    http://en.community.dell.com/support-forums/desktop/f/3515/p/19351107/19767627.a spx#19767627
    It has DVI ports.  This means you are best to use an adapter that supports DVI.  Note there is no audio that carries over DVI.  What you need is a mini-Displayport to DVI adapter, and the proper DVI cable. Since Dell doesn't have the specs, you'll need to tell us if you have pins or holes, and how many are grouped.

  • G'day.  I am using iMovie 11 and need to clear disk space.  How can I do that using an external drive, leaving me the option to go back and make changes or access old events or projects from that external drive?

    G'day.  I am using iMovie 11 and need to clear disk space.  How can I do that using an external drive, leaving me the option to go back and make changes or access old events or projects from that external drive?

    The slightly bigger question is whether you want to move all movie content to the external drive (essentially meaning that drive will always need to be attached when you're working with your videos), or whether you just want to archive older videos off to the external drive.
    If you want to move all videos, then just move the 'Movies' folder in your home directory to the external drive, then create an alias of the external 'Movies' back in to your home directory. Now the 'Movies' icon in your home directory will point to the external drive and everything will just work (as long as the external drive is attached when you launch iMovie)
    If you want to archive older movies then each Movie should have its own subdirectory within your Movies folder. These can easily be moved off to the external drive, and moved back should you ever need to work on those movies again.

  • The credit card info on the account has changed but for some reason there is no option for me to make the changes.  In addition, cloud has stopped working and all other programs that need to be updated cannot be.

    the credit card info on the account has changed but for some reason there is no option for me to make the changes.  In addition, cloud has stopped working and all other programs that need to be updated cannot be??

    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html
    -email address https://forums.adobe.com/thread/1446019
    -http://helpx.adobe.com/x-productkb/global/didn-t-receive-expected-email.html

  • LOVE Firefox! I have just launched a website. One designer told me it takes 7-10 days for any changes to appear. Why? I have cleared caches and cookies etc. I need to be more responsive than 7-1o days. I need changes to appear within 24hrs.

    LOVE Firefox! I have just launched a website: www.animalhealingandhumans.com. My web designer told me it takes 7-10 days for any changes to appear. Why? I have cleared caches and cookies etc. I need to be more responsive than 7-1o days. I need changes to appear within 24hrs. How can I achieve a much better response time to good feedback?

    Hello binbingogoABC,
    Shopping on BestBuy.com should be easy and fun and not fraught with the kind of trouble that you describe. I regret very much that this has been your experience.
    Using the information you provided when you signed up for Best Buy Unboxed I was able to locate your cancelled orders. I have requested more information from my back-office partners. As soon as I have additional details about your situation, I will reply again to this message. In the interim, I'm sorry that I must impose upon your patience.
    I'm very grateful that you wrote to us with your concerns.
    Sincerely,

  • Portal needs 'amconsole' to be up and running

    Running the portal displays a blue bar (might be a empty container) in the browser. If i log into the amconsole and refresh the browser the portal opens with all channels and container in the browser. This can be reproduced every time.
    After 'amconsole' timeout, on refreshing the browser i get the blue bar again. I need to start the amconsole again and refresh the browser to get back channels in the portal.
    I use 'amadmin' user to customize/modify channels and run amconsole. Any suggestions please.
    URL i used to start the portal:
    http:x.x.x.x:80/portal/dt?provider=MyContainer
    MyContainer and created/customized using 'amadmin' in amconsole.
    Thanks.

    Thanks for the reply.
    Only 'org' within the portal is 'ISDDemo', so opted to:
    http://x.x.x.x:80/portal/dt
    I got sunone sample portal getting displayed.
    I tried using org name along with url, and a empty container. Developers guide suggests me to name the container in the url which has all the customized channels.
    Still trying to get this right.
    Thanks

Maybe you are looking for

  • I have recently purchased a Nikon D7100 and can no longer use Photoshop CS5 to process RAW files.What are my solutions ?

    I am sure this has been asked before for similar new camera buyers, but as I have made a sizeable investment in purchasing PS 5  less than one year ago, I expect ADOBE to have an upgrade available for my new Nikon D7100 camera. Other Software makers

  • OS x 4.5.6 with a ibook w / CD only

    Is there a way to install a DVD version of OS X 4.5 with an ibook G3 800 with a CD? Like using an external Hard Drive some how? I do not want to exchange the DVDs for CDs. I used search and I am sorry if this already has been discussed a million time

  • ConfigTool.bat  dosen't run

    Hi @all, My Java engine has stopped.I am also not able to run the configtool.bat...below is the error that i get. Error occurred during initialization of VM java/lang/NoClassDefFoundError: java/lang/Object Program terminated abnormally Press any key

  • Query of queries date comparison

    Cut to the basics, I'm trying to run the following code: <cfset qData = QueryNew("dataDate,ID")> <cfset padDate = "#DateFormat(Now(),"dd mmm yy")# 23:59"> <cfset queryAddRow(qData)> <cfset QuerySetCell(qData,"ID",1)> <cfset QuerySetCell(qData,"dataDa

  • Deleting "purchased" items

    A while back I downloaded a free music album through itunes, but it wasn't until after I downloaded it that I realized that it was something that I didn't want at all. So I deleted it from my itunes. But the problem now is that every time I click to