Oracle Com Suit under W2k or WNT 4.0

Any suggestions about using Microsoft Windows 2000 or Windows NT 4.0 as a plataform for Oracle 8i Server and client?
Some sites said that Oracle8i relase 2 is aproved for working under W2k. It's this true.

Hi Farbod,
I think there may be some confusion as the names are quite similar.
Oracle Identity Management is a Suite of products for managing identities over the enterprise. This includes products such as the OID server. It also includes Oracle Identity Manager (OIM) which is a product. The latest version of the "Suite" is 10.1.4.x (Not exactly sure of version)
Oracle Identity Manager is an identity and access provisioning engine. It was formerly known as Xellerate.
The key is: Oracle Identity Manager is not the same as Oracle Identity Management. Oracle Identity Management suite of products includes Oracle Identity Manager.
Clear as mud? :)
Charles
Message was edited by:
Charles Poulsen

Similar Messages

  • Installing oracle developer suite under a different oracle home than the DB

    I have Oracle 10g r2 installed on a RHAS4 server.
    I installed Oracle developer suite 10.1 on this server. In the installation procedures, there are specific instructions to not install it under the ORACLE_HOME for an existing database installation.
    Oracle was already installed under /usr/lib/oracle (don't ask me why, I didn't do it).
    I installed oracle developer suite under /oracle/dev. If I set ORACLE_HOME to /usr/lib/oracle, proc responds with:
    Symbol `kpccapCTarr' has different size in shared object, consider re-linking
    PCC-F-NOERRFILE, unable to open error message file, facility PR2
    If I set ORACLE_HOME to /oracle/dev, it works correctly.
    This appears to require me to switch my oracle home setting each time I switch between using Pro*C and sqlplus. This in very inconvenient. I have worked on many, many systems in the past which had one ORACLE_HOME for both the RDBMS and the development tools.
    Is this a new constraint introduced by Oracle? Where does this restriction come from?
    Is there something I don't understand and have I installed the developer suite incorrectly?

    your 10.2 server uses obviously some different client libraries than your 10,1 developer version.
    You may check this with ldd proc and ldd sqlplus.
    Perhaps you can live with a wrapper script for starting sqlplus or proc meanwhile ?

  • Oracle developer suite installed under a different Oracle Home

    I have Oracle 10g r2 installed on a RHAS4 server.
    I installed Oracle developer suite 10.1 on this server. In the installation procedures, there are specific instructions to not install it under the ORACLE_HOME for an existing database installation.
    Oracle was already installed under /usr/lib/oracle (don't ask me why, I didn't do it).
    I installed oracle developer suite under /oracle/dev. If I set ORACLE_HOME to /usr/lib/oracle, proc responds with:
    Symbol `kpccapCTarr' has different size in shared object, consider re-linking
    PCC-F-NOERRFILE, unable to open error message file, facility PR2
    If I set ORACLE_HOME to /oracle/dev, it works correctly.
    This appears to require me to switch my oracle home setting each time I switch between using Pro*C and sqlplus. This in very inconvenient. I have worked on many, many systems in the past which had one ORACLE_HOME for both the RDBMS and the development tools.
    Is this a new constraint introduced by Oracle? Where does this restriction come from?
    Is there something I don't understand and have I installed the developer suite incorrectly?

    It looks to me this is a mess; i have installed oracle 10g on rhas4 and it didn't install under that folder. I'd suggest to run oui/run installer and show what are the oracle_homes found there; maybe you should reinstall it in the proper locations, under different accounts, etc.

  • Oracle 8.1.7 copy db to another SID under W2K

    Hello ! I've got problem connected with copy Oracle 8.1.7 db under W2K (but I know that problem does not concern with Unix). So step by step:
    on the source db I back up controlfile to trace resetlogs and switching logfile, after that I copy - then I receive file, which after changes, creates controlfile for new db (configuration,structure, enviroment is the same for source db as the target db). Finally, after log on to the new db and open resetlogs I've got information that db is incosistent - I've done lots of times the same things with Oracle 8.0.6 and there wasn't any problems.
    Thank You for any help. Bye !

    dbassist is not working as we write dbassist on $ prompt following message is shown 'DISPLAY NOT SET' SET DISPLAY ENVIORNMENT VARIABLE
    HOW TO SET IT ANDMAKE DBASSIST WORKABLE

  • Facing Issue With Oracle SOA Suite 11.1.1.3.0

    Hi All,
    I am facing some issues with ORACLE SOA SUITE 11.1.1.3.0.
    Hope you people can help us out.
    Please find the issue details below along with all the relevant information’s
    I have following SOA suite installation at my server:
    Oracle 10g Express Edition Universal 10.2.0.1
    RCU 11.1.1.3.3
    Web Logic Server 10.3.3.0
    SOA suite 11.1.1.3.0
    JDeveloper 11.1.1.3.0
    The first thing what I have done is created a web service and deployed it to server without any issue.
    After that I created proxy client for that service and accessed it successfully from the client end.
    Till here no issue occurs.
    After that I applied few policies on top of web service and deployed it to server.
    The policy I had chosen was “oracle/wss_username_token_service_policy” [coming under OWSM policies list]
    While deploying there was no issue, all went well.
    2nd step I had created client using “oracle/wss_username_token_client_policy” policy which is counter part of above policy and tried to access the web service but failed.
    I have followed this blog:
    [http://biemond.blogspot.com/2010/08/things-you-need-to-do-for-owsm-11g.html ]
    Please have a look on service and client code:
    Service Code:
    package Demo_ScoreCard;
    import javax.jws.WebService;
    import weblogic.wsee.jws.jaxws.owsm.SecurityPolicy;
    @WebService
    @SecurityPolicy(uri = "oracle/wss_username_token_service_policy")
    public class ScoreCardWithPolicy {
    public double getPercentageWithPolicy(double markEng,double markMath,double markHindi,double markScience,double markSsc)
    double result;
    result= ((markEng+markHindi+markMath+markScience+markSsc)/500)*100;
    return result;
    Client Code:
    package com.tec.proxy.client;
    import java.util.Map;
    import javax.xml.ws.BindingProvider;
    import javax.xml.ws.WebServiceRef;
    import weblogic.wsee.jws.jaxws.owsm.SecurityPolicyFeature;
    public class ScoreCardWithPolicyPortClient {
    @WebServiceRef
    private static ScoreCardWithPolicyService scoreCardWithPolicyService;
    public static void main(String[] args) {
    scoreCardWithPolicyService = new ScoreCardWithPolicyService();
    SecurityPolicyFeature[] securityFeatures =new SecurityPolicyFeature[] { new SecurityPolicyFeature("oracle/wss_http_token_client_policy") };
    ScoreCardWithPolicy scoreCardWithPolicy =scoreCardWithPolicyService.getScoreCardWithPolicyPort(securityFeatures);
    Map<String, Object> reqContext =((BindingProvider)scoreCardWithPolicy).getRequestContext();
    reqContext.put(BindingProvider.USERNAME_PROPERTY, "testclient");
    reqContext.put(BindingProvider.PASSWORD_PROPERTY, "test12345"); // I have added this to the myrealm from console under security realms
    double arg1 = 77.2;
    double arg2 = 79.2;
    double arg3 = 77.2;
    double arg4 = 76.2;
    double arg5 = 67.2;
    double clientResult =scoreCardWithPolicy.getPercentageWithPolicy(arg1, arg2, arg3, arg4,arg5);
    System.out.println("clientResult with policy =====> " + clientResult);
    Error Log:
    SEVERE: WSM-07617 Policy: oracle/wss_http_token_client_policy contains unsupported assertions.
    SEVERE: WSMAgentHook: An Exception is thrown: WSM-07617 Policy Policy: oracle/wss_http_token_client_policy contains unsupported assertions.
    Exception in thread "main" javax.xml.rpc.JAXRPCException: oracle.wsm.common.sdk.WSMException: WSM-07617 Policy Policy: oracle/wss_http_token_client_policy contains unsupported assertions.
    at oracle.wsm.agent.handler.wls.WSMAgentHook.handleException(WSMAgentHook.java:395)
    at oracle.wsm.agent.handler.wls.WSMAgentHook.init(WSMAgentHook.java:206)
    at weblogic.wsee.jaxws.framework.jaxrpc.TubeFactory.newHandler(TubeFactory.java:105)
    at weblogic.wsee.jaxws.framework.jaxrpc.TubeFactory.createClient(TubeFactory.java:68)
    at weblogic.wsee.jaxws.WLSTubelineAssemblerFactory$TubelineAssemblerImpl.createClient(WLSTubelineAssemblerFactory.java:148)
    at com.sun.xml.ws.client.WSServiceDelegate.createPipeline(WSServiceDelegate.java:467)
    at com.sun.xml.ws.client.WSServiceDelegate.getStubHandler(WSServiceDelegate.java:689)
    at com.sun.xml.ws.client.WSServiceDelegate.createEndpointIFBaseProxy(WSServiceDelegate.java:667)
    at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:362)
    at weblogic.wsee.jaxws.spi.WLSProvider$ServiceDelegate.internalGetPort(WLSProvider.java:855)
    at weblogic.wsee.jaxws.spi.WLSProvider$ServiceDelegate$PortClientInstanceFactory.createClientInstance(WLSProvider.java:967)
    at weblogic.wsee.jaxws.spi.ClientInstancePool.takeSimpleClientInstance(ClientInstancePool.java:621)
    at weblogic.wsee.jaxws.spi.ClientInstancePool.take(ClientInstancePool.java:486)
    at weblogic.wsee.jaxws.spi.WLSProvider$ServiceDelegate.getPort(WLSProvider.java:782)
    at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:344)
    at javax.xml.ws.Service.getPort(Service.java:133)
    at com.tec.proxy.client.ScoreCardWithPolicyService.getScoreCardWithPolicyPort(ScoreCardWithPolicyService.java:86)
    at com.tec.proxy.client.ScoreCardWithPolicyPortClient.main(ScoreCardWithPolicyPortClient.java:23)
    Process exited with exit code 1.
    Not getting any help from any blog. Just wondering why this error is coming. I would be glad if you can help us in this regard.
    Apart from above issue I have few queries like:
    1.What is difference between OWSM policies and WLS policies?
    2.Are these the only policies we can apply on top of services?
    3.If some one wants to configure his own custom policies than what need to be done
    4.Could anyone please provide some useful links to implement ENCYPTION and SIGNATURE on top of web services?
    5.And If I am not wrong, I guess Oracle Service BUS OSB 11.1.1.3 has been removed from the main download link and version 11.1.1.4 has been provided. Is it
    compatible with SOA suite 11.1.1.3.0? If not where can I get OSB 11.1.1.3?
    Looking forward to hear from you people.
    Thanks
    Arvind
    Edited by: user8490871 on Apr 15, 2011 12:53 AM
    Edited by: user8490871 on Apr 15, 2011 12:53 AM

    Hi,
    I don't know why u get an error. Here are answers for additional questions:
    1. OWSM policies are for web services. WLS policies are based on Java EE security. They are used to protect resources e.g. URL, EJB
    2. I don't know about other policies
    3. See http://download.oracle.com/docs/cd/E14571_01/web.1111/e13713/owsm_appendix.htm#CHDCHFBH
    4. See http://download.oracle.com/docs/cd/E14571_01/security.1111/e10037/toc.htm
    5. I can see OSB 11.1.1.3 download link here
    http://www.oracle.com/technetwork/middleware/downloads/fmw-11-download-092893.html
    Regards,
    Milan

  • Problem installing oracle developer  Suite 10g on window 7 64 bit

    hi am in window 7 64-bit am trying to install my oracle developer suite am geting this error when installing
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be 5.0, 5.1 or 5.2 . Actual 6.1
    Failed <<<<
    Exiting Oracle Universal Installer, log for this session can be found at C:\User
    s\10017134\AppData\Local\Temp\OraInstall2012-09-21_08-15-55AM\installActions2012
    -09-21_08-15-55AM.log
    Please press Enter to exit...
    i downlload the software from
    http://www.oracle.com/technetwork/developer-tools/developer-suite/downloads/101202winsoft-087370.html
    my pc is window 7 professional service pack 1
    64-bit operating system
    now am geting this error
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be 5.0, 5.1 or 5.2 . Actual 5.1
    Passed
    Checking monitor: must be configured to display at least 256 colors . Actual
    4294967296 Passed
    Checking swap space: 0 MB available, 1535 MB required. Failed <<<<
    Some requirement checks failed. You must fulfill these requirements before
    continuing with the installation, at which time they will be rechecked.
    Continue? (y/n) [n]
    i try to right click mycomputer->advance system setting->system properties->advance->performance->setting->advance->virtual memory->change->virtual memory
    Edited by: ADF007 on 2012/09/21 9:22 AM
    Edited by: ADF007 on 2012/09/21 9:49 AM
    Edited by: ADF007 on 2012/09/24 12:12 PM

    hi my installation fail am geting this error
    Starting to execute configuration assistants
    Launched configuration assistant 'Oracle Net Configuration Assistant'
    Tool type is: Recommended.
    The command being spawned is: 'C:\DevSuite\jdk\jre\\bin/java.exe -Dsun.java2d.noddraw=true -Duser.dir=C:\DevSuite\bin -classpath ";C:\DevSuite\jdk\jre\\lib\rt.jar;C:\DevSuite\jlib\ldapjclnt10.jar;C:\DevSuite\jlib\ewt3.jar;C:\DevSuite\jlib\ewtcompat-3_3_15.jar;C:\DevSuite\network\jlib\NetCA.jar;C:\DevSuite\network\jlib\netcam.jar;C:\DevSuite\jlib\netcfg.jar;C:\DevSuite\jlib\help4.jar;C:\DevSuite\jlib\jewt4.jar;C:\DevSuite\jlib\oracle_ice.jar;C:\DevSuite\jlib\share.jar;C:\DevSuite\jlib\swingall-1_1_1.jar;C:\DevSuite\jdk\jre\\lib\i18n.jar;C:\DevSuite\jlib\srvmhas.jar;C:\DevSuite\jlib\srvm.jar;C:\DevSuite\network\tools" oracle.net.ca.NetCA /orahome C:\DevSuite /orahnam DevSuite /responseFile C:\DevSuite\network\install\netca_asinstall.rsp'
    Start output from spawned process:
    Parsing command line arguments:
    Parameter "orahome" = C:\DevSuite
    Parameter "orahnam" = DevSuite
    Parameter "responsefile" = C:\DevSuite\network\install\netca_asinstall.rsp
    Done parsing command line arguments.
    The OUICA command is launched from C:\DevSuite\oui\bin\ouica.bat.-----------------------------------------------------------------------------
    *** Starting OUICA ***
    Oracle Home set to C:\DevSuite
    Configuration directory is set to C:\DevSuite\cfgtoollogs. All xml files under the directory will be processed
    Error:*** Alert: The assistant you are trying to stop is a "Recommended" assistant. Not successfully running any "Recommended" assistant means your system will not be correctly configured.
    Do you wish to proceed? ***
    User Selected: Cancel
    The OUICA command is launched from C:\DevSuite\oui\bin\ouica.bat.-----------------------------------------------------------------------------
    *** Starting OUICA ***
    Oracle Home set to C:\DevSuite
    Configuration directory is set to C:\DevSuite\cfgtoollogs. All xml files under the directory will be processed
    Error:*** Alert: The assistant you are trying to stop is a "Recommended" assistant. Not successfully running any "Recommended" assistant means your system will not be correctly configured.
    Do you wish to proceed? ***
    User Selected: Yes/OK
    End output from spawned process.
    Configuration assistant "Oracle Net Configuration Assistant" was canceled.
    Result code for launching of configuration assistant is: -1
    Error:*** Alert: Some of the configuration assistants failed. It is strongly recommended that you retry the configuration assistants at this time. Not successfully running any "Recommended" assistants means your system will not be correctly configured. Select the failed assistants and click the 'Retry' button to retry them. ***
    User Selected: Yes/OK
    The following configuration assistants have not been successfully completed. These assistants must be completed for your product to be completely configured.
    Execute file C:\DevSuite\cfgtoollogs/configToolCommands to re-run all skipped/failed configuration assistants.
    echo Oracle Net Configuration Assistant
    C:\DevSuite\jdk\jre\\bin/java.exe -Dsun.java2d.noddraw=true -Duser.dir=C:\DevSuite\bin -classpath ";C:\DevSuite\jdk\jre\\lib\rt.jar;C:\DevSuite\jlib\ldapjclnt10.jar;C:\DevSuite\jlib\ewt3.jar;C:\DevSuite\jlib\ewtcompat-3_3_15.jar;C:\DevSuite\network\jlib\NetCA.jar;C:\DevSuite\network\jlib\netcam.jar;C:\DevSuite\jlib\netcfg.jar;C:\DevSuite\jlib\help4.jar;C:\DevSuite\jlib\jewt4.jar;C:\DevSuite\jlib\oracle_ice.jar;C:\DevSuite\jlib\share.jar;C:\DevSuite\jlib\swingall-1_1_1.jar;C:\DevSuite\jdk\jre\\lib\i18n.jar;C:\DevSuite\jlib\srvmhas.jar;C:\DevSuite\jlib\srvm.jar;C:\DevSuite\network\tools" oracle.net.ca.NetCA /orahome C:\DevSuite /orahnam DevSuite /responseFile C:\DevSuite\network\install\netca_asinstall.rsp
    Error:*** Alert: One or more "Recommended" configuration assistants have not completed successfully. Not successfully running any "Recommended" assistant means your system will not be correctly configured. A list of the assistants that need to be run is generated in the log of this session which is located at:
    C:\Program Files (x86)\Oracle\Inventory\logs\installActions2012-09-21_10-14-35AM.log ***
    Edited by: ADF007 on 2012/09/21 4:52 PM
    Edited by: ADF007 on 2012/09/21 4:52 PM

  • Oracle BPM Suite : Oracle BPM vs Oracle BPEL PM

    Hi All,
    I am new in Oracle BPM and how some experience learning how to use Oracle BPM. Now when reading about the components products inside "Oracle BPM Suite" in detail , I am some what confuse about :
    1) In What situation that we should use "Oracle BPM" rather than "Oracle BPEL PM" ?
    2) In What situation that we should use "Oracle BPEL PM" rather than "Oracle BPM" ?
    I am confuse about these issue since both of the products come together when we order "Oracle BPM Suite" and both of the products can be used for "HUman Workflow Applications" as well
    Could you please help clarify these issues ? Thank you very much in advance.
    Best Regards
    Pearapon S.

    Hi Pearapon,
    You’ve raised a good point.
    Every once in a while, I see an article written by a BPM pundit that attempts to make the case that the BPMN approach (Oracle BPM uses this) is superior to the BPEL approach or vice versa. Here's one example on InfoQ - http://www.infoq.com/articles/bpelbpm. Its title "Why BPEL is not the holy grail for BPM" is very misleading. This is a typical example of an author sitting in either the BPMN or BPEL camp criticizing the other camp's standard. In this article, the author attempts to indict all BPMN to BPEL conversion attempts based on the author's poorly drawn process.
    Although I know that controversy boosts readership of these types of articles, in my opinion it’s not a “vs.”. Both the BPMN and BPEL standards have strengths when used with certain use cases.
    Here’s one scenario where Oracle BPM and Oracle BPEL PM are synergistic. My background is with Oracle BPM, but I’ve used Oracle BPEL PM on a project for the orchestration of composite services. I used Oracle BPM to model the business processes understood by executives, managers, subject matter experts, business analysts and developers. Using the same simple role based activity flow process diagram, everyone understands what the business problem is and how the process will work solve the problem. The Oracle BPM Automatic activities in the process hit Oracle BPEL processes. Here we used the BPEL processes to hit and orchestrate the underlying IT components . We exposed the BPEL processes using the customer’s service bus and we invoked it from the Oracle BPM process’s Automatic activity (Oracle BPM -> OSB -> Oracle BPEL). Alternatively, If the customer had not had a service bus, I could have invoked the BPEL process directly from the Oracle BPM process via a cataloged web service in Oracle BPM.
    Hope this helps,
    Dan

  • Upgrade Oracle Developer Suite 10g (9.0.4) to Release 2 (10.1.2) !

    Hi,
    I'm having some difficulty on upgrade from Oracle Developer Suite 10g (9.0.4) to Release 2 (10.1.2). My application stop to run after upgrade.
    Windows registry names change again, some forms services configuration files too, i'm getting crazy.
    /forms90 doesnt exist anymore, F90...., etc.....
    now names became 'frm' ou 'forms'
    I have to change many customization values and paths inside config files.
    Is there a good receipt for doing the pos-installation tasks for an upgrade ?
    Regards
    Nelson

    And how to set RHEL 3 to allow install Oracle
    Developer Suite 10g (9.0.4.0.0)?Main documentation link:
    http://www.oracle.com/technology/documentation/index.html
    Under Development Tools, click Oracle Developer Suite Release 10g (9.0.4), then View Library (Documentation Library for Windows, Linux, Solaris, and HP-UX). The Tab Getting Started has Install guides.

  • No soa_server1 ???? Oracle SOA Suite 11g config issue on WIN 7 64 bit

    Hello guys.
    Happy new year. Here is the first Oracle SOA Suite 11g issue I met in this new decade:
    While I tried to install Oracle SOA Suite 11g on my new win 7 home Premium, after all installation done, I found there was no "soa_server1" under new created domain(path C:\Oracle\Middleware\user_projects\domains\base_domain\servers) with just Admin server only - i have done similar install/config on win vista 32bit before everything was fine. I found following lines in the log(C:\Oracle\Middleware\logs\wlsconfig_20110102233019.log):
    2011-01-02 23:31:52,986 INFO [Thread-14] com.oracle.cie.domain.script.ScriptExecutor - warn: set obj26 attribute Targets to "AdminServer"
    2011-01-02 23:31:52,986 WARN [Thread-14] com.oracle.cie.domain.script.ScriptExecutor - warn: set obj26 attribute Targets to "AdminServer"
    com.oracle.cie.domain.script.ScriptException: Unable to find attribute Targets
         at com.oracle.cie.domain.script.ScriptExecutor.setAttrValue(ScriptExecutor.java:3589)
         at com.oracle.cie.domain.script.ScriptExecutor.setValue(ScriptExecutor.java:1331)
         at com.oracle.cie.domain.script.jython.ScriptInvocationHandler.set(ScriptInvocationHandler.java:210)
         at com.oracle.cie.domain.script.jython.ScriptInvocationHandler.invoke(ScriptInvocationHandler.java:103)
         at $Proxy12.setTargets(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 com.oracle.cie.domain.script.jython.WLScriptContext.set(WLScriptContext.java:1298)
         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 org.python.core.PyReflectedFunction.__call__(Unknown Source)
         at org.python.core.PyMethod.__call__(Unknown Source)
         at org.python.core.PyObject.__call__(Unknown Source)
         at org.python.core.PyInstance.invoke(Unknown Source)
         at org.python.pycode._pyx61.set$5(<iostream>:45)
         at org.python.pycode._pyx61.call_function(<iostream>)
         at org.python.core.PyTableCode.call(Unknown Source)
         at org.python.core.PyTableCode.call(Unknown Source)
         at org.python.core.PyFunction.__call__(Unknown Source)
         at wls_webservice_fixup_utils$py.verifyWseeWorkManager$11(C:\Oracle\Middleware\user_projects\domains\domain2\wls_webservice_fixup_utils.py:359)
         at wls_webservice_fixup_utils$py.call_function(C:\Oracle\Middleware\user_projects\domains\domain2\wls_webservice_fixup_utils.py)
         at org.python.core.PyTableCode.call(Unknown Source)
         at org.python.core.PyTableCode.call(Unknown Source)
         at org.python.core.PyFunction.__call__(Unknown Source)
         at wls_webservice_fixup_utils$py.doWseeFixup$1(C:\Oracle\Middleware\user_projects\domains\domain2\wls_webservice_fixup_utils.py:18)
         at wls_webservice_fixup_utils$py.call_function(C:\Oracle\Middleware\user_projects\domains\domain2\wls_webservice_fixup_utils.py)
         at org.python.core.PyTableCode.call(Unknown Source)
         at org.python.core.PyTableCode.call(Unknown Source)
         at org.python.core.PyFunction.__call__(Unknown Source)
         at org.python.core.PyObject.invoke(Unknown Source)
         at org.python.pycode._pyx64.f$0(<iostream>:11)
         at org.python.pycode._pyx64.call_function(<iostream>)
         at org.python.core.PyTableCode.call(Unknown Source)
         at org.python.core.PyCode.call(Unknown Source)
         at org.python.core.Py.runCode(Unknown Source)
         at org.python.util.PythonInterpreter.execfile(Unknown Source)
         at org.python.util.PythonInterpreter.execfile(Unknown Source)
         at com.oracle.cie.domain.script.ScriptHelper.executeEmbeddedTemplateScript(ScriptHelper.java:1571)
         at com.oracle.cie.domain.DomainChecker.executeEmbeddedScript(DomainChecker.java:1322)
         at com.oracle.cie.domain.DomainChecker.runCustomWLSTScript(DomainChecker.java:1305)
         at com.oracle.cie.domain.DomainChecker.preprocessOutput(DomainChecker.java:143)
         at com.oracle.cie.domain.DomainGenerator.generate(DomainGenerator.java:269)
         at com.oracle.cie.wizard.domain.gui.tasks.DomainCreationGUITask$1.run(DomainCreationGUITask.java:216)
    2011-01-02 23:31:52,986 INFO [Thread-14] com.oracle.cie.domain.script.ScriptExecutor - set obj26 attribute Target to "AdminServer"
    2011-01-02 23:31:53,002 INFO [Thread-14] com.oracle.cie.domain.script.ScriptExecutor - succeed: set obj26 attribute Target to "AdminServer"
    2011-01-02 23:31:53,002 WARN [Thread-14] com.oracle.cie.domain.aspect.XBeanConfigAspect - Unable to locate property:Name on type:class com.oracle.cie.domain.xml.configxb.weblogic.x90.impl.WeblogicJmsTypeImpl
    2011-01-02 23:31:53,345 WARN [Thread-14] com.oracle.cie.domain.aspect.XBeanConfigAspect - Unable to locate property:CredentialEncrypted on type:class com.oracle.cie.domain.xml.configxb.impl.DefaultAuthenticatorTypeImpl
    2011-01-02 23:31:53,345 WARN [Thread-14] com.oracle.cie.domain.aspect.XBeanConfigAspect - Unable to locate property:CredentialEncrypted on type:class com.oracle.cie.domain.xml.configxb.impl.DefaultIdentityAsserterTypeImpl
    Dose anyone have some suggestions for solving this? Thanks first.............
    Cliff

    Can you cross check your steps again against the steps mentioned here -
    http://anuj-dwivedi.blogspot.com/2010/10/installing-oracle-soa-and-bpm-111130.html
    Regards,
    Anuj

  • How to configure webutil 1.06 with oracle Developer suite 10g R2

    Hello everyone,
    My computer configuration is
    OS-> Windows 7 Ultimate (32-bit)
    RAM-> 1GB
    I have successfully installed oracle XE and developer suite 10g R2 in my computer. Now i want to configure webutil. Please give me the step-by-step procedure for it.
    Thanks in advance.

    hi
    plz search this forum u will find so many answered threads anyways.
    plz read the following.
    Webutil Settings
    Requirements
    ·     Download Jacob 1.8 archive and webutil  1.06
    (Download http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip 
       and extract to a temporary staging area. Do not attempt to use 1.7 or 1.9.
    webutil can be downloaded from http://otn.oracle.com )
    Database  Setup
         Login as SYS
          create user webutil identified by webutil
                  default tablespace users
                      temporary tablespace temp;
         grant connect, create session, create procedure, create public synonym to webutil;
         grant resource, connect to webutil;
         grant execute on dbms_lob to   webutil;
         login as webutl user  and  run
         create_webutil_db.sql
         create public synonym webutil_db for webutil.webutil_db;     
         grant execute on webutil_db to public;
              set serveroutput on
    declare
        a  boolean;
    begin
        a:=webutil_db.closeblob(1);
        If a then
            dbms_output.put_line('webutil/blob setup '||'TRUE');
        else
            dbms_output.put_line(' webutil/blob setup  '||'FALSE');
        end if;
    end;
    copy jacob.jar and copy  frmwebutil.jar  to ORACLE_HOME/forms/java directory.
        Make sure you can download these using the below
         http://machinename.com/forms/java/jacob.jar
         http://machinename.com/forms/java/frmwebutil.jar  
    Create  directory webutil under [OraHome]/forms/webutil and .
           copy jacob.dll , JNIsharedstubs.dll, d2kwutil.dll
           Check the permissions. Read /Execute
    Forms.conf   AliasMatch ^/forms/webutil/(..*)      
    $ORACLE_HOME/forms/webutil/$1"
              http://machinename.com/forms/webutil/jacob.dll 
              http://machinename.com/forms/webutil/JNIsharedstubs.dll
              http://machinename.com/forms/webutil/d2kwutil.dll  
    In the  default.env update
         WEBUTIL_CONFIG=/opt/oracle/product/10gas/forms/server/webutil.cfg
           CLASSPATH=c:\temp\webutil\lib\frmwebutil.jar;c:\"Program      Files"\Java\j2re1.4.2_06\lib\rt.jar  (Include rt.jar)
         Also include  C:\Dev10g\forms\java\ frmall.jar
    Settings for     webutil.cfg
         logging.file=c:\temp\webutil.log
         logging.enabled=TRUE
         logging.errorsonly=TRUE
         logging.connections=TRUE
         transfer.database.enabled=TRUE
         transfer.appsrv.enabled=TRUE
         transfer.appsrv.workAreaRoot=<Enter Directory /folder on Server>
         transfer.appsrv.accessControl=TRUE
         transfer.appsrv.read.1=<Enter Directory /folder on Server>
         transfer.appsrv.write.1=<Enter Directory /folder on Server>
    Entry in the formsweb.cfg
    [webutil]
         WebUtilArchive=frmwebutil.jar,jacob.jar
         WebUtilLogging=on
         WebUtilLoggingDetail=normal
         WebUtilErrorMode=Alert
         WebUtilDispatchMonitorInterval=5
         WebUtilTrustInternal=true
         WebUtilMaxTransferSize=16384
         baseHTMLjinitiator=basejpi.htm
         baseHTMLjpi=webutiljpi.htm
         #archive_jini=frmall_jinit.jar
         lookAndFeel=oracle
         form=WELCOME.fmx
         userid=webutil/Webutil$123@ORCL
         width=955
         height=545
         jpi_download_page=https://java.sun.com/products/archive/j2se/1.4.2_09/index.ht     ml
         jpi_classid=clsid:8AD9C840-044E-11D1-B3E9-00805F499D93
         jpi_codebase=https://java.sun.com/products/plugin/autodl/jinstall-1_4-windows-     i586.     cab#Version=1,4,0,0
    jpi_mimetype=application/x-java-applet;version=1.4
    Sign jacob.jar ( Not mandatory )
       Open a DOS command prompt.
       Add [OraHome]\jdk\bin to the PATH:
          set PATH=[OraHome]\jdk\bin;%PATH%
       Sign the file, and check the output for success:
          [OraHome]\forms\webutil\sign_webutil [OraHome]\forms\java\jacob.jar
    [Previously this point stated that frmwebutil.jar also needed to be signed. This is no longer necessary and should not be done.]
    Start Forms Builder and connect to a schema in the RDBMS used in step (4).
       Open webutil.pll, do a "Compile ALL" (shift-Control-K), and generate to PLX (Control-T).
       If the PLX is not generated, the Webutil.pll library would have to be attached with
       full path information to all forms wishing to use WebUtil. This is NOT recommended.
    Create a new FMB.
           Open webutil.olb, and Subclass (not Copy) the Webutil object to the form.
            There is no need to Subclass the WebutilConfig object.
            Attach the Webutil.pll Library, and remove the path.
             Create a new button on a new canvas, with the code
                   show_webutil_information (TRUE);
       in a WHEN-BUTTON-PRESSED trigger.
            Compile the FMB to FMX, after doing a Compile-All (Shift-Control-K).
       Under Edit->Preferences->Runtime in Forms Builder, click on "Reset to Default" if
                the "Application Server URL" is empty.
       Then append "?config=webutil" at the end, so you end up with a URL of the form
         http://server:port/forms/frmservlet?config=webutil
    Compile the webutil.pll and attach it to the fmb. Compile it
    Debugging
    Clear the browser cache and enable the jinitator / sun java plugin.
    For Sun Java Plugin
    Start ->Settings ->Control –Panel->Java->Advanced ->Show Java Console
    Debugging  ->Select All
                  Clear the plugin cache and once again access the URL. Make sure all the dlls,jar files
    are getting downloaded.
    FRM-92050   failed to connect to server /forms90/;90serlvet -1
       oracle.forms.net,connectionexeption : form session  failed during startup.
    Java console shows  -
    When you are not able to download the webutil.jar file
    java.lang.ClassNotFoundException:
    java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)     at
    java.security.AccessController.doPrivileged(Native Method)     
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    Cause
    Ensure that the  ORACLE_HOME  in the .Env file points to a correct home.
    Frm-40735 when-custom-item-event triger raised unhandled exception ora-06508
    Cause
    Ported webutil to Unix . The form appears , but when a call is made to webutil
    functions, it resulted in the above error .The reason was PLL was not compiled
    on unix .
    Reference
    Metalink Note 418970.1 ORA-06508 When Starting Webutil
    Read / Write - image file
    The code was not erroring out, but the image was not getting copied in the
    image item .
    Cause
    transfer.appsrv.workAreaRoot=<name of the temp directory >
    transfer.appsrv.accessControl=TRUE was not specified in the webutil.cfg file
    The root of the location in which WebUtil can store temporary files
    uploaded from the client.
    While Writing Image file ( remember its the client to which the image
    is written to ).
    Example
    client_image.write_image_file('d:\myimg\','GIF','CTRL.MY_IMG',
    maximize_compression,     original_depth);
    Then ensure that on the thin client , there exist a directory  called as "myimg" in the D drive .
    One should watch out for the error in the console or the log depending on how
    the logging has been set to .In case if the directory does not exist on the
    client message appears that cannot create a file ...
    These are the steps that occurs -
    1) WebUtil creates a working directory that is private to the user
      on the applciation server using the value of transfer.appsrv.workAreaRoot
      This is that <ipaddress>\<ntuser name> directory
    2) The basic forms Write Image file is used to extract a temporary copy
       of the image into that  directory.
    3) The image is downloaded into the client machine and saved as the name
       that you specified as the filename in the write_image_file command.
    4) The temporary copy of the image held in the workAreaRoot on the Appserver
       is cleaned up.
    4) Client_host - The  command is supposed to run the executable on the client .
       But if you are trying to call an exe which is not in the path , you will not
       get any error.
    Error Message while opening the fmb in the forms builder
    Add jacob.jar and frmwebutil.jar  to CLASSPATH or FORMS_BUILDER_CLASSPATH ... otherwise there is an error message when opening the canvas in the new created fmb
    {code}
    hope this helps u.
    sarah                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Do I use Oracle SOA Suite or OSB or both ?

    Hi,
    I've done some research on the web but still it seems slightly ambiguous to me. If a company has requirements for moderate levels of business services (<100) what is the best Oracle service bus choice?. It feels like OSB and SOA Suite overlap a lot, so it makes the choice confusing if the goal is to keep it simple and allow quicker time to market. So I have some questions
    Q1. Under what scenarios would you use/need:
    a. OSB only
    b. SOA Suite only
    c. Both of the above
    Q2. What is Oracle's product strategy concerning these. Is OSB the product they are pushing going forward etc ?
    Q3. What is the better choice if I want to have strong but simple security ? Does this make a difference to the choice ?
    FYI, Oracle BPM will be used in addition to the above, so integration to that will be required.
    TIA

    Q1. Under what scenarios would you use/need:https://blogs.oracle.com/fmwsoa/entry/oracle_soa_suite_bpel_and
    OSB use cases
    Q2. What is Oracle's product strategy concerning these. Is OSB the product they are pushing going forward etc ?SOA and OSB complete each other and hence both will be available in the future. OSB acts as a primary enterprise service bus whereas SOA holds complete business process middleware.
    Q3. What is the better choice if I want to have strong but simple security ? Does this make a difference to the choice ?Both can provide almost same level of security.
    Regards,
    Anuj

  • Installed Oracle Developer Suite 10g (9.0.4) in Linux

    my system is Linux enterprise 3, update 5 (Kernel 2.4.21-32.ELsmp)
    I haved Installed Oracle Developer Suite 10g (9.0.4) by using instruction in Oracle9i Developer Suite Installation for RedHat Install successful.
    when I run form builder (oracle_home/bin/f90desm.sh, rwbuilder), it show that:
    Segmentation fault
    Please help!

    And how to set RHEL 3 to allow install Oracle
    Developer Suite 10g (9.0.4.0.0)?Main documentation link:
    http://www.oracle.com/technology/documentation/index.html
    Under Development Tools, click Oracle Developer Suite Release 10g (9.0.4), then View Library (Documentation Library for Windows, Linux, Solaris, and HP-UX). The Tab Getting Started has Install guides.

  • Replacing composite versions in Oracle SOA Suite deploy

    I'm developing a SOA application using Oracle SOA Suite BPMN processes. I have been deploying the 1.0.0 version of my app but in one occasion I used the 1.0.1 version for my deploy, since then, when I deploy a composite with 1.0.0 version the deployed process doesn't includes the new activities that I'm adding during development. ie:
    My 1.0.0 version includes:
    MyProcess
    HumanTaskOne
    HumanTaskTwo
    SubProcessOne
    Then, I deployed the 1.0.1 version (including minor fixes):
    MyProcess
    HumanTaskOne
    HumanTaskTwo
    SubProcessOne
    And now, I decided to continuing using 1.0.0 version, but with new changes, so my new composite includes:
    MyProcess
    HumanTaskOne
    ScriptTaskOne
    HumanTaskTwo
    SubProcessOne
    So, now when I test the app, the created instance doesn't contains the ScripTaskOne activity. It looks like its remembering the old activities and ignoring the new one, but I'm in developing mode and there is no current version, so I want to override this settings and continue to develop under 1.0.0 version. I tried to undeploy all the processes from server but when I redeploy the 1.0.0 version it ignores the new activities.
    Someone knows how to solve this problem???

    Hi,
    For installation and relevant links:
    http://ariklalo.wordpress.com/2012/05/26/oracle-soa-suite-11gr1-installation/
    For configuration (if needed and wanted):
    http://docs.oracle.com/cd/E17904_01/integration.1111/e10226/bp_config.htm
    For JCA/All adapters User's Guide:
    http://docs.oracle.com/cd/E15523_01/integration.1111/e10231/partpage1.htm
    For examples bpel:
    http://java.net/projects/oraclesoasuite11g/pages/BPEL
    Arik

  • Oracle 11i suite  installation

    HI
    i am planning to learn oracle apps financials.what is the minimum hardware configuration required to install this software.there are 4 dvds for this software.i have a laptop with 1 gb ram and 80 gb hardisk,is installing this software on laptop a safebet or its better to install on desktop.is there any website where i can learn oracle apps without having to install this software.waiting for replies.
    thanks and regards.

    The eBusiness Suite comes with over 50 CDs. It requires at least one Oracle database, at least one Oracle Application Server, and many processes.
    The documentation is available through http://docs.oracle.com, just like all other Oracle documentation. The latest can be found at http://download-east.oracle.com/docs/cd/B25516_08/current/html/homeset.html
    The first document on that site is the 'Using Rapid Install' doc, and it indicates that you will need at least 97GB disk space. Based on my experience, you'll need to have about 4GB memory and at least a P4/3200GHz CPU to have a system limp along for basic learning. If your laptop can handle that, you should be OK.
    Note that from the Oracle Forums home page (http://forums.oracle.com) you can see more appropriate discussion areas, under "E-Business Suite", aboutg 1/2 way down the page. You'll probably get better answers there.

  • Oracle SOA Suite 10g and Vista

    Hi All,
    Is the SOA Suite 10g is avaliable now for Vista. Does the Itanium 654 MB on
    [http://www.oracle.com/technology/software/products/ias/htdocs/101310.html]
    under
    means that this download is for MS Vista.
    ~Vikram

    Yes, it is certified to run on Vista but with at least 10.1.3.3 patchset. Refer Note:444112.1 on MetaLink for details.
    Thanks
    Shail

Maybe you are looking for

  • How can I sync two iphones to the same itunes account without deleting

    My husband & I both have iphones & we share the same itunes account. He just got a iphone 4 and we are trying to transfer his music from the old phone to the new one but we are unable to do that. There is a msg that says if we choose to sync all the

  • Costing Run Error

    Hi All, I am currently trying to roll cost for materials but have an error that i can not seem to resolve, i hope someone can assist me and help me understand. While rolling the cost for a specific material the MFG Overhead cost is not being calculat

  • Can't get surround speakers to work

    i set up my K8N so far, and aside from some minor stuff everything is running smoothly. except: my surround speakers, center and sub are not working. left and right front work perfectly but all other speakers don't work any idea how to fix this? i ha

  • Crystal 8.5 export CSV problem

    Post Author: mkobulni CA Forum: Older Products When I export to CSV, the exported file contains the column headers in columns A thru J for every record. Why can't I export a CSV just like an .xls, with the column headings in row 1 and the data undern

  • Transport Error When dev to Quality

    Transport Error on Quality System Hi Gurus, I can face an error when moving query in dev to quality, Error when activating element 497HY34X0YTB2D1KDTUFYWP4I Element 497HY3CLJXF0KZL0JNWS8YNUA is missing in version M Element 497HY59QAKUE8MG206HURGCAA i