OAM WebLogic integration issue

Hi
I have integrated portal application hosted on WebLogic with OAM using SSPI.
The integration is successful and the application is working fine but we see following Error message in the weblogic logs whenever user hits the Portal home page.
<Dec 2, 2008 1:39:20 AM PST> <Error> <NetPointSecurityProviders> <700012> <Access system authorization failed for resource. Type [wl_authen], Name [Authen/Basic], Operation [LOGIN]. Reason - User's authentication level is insufficient for a requested resource.>
We see this message only when user is not authenticated before and hits Portal home page which also has Login portlet. Once user is authenticated and access any resource on the portal application, we do not see such error messages.
Has anyone faced this issue before? And what could be wrong with the integration?
Thanks
Kiran Thakkar

Hi kiran,
U hve said tht u r successfull in integrating weblogic application server with OAM using SSPI
The same oly v are also trying to do but we are facing some issues:
I'm using BEA weblogic8.1sp3,OAM10.1.4.0.1 and SSPI10.1.4.0.1
During instillation of SSPI i have selected the advanced instillation so the policies are automatically getting deployed in my OAM but after tht my weblogic is not able to start.
In the log file it is showing the following errors:
####<Jan 28, 2009 12:37:02 PM IST> <Debug> <NetPointSecurityProviders> <wipro-67b4e0638> <myserver> <main> <<WLS Kernel>> <000000> <ObUserSession ctor from username, password failed
com.oblix.access.ObAccessException: Unprotected resource LOGIN wl_authen:/Authen/Basic used in an ObAuthenticationScheme or ObUserSession constructor.
at com.oblix.access.ObUserSession.initCppSideAuthenticate(Native Method)
at com.oblix.access.ObUserSession.<init>(ObUserSession.java:243)
at com.oblix.weblogic.internal.OblixDatabase.login(OblixDatabase.java:192)
at com.oblix.weblogic.security.providers.authentication.OblixLoginModuleImpl.login(OblixLoginModuleImpl.java:193)
at weblogic.security.service.DelegateLoginModuleImpl.login(DelegateLoginModuleImpl.java:71)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at javax.security.auth.login.LoginContext.invoke(LoginContext.java:675)
at javax.security.auth.login.LoginContext.access$000(LoginContext.java:129)
at javax.security.auth.login.LoginContext$4.run(LoginContext.java:610)
at java.security.AccessController.doPrivileged(Native Method)
at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:607)
at javax.security.auth.login.LoginContext.login(LoginContext.java:534)
at weblogic.security.service.PrincipalAuthenticator.authInternal(PrincipalAuthenticator.java:326)
at weblogic.security.service.PrincipalAuthenticator.authenticate(PrincipalAuthenticator.java:279)
at weblogic.security.service.SecurityServiceManagerDelegateImpl.doBootAuthorization(SecurityServiceManagerDelegateImpl.java:786)
at weblogic.security.service.SecurityServiceManagerDelegateImpl.initialize(SecurityServiceManagerDelegateImpl.java:886)
at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:717)
at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:822)
at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:670)
at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:344)
at weblogic.Server.main(Server.java:32)
####<Jan 28, 2009 12:37:02 PM IST> <Debug> <NetPointSecurityProviders> <wipro-67b4e0638> <myserver> <main> <<WLS Kernel>> <000000> <Entering OblixLoginModuleImpl.abort>
####<Jan 28, 2009 12:37:02 PM IST> <Critical> <Security> <wipro-67b4e0638> <myserver> <main> <<WLS Kernel>> <BEA-090402> <Authentication denied: Boot identity not valid; The user name and/or password from the boot identity file (boot.properties) is not valid. The boot identity may have been changed since the boot identity file was created. Please edit and update the boot identity file with the proper values of username and password. The first time the updated boot identity file is used to start the server, these new values are encrypted.>
Can you please help me to solve this problem.
Thanks in advance.

Similar Messages

  • Issue with creating array of custom data type - WebLogic Integration

    Hi,
    We are doing WebLogic integration with Siebel for which from Siebel side we have generated java wrapper class which has all the methods, input\outputs defined and in\out params are serialized along with get\set methods. Following are the details of the input\output args.
    Account_EMRIO.java
    public class Account_EMRIO implements Serializable, Cloneable, SiebelHierarchy {
    protected String fIntObjectFormat = null;
    protected String fMessageType = "Integration Object";
    protected String fMessageId = null;
    protected String fIntObjectName = "Account_EMR";
    protected String fOutputIntObjectName = "Account_EMR";
    protected ArrayList <AccountIC> fintObjInst = null;
    Above class also includes constructors\overloaded constructor\getters\setters
    public AccountIC getfintObjInst() {    
    if(fintObjInst != null) {
    return (AccountIC)fintObjInst.clone();
    }else{
    return null;
    public void setfintObjInst(AccountIC val) {
    if(val != null) {
    if(fintObjInst == null) { 
    fintObjInst = new ArrayList<AccountIC>();
    fintObjInst.add(val);
    For the nested user defined data type AccountIC, it is defined in another java class as below
    AccountIC.java
    public class AccountIC implements Serializable, Cloneable, SiebelHierarchy {
    protected String fname = null;
    protected String fParent_Account_Id= null;
    protected String fPrimary_Organization = null;
    With the above, I was able to get all the AccountIC in the wsdl correctly and using this I was able to set the input param in the client
    WSDL:
    <xs:complexType name="accountEMRIO">
    <xs:sequence>
    <xs:element name="fIntObjectFormat" type="xs:string" minOccurs="0"/>
    <xs:element name="fIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageId" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageType" type="xs:string" minOccurs="0"/>
    <xs:element name="fOutputIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fintObjInst" type="tns:accountIC" minOccurs="0"/>
    </xs:sequence>
    <xs:complexType name="accountIC">
    <xs:sequence>
    <xs:element name="fName" type="xs:string" minOccurs="0"/>
    <xs:element name="fParent_Account_Id" type="xs:string" minOccurs="0"/>
    <xs:element name="fPrimary_Organization" type="xs:string" minOccurs="0"/>
    minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    Now, I wanted to make slight difference in getter method of class Account_EMRIO method getfintObjInst so that an array of AccountIC is retured as output.
    public ArrayList<AccountIC> getfintObjInst() {    
    if(fintObjInst != null) {
    return (ArrayList<AccountIC>)fintObjInst.clone();
    }else{
    return null;
    With the above change, once the wsdl is generated, I am no longer getting fintObjInst field for AccountIC due to which I am unable to get the array list of accountIC
    WSDL:
    <xs:complexType name="accountEMRIO">
    <xs:sequence>
    <xs:element name="fIntObjectFormat" type="xs:string" minOccurs="0"/>
    <xs:element name="fIntObjectName" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageId" type="xs:string" minOccurs="0"/>
    <xs:element name="fMessageType" type="xs:string" minOccurs="0"/>
    <xs:element name="fOutputIntObjectName" type="xs:string" minOccurs="0"/>
    </xs:sequence>
    </xs:complexType>
    The issue that I am facing here is, we have a custom data type(AccountIC) which has several fields in it. In the output I need a array of AccountIC. In the java bean, when this type was defined as
    protected ArrayList <AccountIC> fintObjInst = null; I was unable to get a array of AccountIC. this gets complicated as inside a AccountIC there is array of contacts as well and all the time I am getting just the first records and not a array.
    To summarize: How to get xsd:list or maxoccurs property for a field in WSDL for the user defined\custom datatype?
    Can someone help me with this.
    Thanks,
    Sudha.

    can someone help with this??

  • OAM manage roles and Authorization in WebLogic integration

    Hi
    Had anyone done weblogic integration where OAM manages roles and Authorization?
    I could read in Oracle WebLogic integration document that,
    "The Security Provider only supports authentication for portals."
    I wanted to figure out if anyone has done this before or Is it possible to delegate role management and Authorization responsibility to OAM?
    Thanks
    Kiran Thakkar

    Thanks for the quick response.
    Thanks
    Kiran Thakkar

  • OIM - SOA 11g R1  Integration Issue

    Hi ,
    I am facing an integration issue in my newly set up Dev environment .
    We have single node OIM and SOA environment . I was executing the basic connectivity checks to ensure that the environment is good and ready for use .
    When I ran the SOA-OIM Configuration test (http://i.tinyuploads.com/M1zyaP.jpg ) in the environment from Diagnostic Dashboard, it failed .
    I have verified the URLs from EM and also in MDS (in oim-config.xml) file . All entries seem to be there , not sure why its failing ? Any pointers ??
    I have checked the rmi and soap urls here Application Defined MBeans ->oracle.iam->Server (OIM ServerName)->Application:oim->XML Config->Config->XMLConfig.SOAConfig->SOAConfig  and they looked perfectly fine .
    Any clues ??
    Regards
    Suren

    did you tried accessing the oim and soa urls:
    1. http://<hostname>:<port>/oim (login with xelsysadm user)
    2. http://<hostname>:<port>/soa-infra (login with weblogic user)
    Are you able to login to both urls.

  • Weblogic Integration 2.1  problem

    <b>I have installed Oracle 9.X then installed Weblogic 6.1 and then installed Weblogic Integration 2.1
    after instalation i have started Weblogic server by clicking wlintegration2.1/config/bpmDomain/startWeblogic.cmd
    Then i am getting this problem</b>
    java.rmi.RemoteException: EJB Exception: ; nested exception is:
    javax.ejb.EJBException
    - with nested exception:
    [javax.naming.LinkException:  [Root exception is javax.naming.NameNotFoundExcept
    ion: Unable to resolve com.bea.wlpi.TXDataSource. Resolved: 'com.bea.wlpi' Unres
    olved:'TXDataSource' ; remaining name '']; Link Remaining Name: 'com.bea.wlpi.TX
    DataSource']
    javax.naming.LinkException: . Root exception is javax.naming.NameNotFoundExcept
    ion: Unable to resolve com.bea.wlpi.TXDataSource. Resolved: 'com.bea.wlpi' Unres
    olved:'TXDataSource' ; remaining name ''
    <<no stack trace available>>
    --------------- nested within: ------------------
    javax.ejb.EJBException
    - with nested exception:
    [javax.naming.LinkException:  [Root exception is javax.naming.NameNotFoundExcept
    ion: Unable to resolve com.bea.wlpi.TXDataSource. Resolved: 'com.bea.wlpi' Unres
    olved:'TXDataSource' ; remaining name '']; Link Remaining Name: 'com.bea.wlpi.TX
    DataSource']
    at com.bea.wlpi.server.plugin.PluginManagerCfgImpl.getConfiguredPlugins(
    PluginManagerCfgImpl.java:749)
    at com.bea.wlpi.server.plugin.PluginManagerCfgImpl.initializePlugins(Plu
    ginManagerCfgImpl.java:873)
    at com.bea.wlpi.server.plugin.PluginManagerCfgImpl.init(PluginManagerCfg
    Impl.java:80)
    at com.bea.wlpi.server.plugin.PluginManagerCfgBean_gebmxi_EOImpl.init(Pl
    uginManagerCfgBean_gebmxi_EOImpl.java:1300)
    at com.bea.wlpi.server.initlistener.InitListenerBean.onMessage(InitListe
    nerBean.java:153)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:254)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:206)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:1864)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:1819)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    <Oct 31, 2006 4:49:49 PM IST> <Notice> <WebLogicServer> <Started WebLogic Admin
    Server "myserver" for domain "bpmdomain" running in Production Mode>
    javax.naming.NameNotFoundException: Unable to resolve com.bea.wlpi.TXDataSource.
    Resolved: 'com.bea.wlpi' Unresolved:'TXDataSource' ; remaining name ''
    <<no stack trace available>>
    javax.naming.NameNotFoundException: Unable to resolve com.bea.wlpi.TXDataSource.
    Resolved: 'com.bea.wlpi' Unresolved:'TXDataSource' ; remaining name ''
    <<no stack trace available>>
    javax.naming.NameNotFoundException: Unable to resolve com.bea.wlpi.TXDataSource.
    Resolved: 'com.bea.wlpi' Unresolved:'TXDataSource' ; remaining name ''
    <<no stack trace available>>
    <b>Please resolve this ASAP</b>.

    I'm having this issue as well. Can you tell me how you fixed the problem???
    Thanks

  • Oracle WebLogic Integration's Custom Control and SOA Suite Spring Component

    I crated this thread to inform users about some issues with the
    Oracle WebLogic Integration's Custom Control and SOA Suite Spring Component
    tutorial from
    http://www.oracle.com/technology/architect/soa-suite-series/wli_custom_control_spring_component.html
    - Fig. 6 doesn't agree with what's just above. This step isn't necessary because it can be create automatically when you make a class.
    - Fig. 11 shows the package
    sample.oracle.otn.soaessentials.javainteg
    and the class should be placed in
    sample.oracle.otn.soaessentials.javainteg.impl
    - The Business Tier -> Spring 2.5 might not be available. Extensions steps steps should be given.
    - Fig. 15 When lgger-context is created in Jdev 11.1.1.3.0 the Spring context is created in
    /mywork/SOASuiteWLIEssentials/JavaIntegration/src/META-INF
    while in the sample project it is in
    /mywork/SOASuiteWLIEssentials/JavaIntegration
    - Fig 18 has incorrect class name.
    - Fig 19 is incorrect: there is no Spring 2.5 SCA in Jdev 11.1.1.3.0; there is only WebLogic SCA. Where is the canvas mentioned above?
    - Fig 28 logger-context.xml is not where it is displayed in the fig. It is /src/Meta-Inf/.
    - Most of the fig from the deployment are not up to date.
    - I don't understand the need for the portion:
    "Implementing the use case in WLI" up to
    "Implementing the use case in SOA Suite"
    It confused me when I tried to follow the tutorial.

    I am also looking for the same .... Please share the CLoning script for SOA Suite from Prod to staging Env...
    Thanks.

  • Weblogic Integration WLI adapters for Siebel

    To integrate with Siebel and Oracle EBS, earlier version of WLI (8.2 & 9) had adapters available with it, but the latest version of WLI 10.2 does not have the adapters.
    Can we know what should be the recommended and supported mechanism of integration with Siebel and Oracle EBS for synchronous request response scenarios?

    Krish,
    You can build a JMS/TIBCO adapter and deploy it on any J2EE CA compliant container.
    Pros:
    Your adapter can be deployed on any compliant application server (including WLS).
    Cons:
    The J2EE CA 1.0 specification is very limited when it comes to EAI. It does not
    address bi-directional communication (EIS events), asynchronous service invocation
    and implementing javax.resource.cci interfaces is not mandatory (these are what come
    to mind first, there are others). So, if you don't use WLI, you can't take
    advantage of our value added features. TIBCO may have extended JCA as well, I don't
    know.
    Summary:
    If your adapter just sticks to what is specified in the JCA spec, you have total
    autonomy, however, you have limited EAI capabilities. If you use the proprietary
    extensions provided by a particular vendor (BEA WLI, TIBCO, etc...) then you are
    tied the their environment. Until the J2EE Connector Architecture addresses these
    EAI issues, you will run into proprietary EAI solutions.
    Cheers,
    Chris
    Krish Khambadkone wrote:
    Can one implement an EAI solution with only the weblogic server. There is a need
    to interface with TIBCO. Is it mandatory that one use Weblogic Integration for
    integration or can we build a JMS/TIBCO adapter and deploy it on just weblogic.
    What are the Pros and Cons.
    --Krish.

  • Weblogic integration with ODI11g

    Hi All,
    can anyone help me to complete weblogic integration with ODI11g.
    Many Thanks
    Pavan.

    Hi ,
    I am working on ODI 11.1.1.5 and i have downloaded the WLS 12C.
    while Creating new weblogic Domain using Configuration Wizard of WLS i cannot able to see all the options and i am following the below weblink so can anyone please help me out regarding my issue.
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/odi/odi11g/setup_jee_agent/setup_jee_agent.htm_*
    Regards
    Pavan.

  • Deleting Server Cache in Oracle Weblogic Integration...

    Hi All,
    I just hope I am posting at the right place.
    If not, please redirect me...
    I am using Weblogic Integration and now I need to deploy all my work on por production environment.
    While working in the local env, I used to delete .wlnotdelete and other cache folders before restarting the server.
    My query is that if I delete those folders on production env, will that cause any adverse effect?
    .jpd's are probably stored there...so maybe that or can anything else lead to some issues?
    Kindly advice.
    Thanks,
    Suril

    sorry,wrong forum
    move to Weblogic Server Section
    Edited by: inchlin on Apr 1, 2009 9:39 AM

  • Weblogic Integration Server

    Hello, Hi all of you.
    I am new developer in Weblogic Integration, have a issue plz tell me.
    I am trying to add a new process but that process is not adding in my project its showing that "Unable to render the process. Correct problems in source." its come btwn then start node nd ending node. when i just see that java file in a design view.
    Edited by amit.15.gupta at 04/01/2008 5:22 AM

    Please ask this question in the SOA Suite forum which is the right forum for all integration technologies:
    http://forums.oracle.com/forums/category.jspa?categoryID=194

  • Reports 6i and WeBDB 2.2 Integration Issues

    1. I have installed reports6i andintegrated with WebDB 2.2 by running the fo
    llo
    wingScripts:
    oracle_home\report60\server\security\rwwwvins.sql webdb and
    \oracle_home\report60\server\security\rwenable.sql
    as described in the webdb& reports6i integration issues document in oracle r
    epo
    rts6i beta site.
    Afterinstalling, when i logged to webdb as webdb user, i was able to see sev
    er
    access and rdf access options in webdb 2.2
    However, when i log as an userwhere i have created forms components i am una
    ble
    to access the abovecomponents. (there is no documentation on what privileg
    es
    needs to be providedto the user., however i had given grants to following ro
    les
    withRW_ADMINISTRATOR, RW_POWER_USER, RW_DEVELOPER AND RW_BASIC_USer
    null

    Hi Matt,
    You didn't mention but do you also wish to install the database(8i) on the same machine ?
    I am also trying to install all these products(+8i and designer 6i) on the same box but I am concerned more about the min. resources needed before I get started.(I put up a question about it on the 6i Forum, but nobody has answered yet !)
    The correct install order should be Forms/Reports 6i then Forms/Reports 6i Server and then WebDb 2.2.
    Forms /reports server needs a http listener and installs en configures the WebDb listener for the job.(you are prompted for this during tho have the install process).This is handy if you are intending to use WebDb anyway. When you install Webdb it detects the already installed WebDb listener and does not reinstall.
    You do have the SYS password on the database you will use to stored the WDK and WebDb schema.
    About installing the demo.....
    I dont' think there are any special issues.I have never done it.
    If you are intending to install an 8i database on the same box there are some important things to consider with respect to the install order and what products in which Oracle home must be installed.
    1.Forms/Reports first in the default_oracle
    home.
    2.Then Oracle 8i in a 2nd oracle home call
    it ora81 for example.
    3.Then WebDb in the non oracle 8i home !!
    This is just a quick summary.
    If you run into any problems let me know
    Good Luck.
    Dave.

  • Weblogic Integration Interview Questions and Answers

    Can some one send me WebLogic Integration interview questions and answers to [email protected] and [email protected]
    Thank you.

    hi all,
    can any one help us how to get or retrieve DataSource Names in weblogic using java code.
    it is very urgent. please copy the java code here.
    Somu :)

  • Weblogic Integration 10r3 error in msg-header-2_0.xml

    Hello,
    I am trying to go through te WLI workshops, but cannot publish a WLI process.
    The Tutorial_Process_Application RequestQoute.java has the following error in the msg-header-2_0.xml:
    Severity and Description     Path     Resource     Location     Creation Time     Id
    Referenced file contains errors (http://www.w3.org/TR/1999/REC-html401-19991224/strict.dtd). For more information, right click on the message and select "Show Details..."     Tutorial_Process_Application_Utility/schemas/system     msg-header-2_0.xsd     line 1     1257804610777     410
    A new WLI project from scratch gives te same error, it is as if the msg-header-2_0.xml is not correctly generated when the WLI process is created.

    Aha! problem solved :)
    The tutorial states : 'Select the Add WebLogic Integration System and Control Schemas to Utility Project check box to add the system schemas to the Schemas folder under the Utility project.'
    If you do that it does not work, and i get the errors I discribed in the post, howerver if ypu leave it blanked out, the process can be published, without error or warnings.
    As I am new to WLI (use to work with Oracle Bpel) I have no idea about the importance of adding the Integration system and control schemas to the utility project.
    However as my goal is to work through the workshops, I wil worry about it later.
    Edited by: DaveVQ on 14-nov-2009 5:39

  • WLST and WebLogic Integration

    Hi all,
    I have installed WebLogic Integration 8.5 bundle. Meaning i have also installed weblogic server 8.1. on Windows XP
    I am now trying to use Weblogic Scripting Tool WLST. But there is no tools on the menu(tools->weblogic scripting tool) this was added in the 9.1 installation...
    How do I configure my installation weblogic server 8.1 with WLI8.5 to run WLST?
    after i run setELSEnv.cmd to set the environment. Then i try java weblogic.WLST and the error is "java.lang.NoClassDefFoundError: weblogic/WLST"
    Where are the libs, how do i configure WLST to run.
    I also tried starting the WLST from the 9.1 installation, but it cannot connect to 8.1 installation, tough connecting to 9.1 installation is no problem. If i try i get this error: "weblogic.management.ManagementRuntimeException: java.lang.NoSuchMethodError: isCachable"
    (I installed weblogic 9.1 and there the WLST was installed during installation and all works just fine. unfortenatly my system must run on 8.1->wli8.5)

    Hi
    I am trying to use WLST tool for configuring Weblogic domain in 9.1 OFFLINE.
    I have done with almost all except JTA configuration.
    Can you please give me smaples for the same.
    The following is part iof my script...
    readTemplate('F:/AuctionDoc/Installer/inDomain.jar')
    cd('/JDBCSystemResource/localNonTxPool/JdbcResource/localNonTxPool')
    create('myJdbcDataSourceParams','JDBCDataSourceParams')
    cd('JDBCDataSourceParams/NO_NAME_0')
    set('JNDIName', 'jdbc/NonTxDataSource')
    #JDBC settings and other JMS settings worked
    But the JTA settings dint work
    #=======================================================================================
    # Set JTA timeout
    #=======================================================================================
    cd("/JTA/inInstDomain")
    set("TimeoutSeconds", "1200")
    set("AbandonTimeoutSeconds", "1200")
    I have to do the above OFFLINE.
    I could not locate the JTA folder or any thing related with JTA configuration to do offline using WLST
    Can you please give an example of JTA settings
    Thanks
    Binu

  • Upgrading a project from Weblogic Integration 8.1.3 to Weblogic Integration

    Can anyone offer any advice to assist me in upgrading a project from Weblogic Integration 8.1.3 to Weblogic Integration 9.2.1?
    Here are some nuances of the project:
    * The JNDI, JDBC, & JMS server resources are secured; access is controlled by Deployment Descriptor run-as/security-role/... tags and custom CSPs
    * The application is currently build for deployment using wlwBuild ant task (class in workshop.core.WlwBuildTask which is located in the 8.1.3 {weblogic.home}/workshop/wlw-ide.jar - so far I can't find this class/task in my 9.2.1 install)
    * The following are the application characteristics (and utilized WLI features): multiple web apps, EJBs, JMS, Page flow/netUI, web services, WLI controls (process, java, transformation), XMLBeans
    * One of the project goals is to not make any functional changes and modify as little code as necessary (the only expected justification for a modification is a) fallout out from the JVM 1.5 upgrade or b) something is no longer available in WLI 9.2)
    I know there is a edocs page with a tutorial for upgrading from 8.1.4 or 8.1.5 to 9.2, but I am interested in knowing if anyone has insight on upgrading directly from 8.1.3?
    Thanks in advance for any and all assistance.
    Regards,
    Andy Frank

    just as a followup to my original message.. regarding the 8.1.4 install log that had all the warnings with the msi it expected and the different one it found... at the bottom of the log..this is what I got;
    Property(S): SourcedirProduct = {AC76BA86-7AD7-1033-7B44-A81300000003}
    MSI (s) (6C:30) [11:11:23:828]: Product: Adobe Reader 8.1.4 - Update 'KB408682' installed successfully.
    MSI (s) (6C:30) [11:11:23:828]: Product: Adobe Reader 8.1.4 -- Installation operation completed successfully.
    when i go into adobe reader -> help -> about i stillget 8.1.3

Maybe you are looking for

  • How  to Upgrade from SAP NetWeaver 7.01 to NW 7.02?

    Hi Experts,   I am working on GRC upgrade project,we need upgrade to GRC10.0 from GRC3.0. GRC 10.0 only work on NW7.02,we now have NW7.01.    How  to Upgrade from SAP NetWeaver 7.01 to NW 7.02? Use EHPI tools or just spam/saint  or any other way ? cu

  • How to delete duplicates in oracle 10g ( strange behaviour)

    Recently we migrated from oracel 8i to oralce 10g and we face this problem. When we try to delete duplicates using rowid ( analytical functions row_number()/ or normal delete ) and commit the same , still we find some duplicates to be existing becaus

  • Ipod Updater & wireless connection

    I've been unable to download the latest 5th gen Ipod update through Itunes 7 over my wireless internet connection. Each time I click on the "Update" button I get a message saying my computer is not connected to the internet even though my wireless co

  • Cant get videos to load

    Cleaned cache using ccleaner and delted too many cookies.  I am running windows 7 home premium 64 bit.  Videos on Cnn.com show ads but no video news content.  BBC games do not open.  Ads and games on addictinggames.com do not appear.  Happens with bo

  • Can't install XP Pro on Satellite A200-25H

    Can't Install XP Pro on Satallite A200-25H During F6 install XP pro i use USB floppy drive and Intel 82801 HEM/HBM SATA AHCI drivers, and it lets me format drive NTFS. Then asks for Intel Matrix Storage Manager Driver. in Drive A:. THe Bios wont allo