[SOLVED] SOA Suite 11g and OID

How should I configure OC4J in TP4 such that Human Tasks can be assigned to users in an LDAP directory, e.g Oracle Internet Directory?
Thanks,
Eyðun
Message was edited by:
Eyðun E. Jacobsen
Message was edited by:
Eyðun E. Jacobsen

The resulting jps-config.xml will be as follows:
<?xml version="1.0" encoding="UTF-8" standalone='yes'?>
<jpsConfig xmlns="http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd" schema-major-version="11" schema-minor-version="1">
<!-- This property can be used to configure 3rd party IdM at application level jps-config -->
<!--property name="oracle.security.jps.idm.authentication" value="CUSTOM_AUTH"/-->
<!-- This property is for jaas mode. Possible values are "off", "doas" and "doasprivileged" -->
<property name="oracle.security.jps.jaas.mode" value="off"/>
<!-- These are various jps common properties used for LDAP operations -->
<property name="oracle.security.jps.farm.name" value="cn=OracleFarmContainer"/>
<property name="oracle.security.jps.ldap.root.name" value="cn=OracleJpsContainer"/>
<property name="oracle.security.jps.ldap.max.retry" value="5"/>
<propertySets>
<!-- SAML Trusted Issuer -->
<propertySet name="saml.trusted.issuers.1">
<property name="name" value="www.oracle.com"/>
</propertySet>
<!-- This property points to valid Access SDK installation directory -->
<propertySet name="access.sdk.properties">
<property name="access.sdk.install.path" value="$ACCESS_SDK_HOME"/>
</propertySet>
</propertySets>
<serviceProviders>
<serviceProvider type="CREDENTIAL_STORE" name="credstoressp" class="oracle.security.jps.internal.credstore.ssp.SspCredentialStoreProvider">
<description>SecretStore-based CSF provider</description>
</serviceProvider>
<serviceProvider type="IDENTITY_STORE" name="idstore.xml.provider" class="oracle.security.jps.internal.idstore.xml.XmlIdentityStoreProvider">
<description>XML-based IdStore Provider</description>
</serviceProvider>
     <serviceProvider type="IDENTITY_STORE" name="idstore.ldap.provider" class="oracle.security.jps.internal.idstore.ldap.LdapIdentityStoreProvider">
<description>XML-based IdStore Provider</description>
</serviceProvider>
<serviceProvider type="POLICY_STORE" name="policystore.xml.provider" class="oracle.security.jps.internal.policystore.xml.XmlPolicyStoreProvider">
<description>XML-based PolicyStore Provider</description>
</serviceProvider>
<serviceProvider type="ANONYMOUS" name="anonymous.provider" class="oracle.security.jps.internal.anonymous.idm.IdmAnonymousServiceProvider">
<description>Anonymous Service Provider</description>
</serviceProvider>
<serviceProvider type="LOGIN" name="jaas.login.provider" class="oracle.security.jps.internal.login.jaas.JaasLoginServiceProvider">
<description>This is Jaas Login Service Provider and is used to configure login module service instances</description>
</serviceProvider>
<serviceProvider type="POLICY_STORE" name="policy.xds" class="oracle.security.jps.internal.policystore.xds.XsPolicyServiceProvider">
<description>JAAS+ policy service provider</description>
</serviceProvider>
<serviceProvider type="XDS_AUTHENTICATION_PROVIDER" name="authentication.xds" class="oracle.security.jps.internal.idstore.xds.XsAuthenticationProvider">
<description>JAAS+ authentication service provider</description>
</serviceProvider>
<serviceProvider type="XDS_SESSION_PROVIDER" name="sessioncookie.xds" class="oracle.security.jps.internal.policystore.xds.session.SessionCookieProvider">
<description>JAAS+ Session Cookie service provider</description>
</serviceProvider>
<!-- 3rd Party Custom Idm Provider -->
<serviceProvider type="IDM" name="idm.provider" class="oracle.security.jps.internal.idm.IdmServiceProvider">
<description>3rd Party Custom Idm Provider</description>
</serviceProvider>
<serviceProvider name="keystore.provider" type="KEY_STORE" class="oracle.security.jps.internal.keystore.KeyStoreProvider">
<description>PKI Based Keystore Provider</description>
<property name="provider.property.name" value="owsm"/>
</serviceProvider>
</serviceProviders>
<serviceInstances>
<serviceInstance name="credstore" provider="credstoressp" location="./oc4j-credstore">
<description>File Based Credential Store Service Instance</description>
</serviceInstance>
<serviceInstance name="idstore.xml" provider="idstore.xml.provider" location="./system-jazn-data.xml">
<description>File Based Identity Store Service Instance</description>
<property name="subscriber.name" value="jazn.com"/>
</serviceInstance>
<serviceInstance name="policystore.xml" provider="policystore.xml.provider" location="./system-jazn-data.xml">
<description>File Based Policy Store Service Instance</description>
</serviceInstance>
<serviceInstance name="anonymous" provider="anonymous.provider">
<description>Anonymous Service Instance</description>
<!-- Anonymous user name must be defined for anonymous service -->
<property name="anonymous.user.name" value="anonymous"/>
<!-- This property set defines the anonymous role -->
<property name="anonymous.role.name" value="anonymous-role"/>
</serviceInstance>
<serviceInstance name="idm" provider="idm.provider">
<description>JSSO Authentication Configuration</description>
<property name="idm.authentication.name" value="JavaSSO"/>
<property name="idm.token.asserter.class" value="oracle.security.jps.internal.jsso.SSOCookieTokenAsserter"/>
<property name="idm.token.collector.class" value="oracle.security.jps.internal.jsso.SSOCookieTokenCollector"/>
<property name="idm.token.type" value="COOKIE_TOKEN"/>
<property name="idm.token.collector.cookie.1" value="ORA_OC4J_SSO"/>
<property name="custom.sso.url.login" value="/jsso/SSOLogin"/>
<property name="custom.sso.url.logout" value="/jsso/SSOLogout"/>
<property name="custom.sso.cred.key" value="JSSO_KEY"/>
<property name="custom.sso.cred.alias" value="JSSO_ALIAS"/>
</serviceInstance>
<serviceInstance name="idm.osso" provider="idm.provider">
<description>Oracle SSO Authentication Configuration</description>
<property name="idm.authentication.name" value="OSSO"/>
<property name="idm.token.asserter.class" value="oracle.security.jps.internal.osso.OSSOTokenAsserter"/>
<property name="idm.token.collector.class" value="oracle.security.jps.internal.osso.OSSOTokenCollector"/>
<property name="idm.token.type" value="HEADER_TOKEN"/>
</serviceInstance>
<serviceInstance name="idstore.loginmodule" provider="jaas.login.provider">
<description>Identity Store Login Module</description>
<property name="loginModuleClassName" value="oracle.security.jps.internal.jaas.module.idstore.IdStoreLoginModule"/>
<property name="jaas.login.controlFlag" value="REQUIRED"/>
</serviceInstance>
<serviceInstance name="anonymous.loginmodule" provider="jaas.login.provider">
<description>Anonymous Login Module</description>
<property name="loginModuleClassName" value="oracle.security.jps.internal.jaas.module.anonymous.AnonymousLoginModule"/>
<property name="jaas.login.controlFlag" value="REQUIRED"/>
</serviceInstance>
<serviceInstance name="xds.loginmodule" provider="jaas.login.provider">
<description>JAAS+ LWS LoginModule</description>
<property name="loginModuleClassName" value="oracle.security.jps.internal.jaas.module.xds.XsLoginModule"/>
<property name="jaas.login.controlFlag" value="REQUISITE"/>
</serviceInstance>
<!-- KeyStore Service Instance -->
<serviceInstance name="keystore" provider="keystore.provider" location="./default-keystore.jks">
<description>Default JPS Keystore Service</description>
<property name="keystore.type" value="JKS"/>
     <property name="keystore.csf.map" value="oracle.wsm.security"/>
<property name="keystore.pass.csf.key" value="keystore-csf-key"/>
<property name="keystore.sig.csf.key" value="enc-csf-key"/>
<property name="keystore.enc.csf.key" value="enc-csf-key"/>      
</serviceInstance>
<!-- SAML Login Module -->
<serviceInstance name="saml.loginmodule" provider="jaas.login.provider">
<description>SAML Login Module</description>
<property name="loginModuleClassName" value="oracle.security.jps.internal.jaas.module.saml.JpsSAMLLoginModule"/>
<property name="jaas.login.controlFlag" value="REQUIRED"/>
<propertySetRef ref="saml.trusted.issuers.1"/>
</serviceInstance>
<!-- This is Kerberos Login Module Instance. -->
<serviceInstance name="krb5.loginmodule" provider="jaas.login.provider">
<description>Kerberos Login Module</description>
<property name="loginModuleClassName" value="com.sun.security.auth.module.Krb5LoginModule"/>
<property name="jaas.login.controlFlag" value="REQUIRED"/>
<property name="storeKey" value="true"/>
<property name="useKeyTab" value="true"/>
<property name="doNotPrompt" value="true"/>
<property name="keyTab" value="./krb5.keytab"/>
<property name="principal" value="HOST/[email protected]"/>
</serviceInstance>
<!-- This is OAM Login Module Instance. -->
<serviceInstance name="oam.loginmodule" provider="jaas.login.provider">
<description>Oracle Access Manager Login Module</description>
<property name="loginModuleClassName" value="oracle.security.jps.internal.jaas.module.oam.OAMLoginModule"/>
<property name="jaas.login.controlFlag" value="REQUIRED"/>
<propertySetRef ref="access.sdk.properties"/>
</serviceInstance>
<!-- For 10.1.3. Should be removed if not needed. JAZN User Manager Login Module Instance -->
<serviceInstance name="admin.tool.loginmodule" provider="jaas.login.provider">
<description>Realm Login Module</description>
<property name="loginModuleClassName" value="oracle.security.jazn.login.module.RealmLoginModule"/>
<property name="jaas.login.controlFlag" value="REQUIRED"/>
</serviceInstance>
<!-- Digest Authenticator Login Module Instance -->
<serviceInstance name="digest.authenticator.loginmodule" provider="jaas.login.provider">
<description>Digest Authenticator Login Module</description>
<property name="loginModuleClassName" value="oracle.security.jps.internal.jaas.module.digest.DigestLoginModule"/>
<property name="jaas.login.controlFlag" value="REQUIRED"/>
</serviceInstance>
<!-- Certificate Authenticator Login Module Instance -->
<serviceInstance name="certificate.authenticator.loginmodule" provider="jaas.login.provider">
<description>X509 Certificate Login Module</description>
<property name="loginModuleClassName" value="oracle.security.jps.internal.jaas.module.x509.X509LoginModule"/>
<property name="jaas.login.controlFlag" value="REQUIRED"/>
</serviceInstance>
<!-- WSS Username token digest login module -->
<serviceInstance name="wss.digest.loginmodule" provider="jaas.login.provider">
<description>WSS Digest Login Module</description>
<property name="loginModuleClassName" value="oracle.security.jps.internal.jaas.module.digest.WSSDigestLoginModule"/>
<property name="jaas.login.controlFlag" value="REQUIRED"/>
</serviceInstance>
     <serviceInstance name="idstore.oid" provider="idstore.ldap.provider">
<property name="subscriber.name" value="dc=us,dc=oracle,dc=com"/>
<property name="idstore.type" value="OID"/>
<property name="security.principal.alias" value="JPS"/>
<property name="security.principal.key" value="oid.credentials"/>
<property name="ldap.url" value="ldap://stapm51.us.oracle.com:389"/>
<extendedProperty>
<name>user.search.bases</name>
<values>
<value>dc=us,dc=oracle,dc=com</value>
</values>
</extendedProperty>
<extendedProperty>
<name>group.search.bases</name>
<values>
<value>dc=us,dc=oracle,dc=com</value>
</values>
</extendedProperty>
<property name="username.attr" value="cn"/>
<propperty name="group.attr" value="cn"/>
     <property name="PROPERTY_ATTRIBUTE_MAPPING" value="im=mail"/>
     </serviceInstance>
</serviceInstances>
<jpsContexts default="default">
<!-- This is the default JPS context. All the mendatory services and Login Modules
must be configured in this default context -->
<jpsContext name="default">
<serviceInstanceRef ref="credstore"/>                                   
<serviceInstanceRef ref="keystore"/>
<serviceInstanceRef ref="idstore.xml"/>
<serviceInstanceRef ref="policystore.xml"/>
<serviceInstanceRef ref="idstore.loginmodule"/>
<serviceInstanceRef ref="idm"/>
</jpsContext>
     <jpsContext name="oid">
<serviceInstanceRef ref="credstore"/>
<serviceInstanceRef ref="keystore"/>
<serviceInstanceRef ref="idstore.oid"/>
<serviceInstanceRef ref="policystore.xml"/>
<serviceInstanceRef ref="idstore.loginmodule"/>
<serviceInstanceRef ref="idm"/>
</jpsContext>
<!-- This is default owsm security context -->
<jpsContext name="oracle.wsm.security.default">
<serviceInstanceRef ref="credstore"/>
<serviceInstanceRef ref="idstore.xml"/>
<serviceInstanceRef ref="keystore"/>
<serviceInstanceRef ref="anonymous.loginmodule"/>
<serviceInstanceRef ref="idstore.loginmodule"/>
<serviceInstanceRef ref="certificate.authenticator.loginmodule"/>
<serviceInstanceRef ref="saml.loginmodule"/>
<serviceInstanceRef ref="krb5.loginmodule"/>
<serviceInstanceRef ref="oam.loginmodule"/>
<serviceInstanceRef ref="wss.digest.loginmodule"/>
</jpsContext>
<!-- This is the default anonymous Login Module context -->
<jpsContext name="anonymous">
<serviceInstanceRef ref="anonymous"/>
<serviceInstanceRef ref="anonymous.loginmodule"/>
</jpsContext>
<!-- Default Idm Login Module -->
<jpsContext name="oracle.security.jps.fmw.authenticator.IdmAuthenticator">
<serviceInstanceRef ref="idstore.loginmodule"/>
</jpsContext>
<!-- For 10.1.3. Should be removed if not needed. Admin Tool Login Module -->
<jpsContext name="oracle.security.jazn.tools.Admintool">
<serviceInstanceRef ref="idstore.loginmodule"/>
</jpsContext>
<!-- Digest Authenticator Login Module -->
<jpsContext name="oracle.security.jps.fmw.authenticator.DigestAuthenticator">
<serviceInstanceRef ref="digest.authenticator.loginmodule"/>
</jpsContext>
<!-- Basic Authenticator Login Module -->
<jpsContext name="oracle.security.jps.fmw.authenticator.BasicAuthenticator">
<serviceInstanceRef ref="idstore.loginmodule"/>
</jpsContext>
<!-- Certificate Authenticator Login Module -->
<jpsContext name="X509CertificateAuthentication">
<serviceInstanceRef ref="certificate.authenticator.loginmodule"/>
</jpsContext>
<!-- SAML Login Module Context -->
<jpsContext name="SAML">
<serviceInstanceRef ref="saml.loginmodule"/>
</jpsContext>
</jpsContexts>
</jpsConfig>

Similar Messages

  • SOA suite 11g and Windows 7

    Hi All,
    I have purchased a new HP Pavilion dv7 -4053cl It comes with Windows 7 Home edition.
    If I download Oracle SOA suite 11g and Weblogic 10.1.3., will it work on Windows 7 Home ?
    Thanks,
    p

    Hi ,
    I installed SOA suite 11.1.1.2 sucessfully in Windows 7. Now am unable to upgrade it to 11.1.1.3 since I installed the wrong version of weblogic (installed weblogic 10.3.3 that pertains to 32-bit windows system instead of weblogic 10.3.3_generic.jar that pertains to 64-bit platforms.)
    I understand that I need to uninstall SOA suite along with weblogic and install everything fresh . However I am unable to uninstall SOA suite 11.1.1.2 now (tried running <ORACLE_SOA_HOME>/oui/bin). Encountered following error :-
    setup.exe has stopped working.
    A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available.
    Can you please help .
    Thanks in advance !

  • SOA Suite 11g and its compatibility with Weblogic

    Hi ,
    I have two questions:
    1. From where do I download the SOA Suite 11g --Link to the download?
    2.If SOA suite 11g can be installed on weblogic. I understand that SOA suite 10.1.3.4 is compatible with weblogic 9.2 but need some inputs on the SOA Suite11g!
    Cheers
    Prabal

    Prabal,
    Did you get an answer or we have to wait for the official release till July-1-2009.
    Thanks,
    Rahul

  • "Oracle BPM  Suite 11g" and "Oracle SOA Suite 11g" components

    Dear Friends,
    I am very confusing about the "Oracle BPM suite 11g" and "Oracle SOA Suite 11g" and would like your help on explanation as the following :
    I have learn that In order to use "Oracle BPM Suite 11g" require to have "Oracle SOA Suite 11g" components to install first. Does it means that :
    1) When we buy "Oracle BPM Suite 11g" , we automatically get the "Oracle SOA Suite 11g" components as well ?
    2) IS it correct that these " these Oracle SOA Suite 11g components" are included :
    (a) Oracle BAM
    (b) Oracle Business Rules
    (c) Oracle BPEL Manager
    (d) Oracle Service Bus
    (e) Oracle Complex Event Processing
    3) Do we have a right to use all of these components listed in (2) ?
    4) Then the answers in (3) is "YES", then Is it correct when the customer buy the "Oracle BPM Suite 11g" , they no need to buy "Oracle SOA 11g" any more when they would like to implements that applications based on SOA in the future (without using BPM) ?
    5) What IF , the customer would like to start with "Oracle SOA Suite 11g" product and decide to buy only Oracle SOA Suite 11g first ; then later on in the future they would like to implement BPM projects in the future. Can you upgrade "Oracle SOA Suite 11g" to include "Oracle BPM Sutie 11g" and pay only the price different ?
    I hope you can help providing the answers to these questions. THank you very much in advance.
    Best Regards
    Pearapon S.

    This is a question best answered by your Oracle reseller or Oracle account manager to give you all the details but I hope this brief answer helps:
    - The Unified Business Process Management Suite (BPM Suite 11g) includes: BPM Studio, BPM Composer, BPMN Service Engine and Workflow Extensions, BPM Process Spaces, and BPM Process Analytics.
    - BPM Suite 11g requires the licensing of SOA Suite 11g for Oracle Middleware which requires a license for WebLogic Suite.
    - You can license SOA Suite 11g now and license BPM Suite 11g later.
    Since the products are layered, I don't see this cutting into SOA sales at all. My personal view is that BPM on top of SOA is brilliant since it provides easy integration between human and automated tasks, builds on many of the SOA concepts that are key for a successful BPM implementation (functional, not the Oracle product), and uses the same IDE. The synergies extend past easy use of services; the same business rules and human workflow components are used between both products.

  • Dynamic JNDI in SOA Suite 11g

    Hi,
    i have a urgent requirement for my project using SOA Suite 11g,
    and i have a problem in passing dynamic JNDI
    to the database adapters (eis/DB/...).
    say that i have 2 connections,
    eis/DB/conn1, and eis/DB/conn2
    how to switch this information dynamically in the bpel orchestration
    and supply it to the db adapter.
    since when using wizard we supplied it statically.
    I notice that this problem seems to be answered in
    this thread:
    Thread: How to externalize JNDI name (setting JNDI name dynamically)
    How to externalize JNDI name (setting JNDI name dynamically)
    but when i tried it (using WS-Adressing substition) it doesnt
    work in this newer version of SOA Suite (11g)
    So how we can solve this in SOA Suite 11g
    Thank you...

    Hi,
    you don't need to change the resource adapter connection just change the (xa) datasource in the eis name
    I know with the mediator I can assign a new datasource by setting the jca.db.xadatasource property and still use eis/DB/conn1
    hope this helps
    Edwin

  • Namespace prefix in Root element missing during variable assignment in SOA Suite 11g

    I need qualified element Namespaces in one of the target variables. All elements being referred to would have the namespace prefixed. This is working for all child elements, but not the for root element. How can i get the root element prefixed with the namespace?
    We are using SOA Suite 11g and the Jdeveloper version we are using is 11.1.1.6.0
    when i use transform operation to populate the target variable the variable gets populated something like this :
    <inputVariable>
    <part  name="payload">
    <Message>
    <msg:Header>
    <head:field1>xxxxxx</head:field1>
    <head:field2>2013-07-09T08:00:55</head:field1>
    </msg:Header>
    </Message>
    But the actual output we need is
    <inputVariable>
    <part  name="payload">
    <msg:Message>
    <msg:Header>
    <head:field1>xxxxxx</head:field1>
    <head:field2>2013-07-09T08:00:55</head:field1>
    </msg:Header>
    </msg:Message>
    We tried the fix suggested in one of the SOA threads but its not working for us and looks like that will work only for SOA SUITE 10g.
    Please provide us any help/suggestions if anyone know the solution.
    Thank you in advance for the help.

    Any one can help us please.......

  • Oracle SOA Suite 11g VS BPEL PM 11g

    Hello,
    What is the difference between SOA Suite 11g and BPEL Process Manager 11g?
    I understand BPEL PM is a component of SOA Suite 11g.
    What capabilities does SOA Suite offer more than BPEL Process Manager 11g?
    When does a customer choose BPEL PM 11g over SOA Suite 11g? I assume BPEL PM 11g will be less in terms of cost.
    Thanks,
    Ram

    Ram,
    What is the difference between SOA Suite 11g and BPEL Process Manager 11g?BPEL Process Manager 11g is a standalone product and it is part of SOA Suite 11g as well. SOA Suite 11g is actually a group of products and it includes -
    Oracle BPEL Process Manager
    Oracle Service Bus
    Mediator
    Oracle Business Activity Monitoring
    Oracle Web Services Manager
    Oracle Business Rules
    Oracle Human Workflow
    Oracle Event Processing
    JDeveloper and ADF
    Adapters
    Oracle Entitlements Server Basic
    Oracle B2B
    So you cannot compare SOA Suite with BPEL.
    What capabilities does SOA Suite offer more than BPEL Process Manager 11g?Oracle BPEL Process Manager enables enterprises to model, deploy, and manage BPEL (Business Process Execution Language) processes. It includes a BPEL business process modeler, a scalable BPEL run-time engine, an extensible WSDL binding framework, and a monitoring console. So use of BPEL is limited till business process implementation only whereas SOA Suite offers complete middleware SOA solution.
    When does a customer choose BPEL PM 11g over SOA Suite 11g? I assume BPEL PM 11g will be less in terms of cost.Yes, if you want to implement BPEL processes only then you can buy only BPEL Process Manager 11g but if you are looking for to implement a complete middleware SOA solution then licensing SOA Suite 11g will be the better option.
    Regards,
    Anuj

  • Configure OSB 11g to use the same domain as SOA Suite 11g

    Hi,
    A quick question on OSB Installation and extend the weblogic domain created for soa for OSB also. Please guide me what i am following is the correct path.
    I followed the soa 11g and osb 11g installation doc from Eric Elzinga blog also checked oracle doc. Am quite confused about the directory structure to cofigure SOA Suite 11g and OSB 11g.
    After SOA suite install , I Configure Oracle SOA Suite by following the below path
    Run: middleware/wlserver_10.3/common/bin/config.exe (followed the blog ON OSB 11g Installation from Eric Elzinga).
    I have seen another path to configure soa suite from oracle doc
    SOA_ORACLE_HOME\common\bin\config.cmd
    eg: E:\oraclehome\11g\middleware\Oracle_SOA1\common\bin\config.cmd
    both directory str are correct?
    After OSB installation , to configure OSB , I choose to reuse the SOA Suite domain to extend it with the Oracle Service Bus components. so in that case , is it the right directory structure I am following is
    <Middleware_Home>\oracle_common\common\bin\config.bat.
    eg: E:\oraclehome\11g\middleware\oracle_common\common\bin\config.bat
    Thanks in advance
    jk

    Eventually you configure the weblogic domain always (either it is for SOA or OSB or BPM or all), so you should use middleware/wlserver_10.3/common/bin/config.exe
    Regards,
    Anuj

  • How to create users for B2B console in SOA Suite 11g?

    Hi,
    I have installed SOA Suite 11g and created a new user in weblogic server and assigned groups Deployers, Monitors & Operators. On trying to login(http://hostname:port/b2bconsole) using this new user, im not able to login and the below error is logged.
    "There are no trading partners for this user".
    Can someone plesae guide me on how to create a new user for B2B as i dont want to grant adminstrators group to developers.
    Thanks,

    Hi,
    Please login as the weblogic server boot user into b2bconsole and then go to users tab of the host trading partner
    and search for the newly added user [ provide full username ]
    and then assign the role as administrator / monitor from there.
    once this is done.. the newly added user should be able to login to the b2bconsole..
    monitors have read only access and less priveledges..
    Regards,
    Vijay

  • Install SOA suite 11g

    Hello all
    I am very new in the implementation of the Oracle SOA Suite 11g and I have to migrate my applications from 10g, but still do not know which operating system is recommended for the 11g install, and to review the certification matrix but did not find a recommendation to choose from.
    I hope you can help me
    Thank you

    Hi,
    You can find the relavent information in the install guides:
    http://download.oracle.com/docs/cd/E12839_01/doc.1111/e13925/overview.htm
    EL 4 and 5 are supported.

  • Is SOA suite 11g compitable to install on Windows8 OS?

    Hi
    I want to learn OSB & BPEL.
    Is SOA suite 11g and JDeveloper are compitable to install on Windows8 OS?
    Thanks

    yes i have done a set up SOA and OSB 11.1.1.7 in my local machine and is working fine.

  • Which UDDI is supported by SOA suite 11g ?

    We like to use an UDDI in combination with Oracle SOA suite 11g.
    Can anybody tell us which UDDI´s are supported by Oracle.
    We know of Oracle Service Registry, but it isnot an option for us.
    Thanks in advance for answering this question.
    Kind regards,
    Albert Ellen

    Edwin,
    I do see where you are coming from. I am afraid, though, that SOA Suite 11g and JDeveloper 11g are certified only with the Oracle Service Registry, which is downloadable free from OTN if you want to give it a spin - http://www.oracle.com/technology/products/soa/registry/index.html .
    If you must use other registries, you might want to raise a request with Support with your requirement for certification of other registries in SOA Suite and/or JDeveloper, so an enhancement request can be raised accordingly.
    I do realise this doesnt answer your question directly, but hope it does throw some light on how this can be taken forward.
    Regards,
    Yogesh

  • SOA Suite 10g and SOA Suite 11g? what are the major changes in these two?

    Hi Experts,
    I am keen in knowing about Soa Suite 11g. SOA Suite 10g and SOA Suite 11g, BPEL changes? what are the major changes in these two product/tool wise? Is now OSB is part of Soa Suite 11g? it would be helpful for us to know what are the major changes and updates or modifications came in 11g.
    Please share this valuable information.
    Is there still any version is in progress from Oracle, which is yet to be officially launched from oracle?

    what are the major changes in these two product/tool wise? Few major changes to enlist are that SOA suite 10g was using Oracle Application Server (OC4J) however 11g is on Weblogic and 11g is based on SCA. B2B is now part of SOA suite itself and OSB can share a domain with SOA. You may refer below link to know few more -
    http://blogs.oracle.com/soabpm/2010/03/11gr1_patchset_2_111130_soa_fe.html
    Is now OSB is part of Soa Suite 11g? OSB has a separate installer but can share a domain with SOA and SOA-direct binding is also supported now. Refer below link to know more about new features in OSB 11g -
    http://download.oracle.com/docs/cd/E14571_01/relnotes.1111/e10132/osb.htm#CJACHEHJ
    Is there still any version is in progress from Oracle, which is yet to be officially launched from oracle?No major release is planned. Patches for 11g R1 may come.
    Regards,
    Anuj

  • Do we need both management Pack and ADP  for monitoring SOA suite 11g

    Hi,
    Do we need to Both management pack and ADP (OCAMM) Application Dependancy and Performance for monitoring SOA Suite 11g.
    I was creating a monitoring template for SOA Composite and SOA Infrastructure and wanted to know if I need to install additional ( management packs, ADP and Middleware Plugins ) packs to get an effective template.

    A management pack generally refers to the set of pages in EM Grid/Cloud Control which provide functionality for a given set of target types. Since EM Grid Control 11g, the ADP functionality has been part of the Grid Control release and the pages licensed via the Management Pack Plus for SOA or the SOA Management Pack EE.
    To populate the ADP pages with data, additional steps must be performed in order to deploy an ADP manager and ADP agents. Doing this is optional, depending on whether or not you require the additional capability that those pages provide.
    ADP data, however, are collected and stored separately from the core GC/CC metrics and are not related to the monitoring template functionality.

  • SOA suit 11g uses both ESB and OSB(ALSB)

    Hi, I am newbie to SOA suit 11g. Can somebody please explain the use of ESB and OSB(ALSB) both in SOA 11g.In SOA 11g ESB is being used only for mediation.Even OSB(ALSB) has same capability.Then why both needs to be used?Can't we use one of these?
    ~Pradeep

    hello Pradeep,
    there is quite some literature on this hot topic - actually it's one of the most frequently asked question from people who are using OSB and Soa Suite.
    if you google "OSB vs Mediator" you will find some useful links:
    http://www.scribd.com/doc/23622536/Oracle-SOA-Suite-11g-Mediator-vs-Oracle-Service-Bus-OSB
    SOA SUITE 11g - Mediator & OSB
    http://oracle-fusion-blogs.com/oracle-fusion-osb-mediator/
    and so on....

Maybe you are looking for

  • Statspack Report.

    OS - win2003 server DB - 9.2.0.5.0 Can you have a look on Statspack Report and offer your valuable suggestions? Current Instance ~~~~~~~~~~~~~~~~    DB Id    DB Name      Inst Num Instance                                                              

  • BPM - Send Step to HTTP - How to capture the error?

    Hi gurus, I have a BPM with a Send Step that connects to an http server. I need the following: - If the HTTP returns code 200, end the BPM - If the HTTP returns another code, wait 5 minutos and try the send step again. I've made a LOOP with a flag. I

  • Application builder error

    Has anyone seen this error I get this error after I build an installer and try to run the setup Message Edited by James R on 05-14-2009 01:24 PM - James Using LV 2012 on Windows 7 64 bit Attachments: builder_error.jpg ‏48 KB

  • Black Screen when trying to watch videos

    When using iTunes on my computer, every time is try to watch a TV Show, movie or Music video all I get is a black screen. It does not matter if the video is in the 'cloud' or actually on my hard drive. Every video I try to watch is just a black scree

  • Can not make call to Canada no!!!

    I'm having a subscription for calling unlimited to Canada. But while I call once of my friend in Canada. skype usually said that the number is uncorrected or unavailable. However, I able to connect to him sometime. So what wrong with my account?