AIA FP 2.4 Installation in Weblogic 9.2 MP3

AIA FP installation fails in deployment & running of AIAValidationSystem. I am getting following error-
weblogic.application.ModuleException: [HTTP:101216]Servlet: "AIAValidationSystemAPIServiceSoapHttpPort" failed to preload on startup in Web application: "ValidationSystemAPIService".
weblogic.wsee.ws.WsException: wsdl message name {http://oracle/apps/aia/cavs/api/service}importDefinition for Method "importDefinitions" parameter "path" is not in-sync with wsdl. Expected message name (WsdlMessage@37233990 <name={http://oracle/apps/aia/cavs/api/service}AIAValidationSystemAPIService_importDefinitions> <partList[]{(WsdlPart@37234023 <name=parameters> <type=null> <element={http://oracle/apps/aia/cavs/api/service}importDefinitions>)}>)
Can anyone have faced this problem in installing AIA FP2.4 on Weblogic?

Yes, I am using Windows XP Pro.
Anyway I found one of the logs in C:\aia\logs\Install\FP. I do not know why I am getting listener error when I can connect as "sys" using SQL Developer or the Database Express Edition screen. Please see below:
BUILD FAILED
C:\aia\Infrastructure\install\scripts\FPInstall.xml:116: The following error occurred while executing this line:
C:\aia\Infrastructure\install\scripts\FPInstall.xml:126: The following error occurred while executing this line:
C:\aia\Infrastructure\install\scripts\FPConfiguration.xml:96: The following error occurred while executing this line:
C:\aia\Infrastructure\install\scripts\FPConfiguration.xml:64: The following error occurred while executing this line:
C:\aia\Infrastructure\install\scripts\FPCAVSInstall.xml:58: The following error occurred while executing this line:
C:\aia\Infrastructure\install\scripts\FPCAVSInstall.xml:36: java.sql.SQLException: Listener refused the connection with the following error:
ORA-12519, TNS:no appropriate service handler found
The Connection descriptor used by the client was:
BINGDELL.test1234.com:1522:xe
Thanks,
Amorsolo

Similar Messages

  • AIA 2.4 installation on SOA suite 10.1.3.4 with Weblogic 9.2 MP3

    Hi
    I am trying to install AIA 2.4 on SOA suite 10.1.3.4 with Weblogic 9.2 MP3.
    I could successfully install SOA suite 10.1.3.4 with Weblogic 9.2 MP3 and applied MLR # 9 Patch as well.
    I am looking for document reference(step by step document) To install AIA 2.4 on weblogic.
    When i used AIA 2.4 installer it was asking for OPMN port/OC4J instance name. Is there any other AIA 2.4 Installer for weblogic server?
    Thanks

    Of course, seeing 2.x I mistakenly thought PIPs as AIA Foundation Pack is now current version of 11gR1. Anybody wishing to install AIA Foundation Pack, especially with WLS should use 11gR1.
    Can you elaborate on the reason you are electing to go with an older version of both AIA Foundtion Pack and SOA Suite?

  • Installation of AIA FP 2.2.1 on Weblogic Server 10gR3

    Is it possible to install AIA FP 2.2.1 on Weblogic Server 10gR3?
    As we would be working with OSB 10gR3 which is on Weblogic Server 10gR3
    but SOA Suite 10.1.3.3 for third party (Weblogic) works on Weblogic Server 9.2
    So how do we install SOA Suite 10.1.3.3 on Weblogic Server 10gR3 ?
    Please help as soon as possible.
    Thanks
    Joyjit

    to install SOA Suite 10.1.3.3 on Weblogic Server 10gR3 it's actually impossible,
    you have to wait the next release 10.1.3.5
    or you can use SOA suite 10.1.3.4 on (OC4J or Wls 9.2) with OSB 10Gr3.
    there is new a white paper which explain how to use AIA 2.3 with OSB 10gR3. Look at http://www.oracle.com/applications/aia-foundation-pack-on-service-bus-white-paper.pdf
    regards

  • Link to download X86 Solaris Installation for weblogic 10.3

    Can please anyone let me know the link to download X86 Solaris Installation for weblogic 10.3.
    I am only able to see installables for X86 windows,X86 linus & sparc but nothing for X86 Solaris.

    Hi;
    Can please anyone let me know the link to download X86 Solaris Installation for weblogic 10.3.I belive its not available. Please check :
    WebLogic 10.3 availability?
    Also check certification matrix:
    http://www.oracle.com/technology/support/metalink/index.html
    Regard
    Helios

  • Console-Server Version Mismatch after installation of Weblogic 6.1 sp6

    After a successful installation of Weblogic 6.1 SP6 from SP4, the following is displayed upon entering the admin console:
    Console-Server Version Mismatch
    server-version 6.1.4.0
    console-version 6.1.6.0
    However, inspection of the weblogic.log file shows the following message:
    WebLogic Server 6.1 SP6 12/04/2003
    So what version am I running? Was the installation of SP6 really successful?

    Hi,
    I am having the same issue when I upgraded from WLI 7.0 SP6 to 7.0 SP7.
    Can anyone have any idea abt how to solve this issue.
    Thanks
    Raj

  • Proxy Authentication Error in Web Service with SAAJ on Weblogic 9.2 MP3

    Hi,
    I have encountered a problem with proxy authentication in SAAJ web service (WS) calls on Weblogic 9.2 MP3.
    My WS client (which uses SAAJ's SOAP classes) should use a proxy that requires authentication to call the external web services.
    However, it does not perform the authentication and receives HTTP Error 407 - Unauthorized.
    The reason seems to be that Weblogic's Http Handler (weblogic.net.http.Handler) ignores the proxy authentication.
    I was able to work around it by setting sun's http handler explicitly in the WS endpoint URL. Sun's handler (sun.net.www.protocol.http.Handler) makes use of the Authenticator class I provided.
    1. Please see my code below and let me know if this is the only solution or if I'm doing something wrong. While testing on Tomcat I did not have to set the handler.
    2. I have seen that there are also System properties for http.proxyUser and http.proxyPasword, however if I use these and ommit setting the SimpleAuthenticator, it also fails (with either handler!). An explanation of that is welcome.
    Thanks in advance.
    Code:
    ===========================================================
    System.setProperty("http.proxySet", "true");
    System.setProperty("http.proxyHost", "localhost");
    System.setProperty("http.proxyPort", "808");
    //System.setProperty("http.proxyUser", "myuser");
    //System.setProperty("http.proxyPassword", "mypw");
    Authenticator.setDefault(new SimpleAuthenticator("myuser", "mypw"));
    String urlString = "http://someurl:8080/webservice..";
    URL endpoint1 = new URL(urlString);
    URL endpoint2 = new URL(null, urlString, new sun.net.www.protocol.http.Handler());
    SOAPConnectionFactory soapfactory = SOAPConnectionFactory.newInstance();
    SOAPConnection connection = soapfactory.createConnection();
    connection.call(message, endpoint1); // Gives Exception with HTTP Error 407
    connection.call(message, endpoint2); // Works and uses the proxy
    For reference:
    ===========================================================
    public class SimpleAuthenticator extends Authenticator {
         private String username, password;
         public SimpleAuthenticator(String username, String password) {
              this.username = username;
              this.password = password;
         protected PasswordAuthentication getPasswordAuthentication() {
              return new PasswordAuthentication(username, password.toCharArray());
    }

    Sorry for the 3 posts.
    Administrator, delete this thread please!!

  • Weblogic 9.2 MP3 Issue with EPM System 11.1.1.3

    Hi,
    I am currently running into issues when trying to configure Shared Services via the EPM System Configurator 11.1.1.3. I've installed Weblogic 9.3 MP3 with all of the default options (including establishing Node Manager as a service). I've also created a seperate userId in Weblogic called hyperion (with the password of hyperion) so that EPM can access the instance against the default web server.
    When I run the configurator to try and deploy to application server, the status sits there on the "Starting WebLogic 9 Admin Servers" and does nothing.
    Sometimes is does get past that but then the deployment fails because it is unable to deply the interop.war.
    Any help would be greatly appreciated as I'm 100% stuck!
    Thanks,
    Anju

    The Hyperion EPM forum is here:
    Hyperion EPM
    You'll probably have better luck there.

  • AIA 3.0/11g installation on SOA 10g(10.1.3.4) - OAS

    Is it possible to install AIA 3.0/11g in the SOA 10g (10.1.3.4) edition, if yes please point me towards any installation guides....
    I understand 11g releases are more oriented towards weblogic, so i dont find the installation guides of 11g very useful.
    To be more precise, I tried installing AIA 11g, onto a SOA server(10.1.3.4),the problem was in the third step where "SOA Server Details" are given, I'm not able to connect to my SOA server.
    These r d values i gave
    Admin Host Name:mildh0155
    Admin Port:6003
    Domain Name:xxx(i thot this as the instance name,if im wrong pls correct as to which name has to be entered here incase of the OAS)
    Admin User:0c4jadmin
    Admin Password:xxxxxxx
    The "Managed Server" waits for a minute and then becomes "Cannot connect to Server"
    Pls help...Thanks in advance

    Hi Venkatesh,
    You can't install AIA 3.0 on SOA Suite 10g since AIA 3.0 leverages on same SCA based components which can't be deployed on SOA Suite 10g.The domain name that is expected while installing AIA 3.0 is weblogic server domain name which doesn't have an equivalent in Oracle Application server and the port is the weblogic admin server port not opmn request port.
    Hope this addresses your query.

  • Installation of Weblogic 10.3.2.0 fails

    I got "Fatal error has occured. The application will terminate" in the middle of installation. I am trying to install weblogic on Solaris Sparc 5.10 (64bit) using 64-bit JVM. I came across another posting that suggested to specify -Xmx1024m to avoid "java heap space". I did try that option, i don't see heap space error in logs though. I tried "java -d64 -Xmx1024m -jar net_wls1032_generic.jar -log=$HOME/wls_install.log -log_priority=debug" from command prompt. System has both 32 and 64 bit java installed already. Please advise. Thanks in advance.
    2010-05-13 11:23:16,965 WARN [installTwoJdks_gui] com.bea.plateng.wizard.installer.gui.tasks.ProgressTwoJdksTask - JDK archive /var/tmp/solaris32_jdk160_14.zip did not exist, trying jdks directory...
    2010-05-13 11:23:16,970 DEBUG [installTwoJdks_gui] com.bea.plateng.common.jni.JNIUtil - Library 'jni' not found.
    2010-05-13 11:23:17,006 ERROR [installTwoJdks_gui] com.bea.plateng.wizard.WizardController - Uncaught Exception
    java.lang.UnsatisfiedLinkError: Expecting an absolute path of the library: jni
         at java.lang.Runtime.load0(Runtime.java:767)
         at java.lang.System.load(System.java:1003)
         at com.bea.plateng.common.jni.JNIUtil.loadLibrary(JNIUtil.java:207)
         at com.bea.plateng.common.jni.JNIUtil$ZipFile.<clinit>(JNIUtil.java:442)
         at com.bea.plateng.wizard.installer.gui.tasks.ProgressTwoJdksTask.execute(ProgressTwoJdksTask.java:272)
         at com.bea.plateng.wizard.gui.tasks.AbstractGUITask.run(AbstractGUITask.java:42)
         at java.lang.Thread.run(Thread.java:619)

    I resolved it by cleaning up files and directories under /var/tmp where weblogic keeps archive files as part of the installation process. when error occurs during the installation, it tries to clean up all the files in tmp directory. I think for some reason some of those files didn't get cleaned up properly.

  • Fatal Error during Installation of Weblogic Application Server 11g (10.3.4)

    Hi,
    I have installed Weblogic server 10.3.4 in the first attempt but when I was deploying an ear, Server gets crashed (JDK was crashed) and after that I was unable to start the server because it was giving an error for JDK.
    Then I uninstalled existing Weblogic server and tried installing server (same version using same setup) once again but it is not allowing. It is asking me for directory (WLS Home Directory), Complete/Custom and when installing finally, it is flagging an error (when 39% installation is complete) "Fatal Error encountered during file installation, the installer will now cleanup and exit! C:\<Home Directory>\wlserver_10.3\common\bin\consol.exe (Access is denied)".
    Can any one please help me in resolving this error. Thanks in advance
    Regards,
    Priya

    Hello,
    You need to check the permissions on the middleware home directory.  Give permissions and then try to install weblogic server, it will work. 
    Are you trying to do first time weblogic server installations.  If you have already domain created then from there also you can create a seperate domain
    Regards

  • OIm 9.1.0.1 installation in Weblogic

    Hi,
    I am installing OIm9.1.0.1 on linux5.4,weblogic10.3.0,database 11g,jdk1.6.0_21
    I have unchecked Automatically aquire lock option in development mode.
    But installation failed and when I checked the log I got below error:
    [ant] Exiting /u01/app/serveroim/xellerate/setup/weblogic-setup.xml.
    BUILD FAILED
    /u01/app/serveroim/xellerate/setup/setup.xml:447: The following error occurred while executing this line:
    /u01/app/serveroim/xellerate/setup/weblogic-setup.xml:308: weblogic.management.ManagementException: [Deployer:149163]The domain edit lock is owned by another session in non-exclusive mode - this deployment operation requires exclusive access to the edit lock and hence cannot proceed. If you are using "Automatically Aquire Lock and Activate Changes" in the console, then the lock will expire shortly so retry this operation.
    at org.apache.tools.ant.ProjectHelper.addLocationToBuildException(ProjectHelper.java:539)
    at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:384)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    at org.apache.tools.ant.Task.perform(Task.java:364)
    at org.apache.tools.ant.Target.execute(Target.java:341)
    at org.apache.tools.ant.Target.performTasks(Target.java:369)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
    at org.apache.tools.ant.Main.runBuild(Main.java:668)
    at org.apache.tools.ant.Main.startAnt(Main.java:187)
    at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
    at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)

    Hi,
    Were you able to resolve this? I am running into same situation.
    Installing OIM 9101 on WebLogic 10.3.0 in Production mode.
    "Automatically acquire.." option is disabled (grayed out ) in production mode. It is set to false.
    Any ideas?
    Thanks

  • OIM Installation over Weblogic application server - Login Exception

    Hello there,
    I installed OIM 9.1.0.1 on Weblogic 10.3 with DB 10.2.0.1. I am not able to login into the Administrator web console. And I am getting this following error as stated by the logs below with DEBUG level. I have used sun jdk provided in the weblogic installation itself and in Production mode - Non clustured, non SSO.
    ERROR,14 Jun 2009 23:30:02,906,[XELLERATE.SERVER],Class/Method: QuartzWrapper/ex
    ecute encounter some problems: javax.security.auth.login.LoginException: javax.s
    ecurity.auth.login.LoginException: java.lang.SecurityException: [Security:090304
    ]Authentication Failed: User xelsysadm javax.security.auth.login.FailedLoginExce
    ption: [Security:090302]Authentication Failed: User xelsysadm denied
    Thor.API.Exceptions.tcAPIException: javax.security.auth.login.LoginException: ja
    vax.security.auth.login.LoginException: java.lang.SecurityException: [Security:0
    90304]Authentication Failed: User xelsysadm javax.security.auth.login.FailedLogi
    nException: [Security:090302]Authentication Failed: User xelsysadm denied
    at Thor.API.tcUtilityFactory.<init>(Unknown Source)
    at com.thortech.xl.scheduler.core.quartz.QuartzWrapper.execute(Unknown S
    ource)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:178)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.j
    ava:477)
    DEBUG,14 Jun 2009 23:30:02,953,[XELLERATE.SCHEDULER],Loading Scheduled task clas
    s com.thortech.xl.scheduler.core.quartz.QuartzWrapperusing ADP classloader
    DEBUG,14 Jun 2009 23:30:02,953,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoad
    er/getClassLoader entered.
    DEBUG,14 Jun 2009 23:30:02,953,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoad
    er/getClassLoader left.
    DEBUG,14 Jun 2009 23:30:02,968,[XELLERATE.SCHEDULER],Loading Scheduled task clas
    s com.thortech.xl.scheduler.core.quartz.QuartzWrapperusing ADP classloader
    DEBUG,14 Jun 2009 23:30:02,968,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoad
    er/getClassLoader entered.
    DEBUG,14 Jun 2009 23:30:02,968,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoad
    er/getClassLoader left.
    DEBUG,14 Jun 2009 23:30:02,968,[XELLERATE.SERVER],Class/Method: QuartzWrapper/ex
    ecute entered.
    INFO,14 Jun 2009 23:30:02,968,[XELLERATE.SERVER],Quartz Executing Scheduled tas
    k : Scheduled Provisioning Task
    DEBUG,14 Jun 2009 23:30:03,015,[XELLERATE.SCHEDULER],Class/Method: SchedulerUtil
    /eventPreInsert entered.
    DEBUG,14 Jun 2009 23:30:03,015,[XELLERATE.SCHEDULER],Class/Method: SchedulerUtil
    /getSchedulerInstanc left.
    ERROR,14 Jun 2009 23:30:03,015,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: tcUti
    lityFactory/tcUtilityFactory(Hashtable env, tcSignatureMessage poUserIDMessage)
    encounter some problems: javax.security.auth.login.LoginException: java.lang.Sec
    urityException: [Security:090304]Authentication Failed: User xelsysadm javax.sec
    urity.auth.login.FailedLoginException: [Security:090302]Authentication Failed: U
    ser xelsysadm denied
    javax.security.auth.login.LoginException: javax.security.auth.login.LoginExcepti
    on: java.lang.SecurityException: [Security:090304]Authentication Failed: User xe
    lsysadm javax.security.auth.login.FailedLoginException: [Security:090302]Authent
    ication Failed: User xelsysadm denied
    at weblogic.security.auth.login.UsernamePasswordLoginModule.login(Userna
    mePasswordLoginModule.java:199)
    at sun.reflect.GeneratedMethodAccessor131.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at javax.security.auth.login.LoginContext.invoke(LoginContext.java:769)
    at javax.security.auth.login.LoginContext.access$000(LoginContext.java:1
    86)
    at javax.security.auth.login.LoginContext$4.run(LoginContext.java:683)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:6
    80)
    at javax.security.auth.login.LoginContext.login(LoginContext.java:579)
    at Thor.API.Security.LoginHandler.weblogicLoginHandler.login(Unknown Sou
    rce)
    at Thor.API.tcUtilityFactory.<init>(Unknown Source)
    at com.thortech.xl.scheduler.core.quartz.QuartzWrapper.execute(Unknown S
    ource)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:178)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.j
    ava:477)
    ERROR,14 Jun 2009 23:30:03,015,[XELLERATE.SERVER],Class/Method: QuartzWrapper/ex
    ecute encounter some problems: javax.security.auth.login.LoginException: javax.s
    ecurity.auth.login.LoginException: java.lang.SecurityException: [Security:090304
    ]Authentication Failed: User xelsysadm javax.security.auth.login.FailedLoginExce
    ption: [Security:090302]Authentication Failed: User xelsysadm denied
    Thor.API.Exceptions.tcAPIException: javax.security.auth.login.LoginException: ja
    vax.security.auth.login.LoginException: java.lang.SecurityException: [Security:0
    90304]Authentication Failed: User xelsysadm javax.security.auth.login.FailedLogi
    nException: [Security:090302]Authentication Failed: User xelsysadm denied
    at Thor.API.tcUtilityFactory.<init>(Unknown Source)
    at com.thortech.xl.scheduler.core.quartz.QuartzWrapper.execute(Unknown S
    ource)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:178)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.j
    ava:477)
    DEBUG,14 Jun 2009 23:30:03,125,[XELLERATE.SCHEDULER],Loading Scheduled task clas
    s com.thortech.xl.scheduler.core.quartz.QuartzWrapperusing ADP classloader
    DEBUG,14 Jun 2009 23:30:03,140,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoad
    er/getClassLoader entered.
    DEBUG,14 Jun 2009 23:30:03,140,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoad
    er/getClassLoader left.
    DEBUG,14 Jun 2009 23:30:03,140,[XELLERATE.SCHEDULER],Loading Scheduled task clas
    s com.thortech.xl.scheduler.core.quartz.QuartzWrapperusing ADP classloader
    DEBUG,14 Jun 2009 23:30:03,140,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoad
    er/getClassLoader entered.
    DEBUG,14 Jun 2009 23:30:03,140,[XELLERATE.ADAPTERS],Class/Method: tcADPClassLoad
    er/getClassLoader left.
    DEBUG,14 Jun 2009 23:30:03,156,[XELLERATE.SERVER],Class/Method: QuartzWrapper/ex
    ecute entered.
    INFO,14 Jun 2009 23:30:03,156,[XELLERATE.SERVER],Quartz Executing Scheduled tas
    k : Issue Audit Messages Task
    DEBUG,14 Jun 2009 23:30:03,156,[XELLERATE.SCHEDULER],Class/Method: SchedulerUtil
    /eventPreInsert entered.
    DEBUG,14 Jun 2009 23:30:03,156,[XELLERATE.SCHEDULER],Class/Method: SchedulerUtil
    /getSchedulerInstanc left.
    ERROR,14 Jun 2009 23:30:03,156,[XELLERATE.ACCOUNTMANAGEMENT],Class/Method: tcUti
    lityFactory/tcUtilityFactory(Hashtable env, tcSignatureMessage poUserIDMessage)
    encounter some problems: javax.security.auth.login.LoginException: java.lang.Sec
    urityException: [Security:090304]Authentication Failed: User xelsysadm javax.sec
    urity.auth.login.FailedLoginException: [Security:090302]Authentication Failed: U
    ser xelsysadm denied
    javax.security.auth.login.LoginException: javax.security.auth.login.LoginExcepti
    on: java.lang.SecurityException: [Security:090304]Authentication Failed: User xe
    lsysadm javax.security.auth.login.FailedLoginException: [Security:090302]Authent
    Does anybody have any clues ?
    Thanks in advance.

    I faced similar issue sometime back with Weblogic.
    Here's how I resolved that -
    Using weblogic admin console verify that OIMAuthenticator is present in weblogic Authentication Providers under Security Realms - >myrealms->Providers
    Also check that Control Flag in DefaultAuthenticator is set to "SUFFICIENT". In my case after the installation it was still set to "REQUIRED".

  • Installation Guidance (WebLogic 10.3.5 / Oracle Forms,Reports 11.1.1.6)

    Goal : I am a designer/developer, have worked on already-installed systems for years, now between contracts and want/need to set up my own installation of Oracle Database 11g R2 database and development tools including Oracle Forms/Reports 11g (also SQL Developer and Application Express, but these come with the DB).
    Caveat : have not done an installation of the DB and development tools for years and I know a lot has changed.
    System : Windows 7 (64 bit), 6 GB RAM, 600 GB Hard Drive
    Here is an overview of the steps as I understand them from the documentation I've been able to find. I know there are lots of details for each step but I want to know if the overall order is right.
    1. Install DB (downloaded Oracle 11G Release 2, ready to install Enterprise Edition).
    2. Install Repository Creation Utility 11g Release 1 (11.1.1.5.0) to set up the schemas for Fusion Middleware
    ** QUESTION ** where on earth does one find this? Anyone have a link for it? Or does it come with a larger patchset/installation set?
    3. Install Oracle WebLogic Server 11g (10.3.5)
    4. Install Oracle Portal, Forms, Reports and Discoverer Release 11g (11.1.1.2.0) but do not configure (advice given in documentation for 11.1.1.6 Patchset)
    5. Install and Configure 11.1.1.6 Patchset
    Any comments or suggestions welcome. Hope to avoid pitfalls if possible.
    Thanks in advance !
    Peter

    It is not recommended and certified. Please refer the certification matrix -
    http://www.oracle.com/technetwork/middleware/downloads/fmw-11gr1certmatrix.xls
    . Oracle Fusion Middleware 11.1.1.1.0 is certified with WebLogic Server 10.3.1.
    . Oracle Fusion Middleware 11.1.1.2.0 is certified with WebLogic Server 10.3.2.
    . Oracle Fusion Middleware 11.1.1.3.0 is certified with WebLogic Server 10.3.3.
    . Oracle Fusion Middleware 11.1.1.4.0 is certified with WebLogic Server 10.3.4.
    . Oracle Fusion Middleware 11.1.1.5.0 is certified with WebLogic Server 10.3.5.
    Regards,
    Anuj

  • Can't uninstall a network installation (Version: WebLogic 8.1 for Windows)

    Hi,
    As described in the above subject, I encountered an error when trying to uninstall
    WebLogic 8.1 for windows, which is installed from another computer (WINXP) thru
    network.
    The installation executes on the remote machine. When asking the location for
    BEA home, I specify a path on a network drive , something like z:\bea.
    (z: is the drive of the computer I want weblogic to be installed. I do this because
    it only has enough space for the final installation, but not together with the
    temporary files)
    It seems that everything goes well, although the links in "Program Files" are
    created on the remote machine only. However, when I want to uninstall it, I encounter
    problems.
    First, when using the "add/remove programs" way, it complained that it was not
    able to find the path to javaw.exe. I paste the full command Z:\bea\jdk141_03\bin\javaw.exe
    -Duninstall.dir="z:\bea\weblogic81\uninstall" -jar "z:\bea\weblogic81\common\lib\uninstall.jar"
    and then it went on. Splash screen and the first wizard screen appears afterwards.
    However, when I pressed "Next", a prompt appeared, with message ":[z:\bea]".
    The same message appeared in console mode uninstallation.
    Is there anyway to solve this problem? Thx!

    Hi,
    I tried to replace all "Z:" to "C:" in registry.xml and re-uninstall again, but
    that doesn't work.
    Actually the thing I want to happen is only to remove the current (and somehow
    faulty?) installation. Is it 100% ok to just remove all the files manually?
    David Chan
    "Wayne W. Scott" <[email protected]> wrote:
    >
    David:
    It sounds like the install was done on one machine and you are trying
    to uninstall from
    another. If that is true ...
    Check the contents of the registry.xml file and see if the environment
    variables match
    those of the machine you are working on. In particular, the items that
    specify host
    names and install directories.
    Wayne Scott
    David Chan wrote:
    Hi,
    As described in the above subject, I encountered an error when tryingto uninstall
    WebLogic 8.1 for windows, which is installed from another computer(WINXP) thru
    network.
    The installation executes on the remote machine. When asking the locationfor
    BEA home, I specify a path on a network drive , something like z:\bea.
    (z: is the drive of the computer I want weblogic to be installed. Ido this because
    it only has enough space for the final installation, but not togetherwith the
    temporary files)
    It seems that everything goes well, although the links in "ProgramFiles" are
    created on the remote machine only. However, when I want to uninstallit, I encounter
    problems.
    First, when using the "add/remove programs" way, it complained thatit was not
    able to find the path to javaw.exe. I paste the full command Z:\bea\jdk141_03\bin\javaw.exe
    -Duninstall.dir="z:\bea\weblogic81\uninstall" -jar "z:\bea\weblogic81\common\lib\uninstall.jar"
    and then it went on. Splash screen and the first wizard screen appearsafterwards.
    However, when I pressed "Next", a prompt appeared, with message ":[z:\bea]".
    The same message appeared in console mode uninstallation.
    Is there anyway to solve this problem? Thx!

  • Fusion middleware OID cluster installation with weblogic domain

    Hi,
    I am trying to install/configure fusion middleware OID 11.1.1.2 cluster with two nodes.
    Installed Databse, Weblogic, Ran RCU for schema creation.
    I installed OID by selecting Create new Domain
    selected clustered check box while installtion.
    Selected OID and DIP for installation and configuration.
    Create domain was sucessfull.
    Deploy oracle directory server was Sucessfull.
    Got Error when deploying Directory Integration platform.
    Error: An internal operation has failed error in configuring DIP-00004 error in connecting to oracle internet directory server.
    I thing apply patch will solve this issue.
    I am able to login to weblogic
    Admin Server, Node manager and manager server are in running state.
    I am able launch enterprise manager.
    OID1 is up.
    I am not able to launch /odsm. any idea?? (tried with different browsers its the same)
    I am applying patch now..hope solves the issue.
    So now OID is deployed on one manager server and i have to add one more server in this cluster.
    I am thinking to do basic weblogic installation on other cluster server then copy the domain from machine1 to machine2.
    Not sure how to setup the other managed server with machine 2 details??
    Please correct me if i followed any wrong step.
    I need steps for Clustering.
    Any idea please help??

    when click on Next button it says "Weblogic server must already be installed".Please see if ("TypeError: unsupported operand type(s) for +: 'NoneType' and 'str'" Signaled When Creating ODI Domain On WebLogic Server [ID 1220075.1]) helps.
    In this configured with EBS instance? If yes, what is the document you have followed to configure it?
    Thanks,
    Hussein

Maybe you are looking for

  • Footer at the bottom of the page in Smartforms

    Hi All, I need to print some Sales data and then a hard coded paragraph at the end of last page of the print out n Smartform. Now the problem is: 1. If I put that paragraph in the footer then it prints as soon as the data ends in main window and not

  • Need information on the art of the possible with Business Catalyst

    Hi My wife is setting up an online Business that will sell downloadable language resources (for learning foreign languages). These will include worksheets, soundfiles, and also animations (that are being done by a separate animator). I am a 'rusty' J

  • Error on using utl_mail in 10G (10.0.1.2)

    I am try to use the utl_mail function in datbase 10.0.1.2 using this declaration but when i trye to execute it returns this errror : ERROR LINE 1: ORA-29261: error argument ORA-06512: a "SYS.UTL_TCP", line 28 ORA-06512: a "SYS.UTL_TCP", line 257 ORA-

  • CS6 Crashing

    My photoshop subscription crashes all the time.  Mainly when working with layers and mulitple files.  I shouldn't have to save a file after every step of editing, but I do.  Is anyone else having this issue?

  • Migrating from 10.4.11 Server to Mavericks (App) Server

    Hello All! We have recently purchased a new Mac Mini 2.3GHz quad-core i7 with OS Server, in the hope of replacing our current G5 X-Serve running 10.4.11. I would like it to be known that I am not a server administrative wizard, but am aware that the