Oracle Access Manager Configuration : Cannot find the Person Object Class

Hi,
I am trying to install OAM , I am getting the following error when i am configuring the Identity server for the first time.
1) I have installed OID. I am using one OID for both config and user data.
2) I have installed Identity server and have modified the OID schema automically during installation.
3) I have installed web pass.
I have gone to the url: http://trn-ps-oid.oracle.com:7777/identity/oblix
Here i gone to Identity System Console to configure Identity server.
Following are the config data i have given
Configuration DN : dc=mydomain,dc=com
Search Base : dc=mydomain,dc=com
Host : mypc.mydomain.com
Port Number : 389
Root DN : cn=orcladmin
Root Password : *******
Directory Server Security Mode : Open
Is the Configuration data stored in this directory also : Yes
Person Object Class : inetorgperson
Auto configure objectclass : yes
Group Object Class : groupOfUniqueNames
Auto configure objectclass : yes
After this I have clicked on the restart server button.
It comes back to the page asking to enter Person Object class details.
I Get the Error : Cannot find the Person Object Class.
I have checked the object class in OID it is there, I have verified the connection details are also correct.
Any Ideas what might be wrong.
Earlier during setup i had to modify the OID schema, how do i check if this has been done.
Any Ideas

<?xml version="1.0" encoding="utf-8"?>
<ValNameList
xmlns="http://www.oblix.com"
ListName="setup.xml">
<NameValPair
ParamName="mainOIS"
Value="true"></NameValPair>
<NameValPair
ParamName="currentStep"
Value="LDAP_CONFIG_CHANGES"></NameValPair>
<NameValPair
ParamName="status"
Value="incomplete"></NameValPair>
<NameValPair
ParamName="whichDB"
Value="OID"></NameValPair>
<NameValPair
ParamName="dataDirCopied"
Value="TRUE"></NameValPair>
<NameValPair
ParamName="machineNo"
Value="localhost"></NameValPair>
<NameValPair
ParamName="portNo"
Value="389"></NameValPair>
<NameValPair
ParamName="rootDN"
Value="cn=orcladmin,cn=Users,dc=mydomain,dc=com"></NameValPair>
<NameValPair
ParamName="ldapRootPasswd"
Value="**************"></NameValPair>
<NameValPair
ParamName="securityMode"
Value="Open"></NameValPair>
<NameValPair
ParamName="oblixUserDataSame"
Value="Yes"></NameValPair>
<NameValPair
ParamName="searchBase"
Value="dc=mydomain,dc=com"></NameValPair>
<NameValPair
ParamName="configDN"
Value="dc=mydomain,dc=com"></NameValPair>
<NameValPair
ParamName="obClassPerson"
Value="inetorgperson"></NameValPair>
<NameValPair
ParamName="defaultConfigForPersonOC"
Value="true"></NameValPair>
<NameValPair
ParamName="obClassGroup"
Value="groupOfUniqueNames"></NameValPair>
<NameValPair
ParamName="defaultConfigForGroupOC"
Value="true"></NameValPair>
<NameValPair
ParamName="obOldClassPerson"
Value="inetorgperson"></NameValPair>
<NameValPair
ParamName="obOldClassGroup"
Value="groupOfUniqueNames"></NameValPair>
</ValNameList>

Similar Messages

  • Cannot find the Person Object Class

    In Identity Server installation the Person object class is not accepting this recommended object "inetOrgPerson", "User" and Organizational Person" .
    What should be the person object class be supplied to make the installation continue? Is there anything that I need to configure in Oracle fusion middleware 11g?
    thanks for the help in advance.

    Hi
    What is the directory server you are using? If you are using AD. It does not have inetOrgPerson object class.
    Person object class is custom object class created for your organization which contains all the custom attributes created according to requirement of your organization.
    Refer following document for more details,
    http://download.oracle.com/docs/cd/E10761_01/doc/oam.1014/b32419/objects.htm#BABICEFB
    Thanks
    Kiran Thakkar

  • Oracle Access Manager - Configuration Manager Success Stories

    The Oracle Access Manager Configuration Manager [http://download-uk.oracle.com/docs/cd/B28196_01/idmanage.1014/b32392.pdf] has been around for about a year now. I'm looking for any feedback regarding this product:
    Has anyone deployed it?
    How successful was the deployment?
    Is the tool doing what you expected it to do?
    Thanks for any responses.
    Mark

    @pokurik: cn=orcladmin is the full DN. In OID there are two orcladmin users with different ACLs.
    Which OAM version? Always provide the version you are using.
    --olaf                                                                                                                                                                                                                                                                                                                                                       

  • "RUN-TIME ERROR '3078': The Microsoft Access database engine cannot find the input table or query 'name'. Make sure it exists and that its name is spelled correctly.

     When I run the code below I get the following error:"RUN-TIME ERROR '3078': The Microsoft Access database engine cannot find the input table or query 'False'. Make sure it exists and that its name is spelled correctly. Note that I do not call
    anything by the name of "false" anywhere in this code.
    The subject code (the underscored line of code is highlighted in the debugger when the error occurs):
    Option Compare Database
    Private Sub JobAssign_Click()
    MatLotListAvail_openform
    End Sub
    Function MatLotListAvail_openform()
    Dim dbsAPIShopManager2010 As DAO.Database
    Dim rstMaterialLotJobJoint As DAO.Recordset
    Dim strSQL As String
    Set dbsAPIShopManager2010 = CurrentDb
    strSQL = "SELECT * FROM MaterialLotJobJoint WHERE JobID" = "tempvars!JobID" And "MatLotID" = "tempvars!MatLotID"
    Set rstMaterialLotJobJoint = dbsAPIShopManager2010.OpenRecordset(strSQL, dbOpenDynaset)
    If rstMaterialLotJobJoint.EOF Then
    DoCmd.OpenForm "JobAssignMatConf", acNormal, "", "", acEdit, acNormal
    Forms!JobAssignMatConf!PartapiIDVH = TempVars!PartapiID
    Forms!JobAssignMatConf!JobapiIDVH = TempVars!JobapiID
    Forms!JobAssignMatConf!JobIDVH = TempVars!JobID
    Forms!JobAssignMatConf!MaterialLotIDVH = TempVars!MatLotID
    Forms!JobAssignMatConf!Desc = TempVars!MatDesc
    Forms!JobAssignMatConf!recdate = TempVars!recdate
    DoCmd.Close acForm, "MaterialLotListAvailable"
    Else: MsgBox "This material lot has already been assigned to this job."
    DoCmd.Close acForm, "MaterialLotListAvailable"
    End If
    End Function

    I think the SQL statement should be
    strSQL = "SELECT * FROM MaterialLotJobJoint WHERE JobID=" & _
    tempvars!JobID & " AND MatLotID=" & tempvars!MatLotID
    This assumes thatJobID and MatLotID are number fields.
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • How can I reactivate my phone if I cannot find the person who originally had the phone

    How can I reactivate my phone if I cannot find the person who originally had the phone

    You can't.  You need to contact the previous owner to get those log in details - this is the new activation lock and without it you will never be able to use that phone.
    You might have to start from scratch again and buy a new phone.

  • It but when I'm trying to  asking for password or the cd to change the password but I don't have it and I cannot find the person

    I bought a mcbookpro on eBay but I don't have the cd of it and the security password that he give is not much,so I cannot install or take of something,

    You need to buy a Mac OS X 10.6 DVD.
    (84997)

  • Issues integrating WebCenter with Oracle Access Manager

    Hi All,
    I am trying to integrate WebCenter 10.1.3.2 with Oracle Access Manager (CoreId). Followed the steps described in the Chapter 11 of the OC4J Security Guide.
    I was able to successfully authenticate WebCenter using IWA with Access Manager.
    Then I proceeded with the below steps:
    - Implemented ADF Security in the application. Created application roles and login page and worked fine on my local machine.
    - Provide the auth-method of "COREIDSSO" in orion-application.xml
    - Renamed the app-jazn-data.xml to give the OID groups
    - Mapped the OID groups to application roles in orion-application.xml
    - Used the jazn migration tool to populate the system-jazn-data.xml
    When trying to access the application, it looks like the ADF Context identifies that this is an authenticated user.
    ADFContext.getCurrent().getSecurityContext().isAuthenticated() retruns true
    ADFContext.getCurrent().getSecurityContext().isAuthorizationEnabled() returns true
    I get the below error message on the server console:
    [CoreIDLoginModule::getUserSessionFromCookie]: This user session for F3iwZhUGgjej9RSrMLSo0wjH5Ec6c2oeC0OBRH12y7%2FvfPVncz6dYoBoFD6q8DWAlMtzah%2FYV4T1t7jztVFYbxwfOyu0VOMXMEIosRrFicfJwoPRrM8MOkFsziQxpUqo98XrC9iBRHffdWSItNHZRZK4ZoCJMi6HZZ6noOc4Z%2BGJDGj3kWndYHTWjiG0cJhkSbL95wMmrXCDElzZHjPMdkuNQUHW1TfAJvgSlDeX6hhhIThlc%2BGmxMP3MQ%2FZoxUysbKieIJgDXo1%2FEMmLmTVjA%3D%3D is not valid or user is not logged in.
    I also tried using the "Headervar" variable to display the obmygroups value, but it comes as blank.
    Any help would be appreciated.
    Thanks
    Aneesh

    We recently integrated Webcenter Application (with ADF Authentication and Authorization) with OAM. May be the following will be of some help to you.
    We did the following steps documented in Chapter 11 Oracle Access Manager in Oracle J2EE security guide.
    OAM
    1. Created ALL specified policies , authentication schemes, protection specified in OAM section of the document.
    OC4J
    1. Ran all configuration listed for the OC4J section.
    Webcenter
    1. Developed the Webcenter Application
    2. Enabled ADF Security (Authentication & Authorization)
    3. Deployed the application. While deploying chose File based provider.
    4. After the deployment, changed orion-application.xml to have COREIDSSO as documented in Oracle documentation
    system-jazn-data.xml
    1. Added login module details as specified in the document. (Changed only the application name. Rest all was same as we used names as specified in the earlier steps of the document)
    OID Migration
    Reference document: "Configuring a WebCenter Application to Use Oracle Access Manager" in Webcenter Framework Developer guide.
    1. Located app-jazn-data.xml in the deployed application
    2. Removed "realm-name" and "type" subelements of "grantee" tags. Removed any realm details in user name.
    3. changed references to "class oracle.security.jazn.spi.xml.XMLRealmRole" to "oracle.security.jazn.realm.CoreIDPrincipal"
    4. ran the JAZN migration tool with "all" options. Migration from app-jazn-data.xml to OID.
    OAM
    Created policies for protecting our application.
    Test the application.
    Debugging.
    1. Enable oracle.adf.share.security , oracle.j2ee.security & oracle.j2ee.security.oc4j loggers to debug if the application is not working the way you expect to work.
    2. Set log level in Enterprise manager.
    3. All logging information are written in log.xml in $ORACLE_HOME/j2ee/OC4J_Webcenter/log/OC4J_WebCenter_default_group_1/oc4j
    Thanks

  • Alerts subtab is missing Cannot find the Health Monitoring add-in

    I'm running a Windows Server 2012 R2 with Essentials Services. I ended up switching domains with this server. I completely uninstalled Essentials server and all the dependent components with no reported errors.
    I reinstalled everything with no errors.  Now when I go to the dashboard I'm getting the following errors. 
    Alerts subtab is missing - Title
    Cannot find the Health Monitoring add-in.  Please verify and make sure that the add-in is correctly installed.
    I tried uninstalling and re-installing Essentials a couple of times but with no luck. 
    Is there a way to repair this problem without wiping everything and starting over?
    James Glenn

    Below is what I found in the logs that seemed pertinent.   
    Those Dlls are there.  I'm wondering if its a security issue?
    [10344] 150206.045938.2075: PluginManager: ---- These warnings could be benign if the addin file is not pointing to an adorner. ----
    [10344] 150206.045938.2075: PluginManager: Unable to load type Microsoft.WindowsServerSolutions.Console.AddIns.Computers.ComputersPage, ComputersUIAddin from C:\Windows\system32\Essentials\. It cannot be assigned to the requested type Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners.PageContentAdorner
    [10344] 150206.045938.2075: PluginManager: Unable to obtain plugin type information for type Microsoft.WindowsServerSolutions.Console.AddIns.Computers.ComputersPage, ComputersUIAddin
    [10344] 150206.045938.2085: PluginManager: Invalid plugin file: C:\Program Files\Windows Server\Bin\Addins\Computers\computers.addin
    [10344] 150206.045938.2095: PluginManager: Unable to retrieve digital certificate for C:\Windows\system32\Essentials\GroupPolicyComputersTabExtender.dll: Cannot find the requested object.
    [10344] 150206.045938.2105: PluginManager: ---- These warnings could be benign if the addin file is not pointing to an adorner. ----
    [10344] 150206.045938.2105: PluginManager: Unable to load type Microsoft.WindowsServerSolutions.MailService.Addin.MobileDevice.MobileDeviceListPage, MobileDevicesAddin from C:\Windows\system32\Essentials\. It cannot be assigned to the requested type Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners.PageContentAdorner
    [10344] 150206.045938.2185: PluginManager: Unable to obtain plugin type information for type Microsoft.WindowsServerSolutions.MailService.Addin.MobileDevice.MobileDeviceListPage, MobileDevicesAddin
    [10344] 150206.045938.2185: PluginManager: Invalid plugin file: C:\Program Files\Windows Server\Bin\Addins\Computers\mobiledevices.addin
    [10344] 150206.045938.2575: GroupPolicy: CreateColumns entered
    [10344] 150206.045938.2575: GroupPolicy: CreateColumns adding column
    [10344] 150206.045938.2575: GroupPolicy: CreateColumns end
    [10344] 150206.045938.2715: Dashboard.Forms: List view created
    [10344] 150206.045938.2815: Dashboard.Forms: Details pane created
    [10344] 150206.045938.3305: Dashboard.Forms: Creating TabPage for node D730AA04-07B1-4b9c-9DED-CCB0A723A8EB with display name "STORAGE" for TabControl
    [10344] 150206.045938.3475: PluginManager: Unable to retrieve digital certificate for C:\Windows\system32\Essentials\Microsoft.WindowsServerSolutions.Console.AddIns.Folders.dll: Cannot find the requested object.
    [10344] 150206.045938.3525: PluginManager: Unable to retrieve digital certificate for C:\Windows\system32\Essentials\Microsoft.WindowsServerSolutions.Console.AddIns.Drives.dll: Cannot find the requested object.
    [10344] 150206.045938.3645: PluginManager: Unable to retrieve digital certificate for C:\Windows\system32\Essentials\OIMAddin.dll: Cannot find the requested object.
    [10344] 150206.045938.3715: PluginManager: Unable to retrieve digital certificate for C:\Windows\system32\Essentials\Microsoft.WindowsServerSolutions.Console.AddIns.Folders.dll: Cannot find the requested object.
    [10344] 150206.045938.3755: PluginManager: Unable to retrieve digital certificate for C:\Windows\system32\Essentials\Microsoft.WindowsServerSolutions.Console.AddIns.Drives.dll: Cannot find the requested object.
    [10344] 150206.045938.3855: PluginManager: Unable to retrieve digital certificate for C:\Windows\system32\Essentials\OIMAddin.dll: Cannot find the requested object.
    [10344] 150206.045938.4675: StorageOM: StorageBacked created successfully.
    [10344] 150206.045938.4675: StorageOM: Set connection identifier to 1
    [15084] 150206.045938.4795: StorageOM: Getting storage data from server
    [10344] 150206.045938.5025: PluginManager: ---- These warnings could be benign if the addin file is not pointing to an adorner. ----
    [10344] 150206.045938.5025: PluginManager: Unable to load type Microsoft.WindowsServerSolutions.Console.AddIns.Folders.FoldersPage, Microsoft.WindowsServerSolutions.Console.AddIns.Folders from C:\Windows\system32\Essentials\. It cannot be assigned to the requested
    type Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners.PageContentAdorner
    [10344] 150206.045938.5025: PluginManager: Unable to obtain plugin type information for type Microsoft.WindowsServerSolutions.Console.AddIns.Folders.FoldersPage, Microsoft.WindowsServerSolutions.Console.AddIns.Folders
    [10344] 150206.045938.5025: PluginManager: Invalid plugin file: C:\Program Files\Windows Server\Bin\Addins\Storage\serverfolders.addin
    [10344] 150206.045938.5035: PluginManager: ---- These warnings could be benign if the addin file is not pointing to an adorner. ----
    [10344] 150206.045938.5035: PluginManager: Unable to load type Microsoft.WindowsServerSolutions.Console.AddIns.Drives.DrivesPage, Microsoft.WindowsServerSolutions.Console.AddIns.Drives from C:\Windows\system32\Essentials\. It cannot be assigned to the requested
    type Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners.PageContentAdorner
    [10344] 150206.045938.5035: PluginManager: Unable to obtain plugin type information for type Microsoft.WindowsServerSolutions.Console.AddIns.Drives.DrivesPage, Microsoft.WindowsServerSolutions.Console.AddIns.Drives
    [10344] 150206.045938.5035: PluginManager: Invalid plugin file: C:\Program Files\Windows Server\Bin\Addins\Storage\serverharddrives.addin
    [10344] 150206.045938.5045: PluginManager: ---- These warnings could be benign if the addin file is not pointing to an adorner. ----
    [10344] 150206.045938.5045: PluginManager: Unable to load type Microsoft.WindowsServerSolutions.O365Integration.DashboardTabs.SharePointLibraryTabPage, OIMAddin from C:\Windows\system32\Essentials\. It cannot be assigned to the requested type Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners.PageContentAdorner
    [10344] 150206.045938.5045: PluginManager: Unable to obtain plugin type information for type Microsoft.WindowsServerSolutions.O365Integration.DashboardTabs.SharePointLibraryTabPage, OIMAddin
    [10344] 150206.045938.5045: PluginManager: Invalid plugin file: C:\Program Files\Windows Server\Bin\Addins\Storage\SharePointLibraryTabPage.addin
    [10344] 150206.045938.5055: PluginManager: ---- These warnings could be benign if the addin file is not pointing to an adorner. ----
    [10344] 150206.045938.5055: PluginManager: Unable to load type Microsoft.WindowsServerSolutions.Console.AddIns.Folders.FoldersPage, Microsoft.WindowsServerSolutions.Console.AddIns.Folders from C:\Windows\system32\Essentials\. It cannot be assigned to the requested
    type Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners.PageContentAdorner
    [10344] 150206.045938.5055: PluginManager: Unable to obtain plugin type information for type Microsoft.WindowsServerSolutions.Console.AddIns.Folders.FoldersPage, Microsoft.WindowsServerSolutions.Console.AddIns.Folders
    [10344] 150206.045938.5055: PluginManager: Invalid plugin file: C:\Program Files\Windows Server\Bin\Addins\Storage\serverfolders.addin
    [10344] 150206.045938.5065: PluginManager: ---- These warnings could be benign if the addin file is not pointing to an adorner. ----
    [10344] 150206.045938.5065: PluginManager: Unable to load type Microsoft.WindowsServerSolutions.Console.AddIns.Drives.DrivesPage, Microsoft.WindowsServerSolutions.Console.AddIns.Drives from C:\Windows\system32\Essentials\. It cannot be assigned to the requested
    type Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners.PageContentAdorner
    [10344] 150206.045938.5065: PluginManager: Unable to obtain plugin type information for type Microsoft.WindowsServerSolutions.Console.AddIns.Drives.DrivesPage, Microsoft.WindowsServerSolutions.Console.AddIns.Drives
    [10344] 150206.045938.5065: PluginManager: Invalid plugin file: C:\Program Files\Windows Server\Bin\Addins\Storage\serverharddrives.addin
    [10344] 150206.045938.5075: PluginManager: ---- These warnings could be benign if the addin file is not pointing to an adorner. ----
    [10344] 150206.045938.5075: PluginManager: Unable to load type Microsoft.WindowsServerSolutions.O365Integration.DashboardTabs.SharePointLibraryTabPage, OIMAddin from C:\Windows\system32\Essentials\. It cannot be assigned to the requested type Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners.PageContentAdorner
    [10344] 150206.045938.5075: PluginManager: Unable to obtain plugin type information for type Microsoft.WindowsServerSolutions.O365Integration.DashboardTabs.SharePointLibraryTabPage, OIMAddin
    [10344] 150206.045938.5075: PluginManager: Invalid plugin file: C:\Program Files\Windows Server\Bin\Addins\Storage\SharePointLibraryTabPage.addin
    [10344] 150206.045938.5375: Dashboard.Forms: List view created
    [10344] 150206.045938.5475: Dashboard.Forms: Details pane created
    [10344] 150206.045938.6575: StorageOM: StorageBacked created successfully.
    [10344] 150206.045938.6575: StorageOM: Set connection identifier to 1
    [10344] 150206.045938.6675: DeploymentCommon: Failed to open deployment registry: StorageSpacesHidden
    [10344] 150206.045938.6675: Exception: 
    An exception of type 'Type: System.IO.IOException, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' has occurred.
    Timestamp: 02/06/2015 04:59:38
    Message: The specified registry key does not exist.
    Stack:    at Microsoft.Win32.RegistryKey.Win32Error(Int32 errorCode, String str)
      at Microsoft.Win32.RegistryKey.GetValueKind(String name)
      at Microsoft.WindowsServerSolutions.Common.DeploymentCommon.GetBooleanDeploymentData(String name, Boolean defaultValue)
    [15084] 150206.045938.6735: StorageOM: Getting storage data from server
    [10344] 150206.045938.6875: Dashboard.Forms: List view created
    [10344] 150206.045938.6975: Dashboard.Forms: Details pane created
    [10344] 150206.045938.7605: Dashboard.Forms: Creating TabPage for node AE5C17D3-0404-4d55-B638-CD22AB727070 with display name "APPLICATIONS" for TabControl
    [10344] 150206.045938.7785: PluginManager: Unable to retrieve digital certificate for C:\Windows\system32\Essentials\AddinAlerts.dll: Cannot find the requested object.
    [10344] 150206.045938.7825: PluginManager: Unable to retrieve digital certificate for C:\Windows\system32\Essentials\PinPointAddin.dll: Cannot find the requested object.
    [10344] 150206.045938.8845: PluginManager: Unable to retrieve digital certificate for C:\Windows\system32\Essentials\AddinAlerts.dll: Cannot find the requested object.
    [10344] 150206.045938.8855: PluginManager: Unable to retrieve digital certificate for C:\Windows\system32\Essentials\PinPointAddin.dll: Cannot find the requested object.
    [10344] 150206.045939.0305: Dashboard.Forms: List view created
    [10344] 150206.045939.0335: Dashboard.Forms: No IDetailContent was given; no need to create details pane
    [10344] 150206.045939.4216: Dashboard.Forms: Creating TabPage for node 3ebe6ef4-03bb-4b7c-bf5a-9f2b4890e619 with display name "OFFICE 365" for TabControl
    [10344] 150206.045939.4596: Dashboard.Forms: TabControl created. Name: PrimaryTabs, Tab count: 5
    [10344] 150206.045939.6106: Dashboard.Forms: Page selected: ffc2b311-08ca-4200-9719-bf0119740eba
    [10344] 150206.045939.9996: IDENTITY: ReloadUsersOnce
    [25400] 150206.045941.1807: PfBinding: Information: [0] : Adding service dns identity [EDGE-ES] in proxy endpoint.
    [25400] 150206.045941.2327: OPEUserListProviderAdorner: OPE is not enabled. no need to refresh.
    [5764] 150206.045946.6732: AlertFramework: Subcomponent: Helper > Timeout value is invalid, using default service start timeout
    [22312] 150206.045947.6803: OPEUserListProviderAdorner: OPE is not enabled. no need to refresh.
    [10344] 150206.045947.8243: StorageOM: folder is not in correct state, so could not open False Healthy
    [10344] 150206.045947.8273: StorageOM: folder is not in correct state, so could not open False Healthy
    [10344] 150206.045947.8603: DeploymentCommon: Failed to open deployment registry: ServerBackupDisabled
    [10344] 150206.045947.8603: Exception: 
    An exception of type 'Type: System.IO.IOException, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' has occurred.
    Timestamp: 02/06/2015 04:59:47
    Message: The specified registry key does not exist.
    Stack:    at Microsoft.Win32.RegistryKey.Win32Error(Int32 errorCode, String str)
      at Microsoft.Win32.RegistryKey.GetValueKind(String name)
      at Microsoft.WindowsServerSolutions.Common.DeploymentCommon.GetBooleanDeploymentData(String name, Boolean defaultValue)
    James Glenn

  • Configure Oracle Access Manager - from weblogic OIF instance page bombs out

    I am trying to integrate OIF with Oracle Access Manager as SP integration module. But, when clicked on "Configure Oracle Access Manager" it throws the following error:
    Oracle Access Manager cannot be configured properly. Make sure the Oracle Access Manager SDK Server has been configured properly and the required environment variables have been set. Details can be found on Online Help and Administrative Guide.
    I have updated the environment variables and classpath, also confirmed the Access Server SDK to work properly by testing java JAccessGate.
    any help is greatly appreciated.
    The diagnostic logs show these errors:
    ========================
    Login of admin identity cn=usca_iam_admin failed. Please check to make sure the admin user ID is valid.
    at com.oblix.accessmgr.ObAccessManager.sendRequest(ObAccessManager.java:163)
    at com.oblix.accessmgr.ObAccessManager.setAdmin(ObAccessManager.java:195)
    at oracle.security.fed.admin.config.mbeans.OAMConfigUtils.configureOAM(Unknown Source)
    at oracle.security.fed.admin.config.mbeans.AdminUtilMXBeanImpl.configureOAM(Unknown Source)
    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:597)
    at oracle.as.jmx.framework.standardmbeans.spi.OracleStandardEmitterMBean.doInvoke(OracleStandardEmitterMBean.java:889)
    at oracle.as.jmx.framework.generic.spi.interceptors.ContextClassLoaderMBeanInterceptor.internalInvoke(ContextClassLoaderMBeanInterceptor.java:94)
    at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doInvoke(AbstractMBeanInterceptor.java:245)
    at oracle.as.jmx.framework.generic.spi.interceptors.MBeanRestartInterceptor.internalInvoke(MBeanRestartInterceptor.java:116)
    at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doInvoke(AbstractMBeanInterceptor.java:245)
    at oracle.as.jmx.framework.generic.spi.security.AbstractMBeanSecurityInterceptor.internalInvoke(AbstractMBeanSecurityInterceptor.java:174)
    at oracle.as.jmx.framework.generic.spi.interceptors.AbstractMBeanInterceptor.doInvoke(AbstractMBeanInterceptor.java:245)
    at oracle.as.jmx.framework.standardmbeans.spi.OracleStandardEmitterMBean.invoke(OracleStandardEmitterMBean.java:803)
    at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:836)
    at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:761)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:449)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:447)
    at weblogic.management.mbeanservers.internal.JMXContextInterceptor.invoke(JMXContextInterceptor.java:268)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase$16.run(WLSMBeanServerInterceptorBase.java:449)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServerInterceptorBase.invoke(WLSMBeanServerInterceptorBase.java:447)
    at weblogic.management.mbeanservers.internal.SecurityInterceptor.invoke(SecurityInterceptor.java:444)
    at weblogic.management.jmx.mbeanserver.WLSMBeanServer.invoke(WLSMBeanServer.java:323)
    at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$11$1.run(JMXConnectorSubjectForwarder.java:663)
    at java.security.AccessController.doPrivileged(Native Method)
    at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder$11.run(JMXConnectorSubjectForwarder.java:661)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.management.mbeanservers.internal.JMXConnectorSubjectForwarder.invoke(JMXConnectorSubjectForwarder.java:654)
    at javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1426)
    at javax.management.remote.rmi.RMIConnectionImpl.access$200(RMIConnectionImpl.java:72)
    at javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1264)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1366)
    at javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:788)
    at javax.management.remote.rmi.RMIConnectionImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:589)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:477)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:473)
    at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    My Oracle Access Manager is 10.1.4.3 and OIF is 11.1.1.3
    thanks

    Hello,
    I'm having the same problem. Did anybody find a solution to fix it?
    Any help is appreciated.
    Regards,
    Ignacio.

  • Could not load file or assembly 'Oracle.DataAccess, Version=2.102.2.20, Culture=neutral, PublicKeyToken=89b483f429c47342' or one of its dependencies. The system cannot find the file specified

    Server Error in '/' Application.
    Configuration Error 
    Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. 
    Parser Error Message: Could not load file or assembly 'Oracle.DataAccess, Version=2.102.2.20, Culture=neutral, PublicKeyToken=89b483f429c47342' or one of its dependencies. The system cannot find the file specified.
    Source Error: 
    Line 31: <compilation debug="true">
    Line 32: <assemblies>
    Line 33: <add assembly="Oracle.DataAccess, Version=2.102.2.20, Culture=neutral, PublicKeyToken=89B483F429C47342" />
    Line 34: <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
    Line 35: <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
    Source File: D:\AverySignatureBinders\httpsdocs\ASBNet\web.config    Line: 33 
    Assembly Load Trace: The following information can be helpful to determine why the assembly 'Oracle.DataAccess, Version=2.102.2.20, Culture=neutral, PublicKeyToken=89b483f429c47342' could not be loaded.
    WRN: Assembly binding logging is turned OFF.
    To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
    Note: There is some performance penalty associated with assembly bind failure logging.
    To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

    For Adapter Pack 2013 the following Oracle Client(s) are needed:
    Supported client versions: Oracle Data Access Components for Oracle Client 12.1, Oracle Data Access Components for Oracle Client 11.2.0.1
    And please bear in mind that both the 32- and 64 bit versions are needed.
    Morten la Cour

  • JboException: JBO-33001: Cannot find the configuration file /common/bc4j.xc

    Hello,
    i'm new on this board and found it while i was searching for an solution of my problem.
    I would like to apologize about my english, i try my best.
    Now lets come to my problem.
    I have 1 workspace with 2 projects.
    in project 1 there are entity objects, view objects and an application object.
    in project 2 there are jsp's action classes and form beans (i try to use Struts).
    in one jsp i try this:
    <jbo:ApplicationModule id="am" configname="*.*.*.bc4j.ReportingModule" releasemode="Stateful" />
    <jbo: DataSource id="ds" appid="am" viewobject="*.*.*.bc4j.HilfeTexteView" />
    <select name="TEXT" size="1">
    <option value="-1" selected>sonstiges</option>
    <jbo:RowsetIterate datasource="ds" changecurrentrow="true">
    <option value="<jbo:ShowValue datasource="ds" dataitem="TEXT"></jbo:ShowValue>">
    <jbo:ShowValue datasource="ds" dataitem="AUTOR"></jbo:ShowValue>
    </option>
    </jbo:RowsetIterate>
    </select>
    <jbo:ReleasePageResources releasemode="Stateful" appid="am" />
    compilation finish successful, but when i try to run this jsp, there appear an error like:
    oracle.jbo.JboException: JBO-33001: Cannot find the configuration file /common/bc4j.xcfg in the classpath
    i think it dont work, because the configuration file bc4j.xcfg is in project 1 folder and i try to take it out of projeck 2 folder
    I hope you know what i try to tell you
    i will be very happy, when somebody could help me.
    greetings
    Rene

    Please refer to other posts for the JboException.
    JBO-33001: Cannot find the configuration file /model/common/bc4j.xcfg
    Accessing BC4J ApplicationModule from another Project

  • Oracle.as.provisioning.exception: The system cannot find the path specified

    Installing 11g middleware on Win2003 server. During Application Configuration portion the install fails in the Deploying Enterprise Manager step. Error log shows 'oracle.as.provisioning.exception.ASProvWorkflowException: The system cannot find the path specified'. I've pointed the environment variables to a temp directory that does not have spaces in the name (c:\TEMP) and placed the installation files in directories that do not have spaces. I can't tell what directory it can not find. Any ideas?
    Adding Templates.
    DEBUG : Checking if Templates are Already Applied.
    DEBUG : Checking Template : C:/bea/oracle_common/common/templates/applications/oracle.em_11_1_1_0_0_template.jar
    DEBUG : domain-info.xml location : C:/bea/user_projects/domains/ClassicDomain/init-info/domain-info.xml
    DEBUG : Reading Template to be applied : C:/bea/oracle_common/common/templates/applications/oracle.em_11_1_1_0_0_template.jar
    DEBUG : Name of the template : Oracle Enterprise Manager
    DEBUG : Version of the template : 11.1.1.0
    DEBUG : Reading domain-info.xml. Checking templates already applied.
    C:/bea/oracle_common/common/templates/applications/oracle.em_11_1_1_0_0_template.jar
    oracle.as.provisioning.exception.ASProvWorkflowException: The system cannot find the path specified.
    The system cannot find the path specified.
         at oracle.as.provisioning.weblogic.ASDomain._addTemplate(ASDomain.java:4176)
         at oracle.as.provisioning.weblogic.ASDomain.addTemplate(ASDomain.java:3973)
         at oracle.as.provisioning.engine.WorkFlowExecutor._addTemplates(WorkFlowExecutor.java:1398)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:475)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:619)
    oracle.as.provisioning.exception.ASProvisioningException
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:872)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.as.provisioning.exception.ASProvWorkflowException: The system cannot find the path specified.
    The system cannot find the path specified.
         at oracle.as.provisioning.weblogic.ASDomain._addTemplate(ASDomain.java:4176)
         at oracle.as.provisioning.weblogic.ASDomain.addTemplate(ASDomain.java:3973)
         at oracle.as.provisioning.engine.WorkFlowExecutor._addTemplates(WorkFlowExecutor.java:1398)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:475)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         ... 13 more
    progress in calculate progress3
    progress in calculate progress3

    I unistalled everything and started over and eliminated Enterprise Manager from the list. Now it cancels at the Application Configuration step in Applying Oracle JRF Template with the same error. Cannot find path specified.
    Does anyone have any idea what path it could be looking for? I can't tell where else to look.
    Extending Domainwith JRF
    oracle.as.provisioning.exception.ASProvisioningException
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:872)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.JRFApplicationTask.execute(JRFApplicationTask.java:78)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.as.provisioning.exception.ASProvWorkflowException: The system cannot find the path specified.
    The system cannot find the path specified.
         at oracle.as.provisioning.weblogic.ASDomain._extendDomainWithJRFTemplate(ASDomain.java:3955)
         at oracle.as.provisioning.weblogic.ASDomain.extendDomainWithJRFTemplate(ASDomain.java:3762)
         at oracle.as.provisioning.engine.WorkFlowExecutor._extendDomainWithJRF(WorkFlowExecutor.java:1413)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:437)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         ... 14 more
    progress in calculate progress4
    progress in calculate progress4

  • Jdev 10.1.2  JBO-33001: Cannot find the configuration file bc4j.xcfg in cla

    Hi all,
    i have a ear application containing a web app and a bc4j module deployed on the embedded oc4j instance inside JDeveloper 10.1.2 (build 1929). Inside the model i have a topic durable subscriber that, when a message is sent, invoke, by reflection, a java class to perform the job. Inside the java class i need an Application Module so i write
    ApplicationModule am = Configuration.createRootApplicationModule(fullClassName, configuration);
    but i get the error in the subject.
    Here is a piece of the stack trace
    oracle.jbo.JboException: JBO-33001: Cannot find the configuration file /it/despa
    r/orderplatform/model/services/common/bc4j.xcfg in the classpath
    at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:
    358)
    at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:281)
    at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:482)
    at oracle.jbo.common.ampool.ContextPoolManager.findPool(ContextPoolManag
    er.java:165)
    at oracle.jbo.client.Configuration.createRootApplicationModule(Configura
    tion.java:1457)
    at oracle.jbo.client.Configuration.createRootApplicationModule(Configura
    tion.java:1435)
    at it.despar.orderplatform.task.GenericTask.getApplicationModule(Generic
    Task.java:40)
    at it.despar.orderplatform.task.trasmission.ValidateTrasmissionTask.<ini
    t>(ValidateTrasmissionTask.java:38)
    at it.despar.orderplatform.jms.utils.TaskInvoker.invoke(TaskInvoker.java
    :27)
    at it.despar.orderplatform.jms.listener.TextListener.onMessage(TextListe
    ner.java:60)
    at com.seebeyond.jms.client.STCMessageConsumer.onMessage(STCMessageConsu
    mer.java:529)
    at com.seebeyond.jms.client.STCSession.onMessage(STCSession.java:259)
    at com.seebeyond.jms.sockets.ConsumerSocket.deliverMessage(ConsumerSocke
    t.java:346)
    at com.seebeyond.jms.sockets.ThreadPerConnectionMgr$ConnThread.run(Threa
    dPerConnectionMgr.java:230)
    If i invoke the java class (the task) by command line inside jdev all works fine.
    I've read all the stuff about this exception but they do not apply to mi problem (I run the adf runtime installer, i try with an oc4j extended and standalone....)
    Please help us. Thanks
    Any ideas?
    Suggestion?

    This program is an example of basically what ADFBC will be trying to do to open/parse the bc4j.xcfg file. Can you incorporate the same lines into your test program to see if it also behaves the same in your JMS-initiated Java class ?
    Of course, you'll need to substitute "sample/common/bc4j.xcfg" with your relevant path name.
    package sample;
    import java.io.IOException;
    import oracle.xml.parser.v2.DOMParser;
    import oracle.xml.parser.v2.XMLDocument;
    import oracle.xml.parser.v2.XMLParseException;
    import org.xml.sax.SAXException;
    public class Class1 {
      public static void main(String[] args) throws XMLParseException,
                                                      SAXException, IOException {
        DOMParser d = new DOMParser();
       d.parse(Thread.currentThread().getContextClassLoader().getResource("sample/common/bc4j.xcfg"));
        XMLDocument doc = d.getDocument();
        doc.print(System.out);
    }

  • Cannot find the configuration file in classpath

    Cannot find the configuration file /oracle/apps/prc/po/....applicationModule/common/bc4j.xcfg in the classpath.
    Hi!
    I'm trying to run the following code:
    String appModule = "oracle.apps.prc.po.manageDocument.uiModel.viewDocument.applicationModule.ViewPurchasingDocumentApplicationModule";
    String cfg = "ViewPurchasingDocumentApplicationModuleLocal";
    ApplicationModule applicationModule = (ApplicationModule)Configuration.createRootApplicationModule(appModule, cfg);
    I get this error message:
    Exception in thread "main" oracle.jbo.ConfigException: JBO-33001: Cannot find the configuration file /oracle/apps/prc/po/manageDocument/uiModel/viewDocument/applicationModule/common/bc4j.xcfg in the classpath
         at oracle.jbo.client.Configuration.loadFromClassPath(Configuration.java:430)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:293)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:557)
         at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1334)
         at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1312)
         at oracle.apps.prc.po.manageDocument.model.viewPdf.generateXml.getXMLData(generateXml.java:26)
         at oracle.apps.prc.po.manageDocument.model.viewPdf.generateXml.main(generateXml.java:39)
    I have checked and the config file does exist in the correct directory, and I can see it in my Application Module - Configurations. Any idea why this is happening? Am I supposed to configure something specifically for this or add it in my classpath? If so, how am I supposed to do it?
    Thanks
    Mansi
    Edited by: Mansi G on Oct 6, 2008 11:56 AM

    Where is the code you posted? Running in a separate project, I assume? Does that project have a dependency on the project containing the app module specified?
    And just to check (although by default, JDev should do this for you)--the app module project has been compiled since adding the configuration, right? You need to check to make sure the config exists not only under Project/src, but under Project/classes.
    Edited by: Avrom Roy-Faderman on Oct 6, 2008 2:02 PM
    Oh, and BTW--I assume this is not a typical ADF application, right? In a standard ADF application, you would very rarely need to instantiate an application module in code like this; you could just let the data binding facility do it for you. The technique like the one you're using is most appropriate for purely programmatic, no-UI cases. (e.g., once I tried to implement an SMTP server backed by business components. That was an appropriate case for ditching databindings and doing the sort of thing you're doing, because it had no view layer (because it had no UI to render).

  • Error: Cannot find the assembly Oracle.DataAccess

    Hi, I've this problem when any program use a connection with Oracle provider over any server (2 distinct server access to Oracle 9i with forms applications).
    The specific error is:
    Cannot find the assembly Oracle.DataAccess, Version=1.102.2.20, Culture=neutral, PublicKeyToken=89b483f429c47342.
    This problem is resolve (temporary) executing:
    Alter Procedure <<Any procedure valid name>> compile
    But this is not an elegant solution.
    Please, ODP save something else in memory than executing this sentence clear an resolve this situation ??
    Exists any solution for this problem ??
    Thank for advance..
    Claudio

    This sounds odd - I don't see how compiling an Oracle procedure would help .NET to locate an assembly - you're not trying to run an assembly inside Oracle are you?
    Tell is more about what you're trying to do. If this is just a common program that is running on a server and trying to connect to Oracle, it sounds like ODP is not installed on the computer that is running this code. You should see Oracle.DataAccess in the GAC.
    Eric

Maybe you are looking for

  • Moving user files from one server to another.

    Hi everyone I would need your help to help me migrate the user files of around 300 persons to a new server. Is there a tool that could help me doing that? Here is the situation: I have an old 2003 server with all the user accounts. We are using the s

  • Currency Decimal Points - Urgent

    Hi, I am facing a serious problem with currency decimal points. Unfortunately "Currency code" has been deleted from where we can maintain currency decimal points in OY04 Tcode and the currency code was maintained by zero decimal places. Before deleti

  • Delete request  in ODS  or  Change request status

    Hi Experts!. I have been trying to delete a request from ODS,  and this have been Impossible. Originally Data was in ODS and in Cube. I deleted the data from the cube without problems. To delete the request from the ODS I turned the check status to r

  • SSL connectivity - Weblogic 8.1 and Apache web server 2.0

    I'm using a Apache web server 2.0.64 as a front end web server for Weblogic server v8.1 sp6. I have managed setup the connection between both server and now i want to configure the SSL connection Apache web server. However i have face some problems w

  • Adobe Air on WinPE (2.1)

    Has anyone ported Adobe Air to work under the WinPE (2.1) environment (using Microsofts AIK)? It seems like it should be possible since, WinPE is simply a stripped down version of Windows. I've tried copying the Air framework files and associated reg