ESS Scheduler metadata information in SOA Composite

Hi,
I am working on SOA 12c and Scheduling a SOA Composite, in the process i need to track the ess scheduler request id within SOA Composite and log the composite details with ess scheduler request id.
how this can be achieved
Thanks & Regards,
ANVV

Hi Markus,
Thanks for the link.
i have scheduled the SOA Composite in the similar way, and get it working
1) Developed the SOAComposite1
2) configured the ESS Scheduler in the similar way shown in the link.
3) Developed a bpel process <bpelprocess> scheduled ; drag & drop the scheduler activity and deployed it to schedule.
4) Run the scheduler from <Scheduling Service> under em console
5) in <SOAComposite1> ; i am trying to get the requestId of the scheduler which ran in step 4 and store the same in the custom database tables for tracking / logging purpose; with current SOAComposite ecid, requestId (which is required and the purpose of this thread), compositename, etc., using ESS API.
Hope i made it clear
Thanks & Regards,
ANVV

Similar Messages

  • Where does OEM store information about SOA composite instances

    Hi All,
    I am posting this query the third time here. I really and urgently need information on where this OEM 12c Cloud Control stores the information about the SOA composite instances like.. if the instances is completed, running,faulted,terminated in the management repository or it does not store these information at all. But then from where it fetches the information on faulted instances which it shows on a SOA composite home page in OEM console.
    I really need some concepts on this.
    Please help!!
    Thanks in Advance!!

    This forum is answered on a best effort basis. For time sensitive urgent issues, please log a service request with Oracle Support.

  • How to get partner related information in soa composite

    hi,
    I have a SOA composite that receives a B2B inbound message from a trading partner.
    I have couple of identifiers defined for that trading partner. But using the properties tab in the B2B component of composite I can get access to only one identifier(which is probably used to identify the from party in the first place) of the trading partner.
    Is there api to accesses values of other identifiers defined for that trading partner.
    Any Idea!!
    Thanks,
    Anil

    The api for getSenderId says
    "Returns the sender identification associated with the message
    Returns: String sender identification type and value. Example: DUNS 123456789"
    In my case I have the partner configured with following identifiers:
    DUNS 123456789
    PHONE 1000000
    If DUNS is used to identify the partner sending the message getSenderId() will return "DUNS 123456789", but I want to access PHONE value. How do I get it?
    Thanks,
    Anil

  • Error while deploying SOA composite via ant

    I am getting following error while deploying SOA composite through ant from SOA server (UNIX).It is unable to get mds configuration.
    Jdeveloper is not installed in SOA server.
    I am trying to copy the SOA project from local machine to SOA server and trying to deploy from SOA server.
    Error
    Parse of component type files failed, check the adf-config.xml file : "oracle.fabric.common.FabricException: oracle.mds.config.MDSConfigurationException: MDS-01330: unable to load MDS configuration document
    MDS-01329: unable to load element "persistence-config"
    MDS-01370: MetadataStore configuration for metadata-store-usage "mstore-usage_1" is invalid.
    MDS-00503: The metadata path "/u01/orasoa/Oracle/Middleware/Oracle_SOA1/integration" does not contain any valid directories.
    I checked /u01/orasoa/Oracle/Middleware/Oracle_SOA1 directory. Integretion directory is not available.
    Am I missing anything?
    *Please advise.*
    build.propeties
    ============
    # build file for HelloWorldComposite
    composite.name=AntScriptDeployPOCService
    # revision of the composite
    composite.revision=1.0
    # Set oracle.home to <JDEV_HOME>/jdeveloper, where <JDEV_HOME> is JDEV # installation directory
    #oracle.home=C:/Oracle/Middleware/jdeveloper
    oracle.home=/u01/orasoa/Oracle/Middleware/Oracle_SOA1
    # soa-server side oracle home directory - needed for deployment plan
    # and the weblogic sca library deployment
    soa.server.oracle.home=/u01/orasoa/Oracle/Middleware/Oracle_SOA1
    ###### Deployment server connection information
    # the admin server connection information
    admin.server.host=10.40.237.106
    admin.server.port=7001
    # the domain where soa infra is installed
    server.domain.name=soa_domain
    # connection information for the managed server, used for soa-deployment
    managed.server.host=10.40.237.106
    managed.server.port=8001
    # User and credentials for the servers
    server.user=weblogic
    server.password=<password>
    # wls server where soa is targeted.
    server.targets=soa_server1
    #local.java.home=C:/Oracle/Middleware/jdk160_14_R27.6.5-32
    local.java.home=/u01/orasoa/Oracle/Middleware/jdk160_14_R27.6.5-32
    Build.xml
    <?xml version="1.0" encoding="UTF-8" ?>
    <project name="AntScriptDeployPOCService" default="all">
    <!-- build.properties -->
    <property file="build.properties"/>
    <property name="deploy.dir" value="../deploy"/>
    <!-- Add targets here -->
    <target name="compile-package">
    <property name="sca-inf.classes.dir" value="../SCA-INF/classes"/>
    <mkdir dir="${sca-inf.classes.dir}"/>
    <ant antfile="${oracle.home}/bin/ant-sca-package.xml" target="package" inheritall="false">
    <property name="oracle.home" value="${oracle.home}"/>
    <property name="compositeDir" value="${basedir}/../"/>
    <!-- needed for adf config -->
    <property name="scac.application.home" value="${basedir}/../.."/>
    <!-- name of the composite -->
    <property name="compositeName" value="${composite.name}"/>
    <!-- revision of the composite -->
    <property name="revision" value="${composite.revision}"/>
    <!-- java.passed.home passed to scac, this property will be
    overwritten to the env.JAVA_HOME if such env variable is defined in OS level-->
    <property name="java.passed.home" value="${local.java.home}"/>
              <!--property name="java.passed.home" value="C:/Oracle/Middleware/jdk160_14_R27.6.5-32"-->
    </ant>
    </target>
    <target name="deploy">
    <condition property="deploymentplan.name" value="null">
    <not>
    <isset property="${deploymentplan.name}"/>
    </not>
    </condition>
    <echo>Deploying to http://${managed.server.host}:${managed.server.port}/soa-infra/deployer</echo>
    <ant antfile="${oracle.home}/bin/ant-sca-deploy.xml" target="deploy" inheritall="false">
    <!-- reformat of prop names -->
    <property name="user" value="${server.user}"/>
    <property name="password" value="${server.password}"/>
    <!-- create the url for deployment -->
    <property name="serverURL" value="http://${managed.server.host}:${managed.server.port}/soa-infra/deployer"/>
    <!-- location of the sar -->
    <property name="sarLocation" value="${deploy.dir}/sca_${composite.name}_rev${composite.revision}.jar"/>
    <!-- force overwrite if already there -->
    <property name="overwrite" value="true"/>
    <!-- configplan-->
    <property name="configplan" value="${deploymentplan.name}"/>
    </ant>
    </target>
    <target name="all" depends="compile-package,deploy"/>
    </project>

    Check whether the adf-config.xml file in your app is having proper mds path similar to this:
    <adf-mds-config xmlns="http://xmlns.oracle.com/adf/mds/config">
    <mds-config xmlns="http://xmlns.oracle.com/mds/config">
    <persistence-config>
    <metadata-namespaces>
    <namespace metadata-store-usage="mstore-usage_1" path="/soa/shared"/>
    </metadata-namespaces>
    <metadata-store-usages>
    <metadata-store-usage id="mstore-usage_1">
    <metadata-store class-name="oracle.mds.persistence.stores.file.FileMetadataStore">
    <property value="${oracle.home}/integration"
    name="metadata-path"/>
    <property value="seed" name="partition-name"/>
    </metadata-store>
    </metadata-store-usage>
    </metadata-store-usages>
    </persistence-config>
    </mds-config>
    </adf-mds-config>
    "

  • SOA Composite (having refernce to MDS )Deployment thru ANT script

    I have been trying to deploy SOA composite which has reference to 'oramds:/soa/shared/workflow/TaskServiceInterface.wsdl' thru ANT script.But getting below error -
    scac-validate:
    [echo] Running scac-validate in D:\apps\saurabhk\deployment\Error Logging\Ev
    entHandlerSubscriberComposite\bin/..//composite.xml
    [echo] oracle.home = D:/apps/common/mw_home/jdeveloper
    [input] skipping input as property compositeDir has already been set.
    [input] skipping input as property compositeName has already been set.
    [input] skipping input as property revision has already been set.
    scac:
    [scac] Validating composite "D:\apps\saurabhk\deployment\Error Logging\Event
    HandlerSubscriberComposite\bin/..//composite.xml"
    [scac] FATAL_ERROR: location {ns:composite}(12,61): Parse of component type
    files failed, check the adf-config.xml file : "oracle.fabric.common.FabricExcept
    ion: oracle.mds.config.MDSConfigurationException: MDS-01330: unable to load MDS c
    onfiguration document
    [scac] MDS-01329: unable to load element "persistence-config"
    [scac] MDS-01370: MetadataStore configuration for metadata-store-usage "msto
    re-usage_1" is invalid.
    [scac] MDS-01259: The metadata store "oracle.mds.persistence.stores.db.DBMet
    adataStore" cannot be instantiated.
    [scac] oracle.jdbc.driver.T4CConnection.isValid(I)Z
    [scac] : MDS-01330: unable to load MDS configuration document
    [scac] MDS-01329: unable to load element "persistence-config"
    [scac] MDS-01370: MetadataStore configuration for metadata-store-usage "msto
    re-usage_1" is invalid.
    [scac] MDS-01259: The metadata store "oracle.mds.persistence.stores.db.DBMet
    adataStore" cannot be instantiated.
    [scac] oracle.jdbc.driver.T4CConnection.isValid(I)Z
    [scac] : oracle.mds.config.MDSConfigurationException: MDS-01330: unable to l
    oad MDS configuration document
    [scac] MDS-01329: unable to load element "persistence-config"
    [scac] MDS-01370: MetadataStore configuration for metadata-store-usage "msto
    re-usage_1" is invalid.
    [scac] MDS-01259: The metadata store "oracle.mds.persistence.stores.db.DBMet
    adataStore" cannot be instantiated.
    [scac] oracle.jdbc.driver.T4CConnection.isValid(I)Z
    [scac] : MDS-01330: unable to load MDS configuration document
    [scac] MDS-01329: unable to load element "persistence-config"
    [scac] MDS-01370: MetadataStore configuration for metadata-store-usage "msto
    re-usage_1" is invalid.
    [scac] MDS-01259: The metadata store "oracle.mds.persistence.stores.db.DBMet
    adataStore" cannot be instantiated.
    [scac] oracle.jdbc.driver.T4CConnection.isValid(I)Z
    [scac] "
    BUILD FAILED
    I have mentioned MSD information in build.properties file and adf-config.xml file.
    build.properties :-
    foreign.mds.type=db
    mds.db.userid=XXX
    mds.db.password=XX
    mds.db.jdbc-url=jdbc:oracle:thin:@XXX.XXX.XXX.XXX:1521:DBC
    adf-config.xml:-
    <?xml version="1.0" encoding="windows-1252" ?>
    <adf-config xmlns="http://xmlns.oracle.com/adf/config"
    xmlns:sec="http://xmlns.oracle.com/adf/security/config">
    <!-- server side db backed mds settings -->
    <adf-mds-config xmlns="http://xmlns.oracle.com/adf/mds/config">
    <mds-config xmlns="http://xmlns.oracle.com/mds/config">
    <persistence-config>
    <metadata-namespaces>
    <!-- shared namespace for soa artifacts, such as xsd / wsdl -->
    <namespace metadata-store-usage="mstore-usage_1" path="/soa/shared"/>
    <!-- customer namespace for sharing stuff -->
    <namespace metadata-store-usage="mstore-usage_1" path="/apps"/>
    <!-- configuration namespace for the SE/BCs, only exists on the server -->
    <namespace metadata-store-usage="mstore-usage_1" path="/soa/configuration"/>
    </metadata-namespaces>
    <metadata-store-usages>
    <metadata-store-usage id="mstore-usage_1">
    <metadata-store class-name="oracle.mds.persistence.stores.db.DBMetadataStore">
    <property name="jdbc-userid" value="XXXX"/>
    <property name="jdbc-password" value="XXXX"/>
    <property name="jdbc-url"
    value="jdbc:oracle:thin:@XXX.XXX.XXX.XX:1521:DBC"/>
    <property name="partition-name" value="soa-infra"/>
    </metadata-store>
    </metadata-store-usage>
    </metadata-store-usages>
    </persistence-config>
    </mds-config>
    </adf-mds-config>
    <sec:adf-security-child xmlns="http://xmlns.oracle.com/adf/security/config">
    <CredentialStoreContext credentialStoreClass="oracle.adf.share.security.providers.jps.CSFCredentialStore"
    credentialStoreLocation="../../src/META-INF/jps-config.xml"/>
    </sec:adf-security-child>
    </adf-config>
    Please let me know if you need any more informattion.
    Thanks in advance

    [scac] MDS-01259: The metadata store "oracle.mds.persistence.stores.db.DBMetadataStore" cannot be instantiated.This error tells that the parameters you have given in build.properties are incorrect. Cross check them again. Make sure that property mds.db.userid points to a MDS schema (for example dev_mds)
    Regards,
    Anuj

  • Unable to Harvest a SOA composite from SOA suite server to OER11g

    Hi All,
    I wanted to harvest a SOA composite from SOA suite server to OER11g.For that i had followed this portion *5.2.6.1 Harvesting from Oracle SOA Suite Server* from Oracle® Fusion Middleware Configuration Guide for Oracle Enterprise Repository11g Release 1 (11.1.1) E16580-01 document.
    The Version of OER is : OER 11.1.1.2.0 , the version of SOA suite is : 11.1.1.3.0 and the version of SOA weblogic server is :10.3.3
    OER and SOA domain are different but under the same Middleware home.
    Database is also located at same machine.
    The steps i had followed:
    1.The User of the weblogic server has these three roles i.e 1. Admin 2. Operator 3. Monitor
    2.Unzip the Harvester.zip into the repository location.
    3.Modified the <RemoteQuery> section and OER section of HarvesterSettings.xml file
    4.using encrypt.bat file encrypted the password.
    5.executed the harvester.bat file
    The HarvesterSetting.xml file :
    <?xml version="1.0" encoding="UTF-8"?>
    <tns:harvesterSettings xmlns:tns="http://www.oracle.com/oer/integration/harvester" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.oracle.com/oer/integration/harvester Harvester_Settings.xsd ">
    <!--Description to set on created Assets in OER.-->
    <harvesterDescription/>
    <!--Registration status to set on created Assets in OER.
    The Valid Registration states are 1) Unsubmitted 2)Submitted - Pending Review 3)Submitted - Under Review 4)Registered -->
    <registrationStatus>Unsubmitted</registrationStatus>
    <!--Namespace to set on created Assets in OER. If left empty, this is set based on information from SOA Suite and OSB projects
    when available. That's generally the best practice, so override this with caution.-->
    <namespace/>
    <!--If true, trigger OER events for use by Workflow. Warning: this can decrease performance.-->
    <triggerEvent>false</triggerEvent>
    <!--Connection info to OER-->
    <repository>
    <uri>http://localhost:7101/oer</uri>
    <credentials>
    <user>admin</user>
    <password>v2_1.PHQe8yYXiqU=</password><!--run encrypt.bat to encrypt this-->
    </credentials>
    <timeout>30000</timeout>
    </repository>
    <!--Query: the files to harvest-->
    <query>
    <!--To specify design-time files to harvest: Uncomment the section below and specify the file(s) you want to harvest.
    Or specify on the command-line via the -file parameter.-->
    <!--
    <fileQuery>
    <rootDir>C:\wsdls\adapter\file\DynamicSynchronousReadTutorial\DynamicSyncRead</rootDir>
    <files>bpel</files>
    </fileQuery>
    -->
    <!--To specify run-time files to harvest: Uncomment this and specify the file(s) you want to harvest.
    Or specify on the command-line via the -file parameter.
    The serverType must be one of: SOASuite, OSB, or WLS.
    Run encrypt.bat to encrypt the password.-->
    <remoteQuery>
    <serverType>SOASuite</serverType>
    <projectName>TestOER_rev1.0</projectName>
    <uri>http://localhost:7403/</uri>
    <credentials>
    <user>weblogic</user>
    <password>v2_1.G+NTr3az8thaGGJBn0vwPg==</password>
    </credentials>
    </remoteQuery>
    </query>
    <introspection>
    <reader>com.oracle.oer.sync.plugin.reader.file.FileReader</reader>
    <writer>com.oracle.oer.sync.plugin.writer.oer.OERWriter</writer>
    </introspection>
    </tns:harvesterSettings>
    Error Message ::
    C:\Oracle\Middleware\repository111\11.1.1.2.0-OER-Harvester>harvest.bat
    Connecting to: service:jmx:t3://localhost:7403/jndi/weblogic.management.mbeanservers.runtime
    0 [main] WARN com.oracle.oer.sync.framework.impl.DefaultPluginManager - Unable to initialize harvester plugin: C:\Oracle\Middleware\repository111\11.1.1.2.0-OER-
    9624 [main] INFO com.oracle.oer.sync.framework.MetadataManager - Oracle Enterprise_Repository_Harvester version: v11.1.1.2.0-100119_0001-1293556
    Connecting to: service:jmx:t3://localhost:7403/jndi/weblogic.management.mbeanservers.runtime
    18669 [main] WARN com.oracle.oer.sync.framework.impl.DefaultPluginManager - Unable to initialize harvester plugin: C:\Oracle\Middleware\repository111\11.1.1.2.0-OER
    Connecting to: service:jmx:t3://localhost:7403/jndi/weblogic.management.mbeanservers.runtime
    45196 [main] ERROR com.oracle.oer.sync.framework.MetadataManager - Artifact harvest failed due to:
    org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 203 completed: No
    at com.sun.corba.se.impl.logging.ORBUtilSystemException.writeErrorSend(ORBUtilSystemException.java:2259)
    at com.sun.corba.se.impl.logging.ORBUtilSystemException.writeErrorSend(ORBUtilSystemException.java:2281)
    at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.writeLock(SocketOrChannelConnectionImpl.java:957)
    at com.sun.corba.se.impl.encoding.BufferManagerWriteStream.sendFragment(BufferManagerWriteStream.java:86)
    at com.sun.corba.se.impl.encoding.BufferManagerWriteStream.sendMessage(BufferManagerWriteStream.java:104)
    at com.sun.corba.se.impl.encoding.CDROutputObject.finishSendingMessage(CDROutputObject.java:144)
    at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.finishSendingRequest(CorbaMessageMediatorImpl.java:247)
    at com.sun.corba.se.impl.protocol.CorbaClientRequestDispatcherImpl.marshalingComplete1(CorbaClientRequestDispatcherImpl.java:355)
    at com.sun.corba.se.impl.protocol.CorbaClientRequestDispatcherImpl.marshalingComplete(CorbaClientRequestDispatcherImpl.java:336)
    at com.sun.corba.se.impl.protocol.CorbaClientDelegateImpl.invoke(CorbaClientDelegateImpl.java:129)
    at com.sun.corba.se.impl.protocol.CorbaClientDelegateImpl.is_a(CorbaClientDelegateImpl.java:213)
    at org.omg.CORBA.portable.ObjectImpl._is_a(ObjectImpl.java:112)
    at weblogic.corba.j2ee.naming.Utils.narrowContext(Utils.java:126)
    at weblogic.corba.j2ee.naming.InitialContextFactoryImpl.getInitialContext(InitialContextFactoryImpl.java:94)
    at weblogic.corba.j2ee.naming.InitialContextFactoryImpl.getInitialContext(InitialContextFactoryImpl.java:31)
    at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:41)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
    at javax.naming.InitialContext.init(InitialContext.java:223)
    at javax.naming.InitialContext.<init>(InitialContext.java:197)
    at weblogic.management.remote.common.ClientProviderBase.makeConnection(ClientProviderBase.java:143)
    at weblogic.management.remote.common.ClientProviderBase.newJMXConnector(ClientProviderBase.java:79)
    at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnectorFactory.java:338)
    at com.oracle.oer.sync.plugin.reader.soasuite11g.SOASuite11gRemoteReader.initConnection(SOASuite11gRemoteReader.java:286)
    at com.oracle.oer.sync.plugin.reader.soasuite11g.SOASuite11gRemoteReader.read(SOASuite11gRemoteReader.java:84)
    at com.oracle.oer.sync.plugin.reader.soasuite11g.SOASuite11gRemoteReader.getFilesToRead(SOASuite11gRemoteReader.java:62)
    at com.oracle.oer.sync.plugin.reader.file.FileReader.getFilesToRead(FileReader.java:198)
    at com.oracle.oer.sync.plugin.reader.file.FileReader.read(FileReader.java:79)
    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.flashline.util.classloader.ContextClassLoaderHandler.invoke(ContextClassLoaderHandler.java:39)
    at $Proxy14.read(Unknown Source)
    at com.oracle.oer.sync.framework.MetadataManager.start(MetadataManager.java:598)
    at com.oracle.oer.sync.framework.Introspector.<init>(Introspector.java:191)
    at com.oracle.oer.sync.framework.Introspector.main(Introspector.java:395)
    com.oracle.oer.sync.framework.MetadataIntrospectionException: Artifact harvest failed due to:
    at com.oracle.oer.sync.framework.MetadataManager.start(MetadataManager.java:603)
    at com.oracle.oer.sync.framework.Introspector.<init>(Introspector.java:191)
    at com.oracle.oer.sync.framework.Introspector.main(Introspector.java:395)
    Caused by: org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 203 completed: No
    at com.sun.corba.se.impl.logging.ORBUtilSystemException.writeErrorSend(ORBUtilSystemException.java:2259)
    at com.sun.corba.se.impl.logging.ORBUtilSystemException.writeErrorSend(ORBUtilSystemException.java:2281)
    at com.sun.corba.se.impl.transport.SocketOrChannelConnectionImpl.writeLock(SocketOrChannelConnectionImpl.java:957)
    at com.sun.corba.se.impl.encoding.BufferManagerWriteStream.sendFragment(BufferManagerWriteStream.java:86)
    at com.sun.corba.se.impl.encoding.BufferManagerWriteStream.sendMessage(BufferManagerWriteStream.java:104)
    at com.sun.corba.se.impl.encoding.CDROutputObject.finishSendingMessage(CDROutputObject.java:144)
    at com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl.finishSendingRequest(CorbaMessageMediatorImpl.java:247)
    at com.sun.corba.se.impl.protocol.CorbaClientRequestDispatcherImpl.marshalingComplete1(CorbaClientRequestDispatcherImpl.java:355)
    at com.sun.corba.se.impl.protocol.CorbaClientRequestDispatcherImpl.marshalingComplete(CorbaClientRequestDispatcherImpl.java:336)
    at com.sun.corba.se.impl.protocol.CorbaClientDelegateImpl.invoke(CorbaClientDelegateImpl.java:129)
    at com.sun.corba.se.impl.protocol.CorbaClientDelegateImpl.is_a(CorbaClientDelegateImpl.java:213)
    at org.omg.CORBA.portable.ObjectImpl._is_a(ObjectImpl.java:112)
    at weblogic.corba.j2ee.naming.Utils.narrowContext(Utils.java:126)
    at weblogic.corba.j2ee.naming.InitialContextFactoryImpl.getInitialContext(InitialContextFactoryImpl.java:94)
    at weblogic.corba.j2ee.naming.InitialContextFactoryImpl.getInitialContext(InitialContextFactoryImpl.java:31)
    at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:41)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
    at javax.naming.InitialContext.init(InitialContext.java:223)
    at javax.naming.InitialContext.<init>(InitialContext.java:197)
    at weblogic.management.remote.common.ClientProviderBase.makeConnection(ClientProviderBase.java:143)
    at weblogic.management.remote.common.ClientProviderBase.newJMXConnector(ClientProviderBase.java:79)
    at javax.management.remote.JMXConnectorFactory.newJMXConnector(JMXConnectorFactory.java:338)
    at com.oracle.oer.sync.plugin.reader.soasuite11g.SOASuite11gRemoteReader.initConnection(SOASuite11gRemoteReader.java:286)
    at com.oracle.oer.sync.plugin.reader.soasuite11g.SOASuite11gRemoteReader.read(SOASuite11gRemoteReader.java:84)
    at com.oracle.oer.sync.plugin.reader.soasuite11g.SOASuite11gRemoteReader.getFilesToRead(SOASuite11gRemoteReader.java:62)
    at com.oracle.oer.sync.plugin.reader.file.FileReader.getFilesToRead(FileReader.java:198)
    at com.oracle.oer.sync.plugin.reader.file.FileReader.read(FileReader.java:79)
    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.flashline.util.classloader.ContextClassLoaderHandler.invoke(ContextClassLoaderHandler.java:39)
    at $Proxy14.read(Unknown Source)
    at com.oracle.oer.sync.framework.MetadataManager.start(MetadataManager.java:598)
    ... 2 more
    Please provide some solution.Any help would be useful to me.
    Thanks in advance.
    Sharmistha.

    You have to import the OER-Harvester-Solution-Pack located at C:\Oracle\Middleware\repository111\core\tools\solutions\11.1.1.4.0-OER-Harvester-Solution-Pack.zip
    (path may change under your custom installation) to the OER using the admin option import/export -> import

  • Accessing the stored OIM password in CSF from SOA composite

    Is there a guide on how to access CSF - OIM credentials from your SOA composite. I found this example ( http://docs.oracle.com/cd/E14571_01/doc.1111/e14309/soa_api.htm ) which hard codes the xelsysadm's password in the SOA composite. It says See SOA documentation for more information about how to get credentials from CSF inside a SOA composite. I can't find any documentation describing how to access the credentials.
    I'm trying to access the lookup definitions I have defined in OIM.

    This is the code to retrieve the username and password from the CSF:
    >
         String oimUserName = "";
         String oimPassword = "";
         //get system administrator's credentials
         oracle.security.jps.JpsContext ctx = oracle.security.jps.JpsContextFactory.getContextFactory().getContext();
         final oracle.security.jps.service.credstore.CredentialStore cs = (oracle.security.jps.service.credstore.CredentialStore)ctx.getServiceInstance(oracle.security.jps.service.credstore.CredentialStore.class);
         oracle.security.jps.service.credstore.CredentialMap cmap = cs.getCredentialMap("oracle.oim.sysadminMap");
         oracle.security.jps.service.credstore.Credential cred = cmap.getCredential("sysadmin");
         if (cred instanceof oracle.security.jps.service.credstore.PasswordCredential) {     
              oracle.security.jps.service.credstore.PasswordCredential pcred = (oracle.security.jps.service.credstore.PasswordCredential)cred;
              char[] p = pcred.getPassword();
              oimUserName = pcred.getName();
              oimPassword = new String(p);
    >
    It will retrieve the username and password for a map called "oracle.oim.sysadminMap" with key user of "sysadmin". In my instance, i have added xelsysadm and password for this key.
    -Kevin

  • Events not being dequeued out of WF_BPEL_Q. No Instances on SOA composites

    We would like to capture a few business events in oracle financials that are of interest to us. In order to do this, we deploy oracle SOA composite with BEPL in the Oracle Fusion Middleware Control. The oracle SOA composite is configured for a particular business event. It listens on a specific queue WF_BPEL_Q and de-queues the messages in that queue. In jDeveloper 11g we created a SOA project with oracle applications adapter partner link and a receive.
    Specifically we are trying to capture the business outbound event oracle.apps.ar.hz.CustAccount.create just to get the event data in this receive.
    Partner link configuration: We added the database connection to the oracle financials instance. Tested it and we succeded. Chose ANY_SCHEMA in partner link configuration.
    We ensured that the JNDI Name here( eis/Apps/Apps ) match the JNDI name provided in the weblogic-->Deployments-->OracleAppsAdapter -->Configuration --> Outbound Connection Pools. For this outbound resource pool, Connection factory interface was javax.resource.cci.ConnectionFactory. Property name xADataSourceName was mapped to JNDI name of the configured JDBC datasource in the weblogic. In our case it was jdbc/AppsDataSource. When we created the connection pool. We tested and it worked fine. This data source had the connection pool configured to the oracle applications schema with APPS user.
    After adding the partner link with the above configuration, we added a receive. We deployed this configuration to the middleware. We went to the oracle financial, created a customer and account and we expected to having running instances against the deloyed composite. However, the problem is we are not having any running instance for the composite.
    We found that there are entries in the view AQ$WF_BPEL_QTAB with an ENQ_TIME and ENQ_TIMESTAMP but with no DEQ_TIME or DEQ_TIMESTAMP. The ENQ_TIMESTAMP corresponds to the time we created the customer and accounts in oracle financials and the USER_DATA column has the business event of interest. The events are enqueued in WF_BPEL_Q but not being dequeued by oracle applications adapter/composites deployed in soa server. Consumer name on AQ$WF_BPEL_QTAB matched with the consumer name on the deployed composite at the Oracle Enterprise manager.
    Any help would be highly appreciated. I have put in the initial set of information here. Please do let me know, if you would need any other information. I shall be more than happy to provide that.
    VERSION INFORMATION:
    We are using Weblogic Server 10.3.1.0 and Oracle Enterprise manager 11.1.1.1.0.
    Thanks,
    Prakash
    Edited by: user9169972 on Mar 26, 2010 5:28 PM

    I'm facing a similar problem. In my case, there is notifications on Oracle SOA Suite, but the message in wf_bpel_qtab still remains.
    Did you find something?
    Thanks.

  • Launching flow trace for SOA composite leads to login page

    Hi,
    I am using windows vista, oracleXEuniv, oracle fusion middleware 11g 11.1.1.3.0, SOA 11g PS2+PS3, jdev 11.1.1.3.0+SCA composite editor 11.1.1.3.0.25.57
    Now after logging into enterprise manager fusion middleware control when I browse to my soa composite by clicking
    SOA->soa-infra(soa_server1)->default->validationForCC[1.0]
    This list me all the recent composite instances. Now if I click on any of the instance ids a new pop up window is open which displays enterprise manager login screen.
    In addition if i click on 'Launch Message Flow Trace' on Test composite page then also it happens the same way.
    Does anyone know what configuration I might be missing?
    In logs i only get following
    ####<07/12/2010 12:27:14 PM EST> <Warning> <org.apache.myfaces.trinidad.bean.PropertyKey> <kapilPC> <AdminServer> <[ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <4a432b45d3fd32e0:-302436ff:12cbe3b48bc:-8000-000000000000016f> <1291685234358> <BEA-000000> <Unserializable value:oracle.sysman.core.view.tgtctls.common.DefaultTreeModel@148f6b5 for key:UINodePropertyKey[value,17]>
    [2010-12-07T12:27:14.358+11:00] [AdminServer] [WARNING] [] [org.apache.myfaces.trinidad.bean.PropertyKey] [tid: [ACTIVE].ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: 0000ImyS3Tv2jKYFLryGOA1CzNyi00003x,0] [APP: em] [dcid: 4a432b45d3fd32e0:-302436ff:12cbe3b48bc:-8000-000000000000016f] Unserializable value:oracle.sysman.core.view.tgtctls.common.DefaultTreeModel@148f6b5 for key:UINodePropertyKey[value,17]
    Kapil Sapra

    Hi,
    I followed the information given in the thread. I downloaded the version 11.1.1.0.0.52.19 and tried to install it. But JDeveloper gave an error saying
    This update cannot be installed. It requires other extensions which are not installed, or which are installed but incompatible.
    Extension...................Required Version.......................Installed Version
    Oracle.studio..............min=11.1.1.1.33.54.07...............min=11.1.1.0.31.51.88
    Oracle.j2ee................min=11.1.1.1.33.54.07...............min=11.1.1.0.31.51.88
    I am giving the details of the JDeveloper version installed on my machine.
    About
    Oracle JDeveloper 11g 11.1.1.0.1
    Studio Edition Version 11.1.1.0.1
    Version
    ADF Business Components........... 11.1.1.51.88
    CVS Version.............................. Internal to Oracle JDeveloper 11g (client-only)
    Java(TM) Platform...................... 1.6.0_05
    Oracle IDE................................. 11.1.1.0.31.51.88
    Versioning Support.....................11.1.1.0.31.51.88
    Properties
    All the properties are of version....11.1.1.0.31.51.88
    There are only two version of downloads available. Can anyone help in getting the correct version of SOA composite editor which might had been archived?
    Regards,
    Pavan

  • How SOA composite Application Instance ID gets generated

    Hi,
    While I was working with one of my minor SOA project, I noticed one thing that the SOA composite application instance IDs are not generated in a particular sequence. The numbers specified as Instance ID are random. Sometimes there is a difference of hundreds, sometimes of thousands and other times of difference reaches in lakhs. I am unable to understand the Procedure how these Instance IDs get generated when we deploy our project.
    Thanks & Regards
    Parul Nagpal

    Instance Id's (CIKEY) are generated from ID_RANGE table, every call to this table returns a different range of sequences. Instance Ids will not collide across different Managed servers. Instance ID gets refreshed with each server restarts and is not equal across nodes or after restart.
    Information to configure this range can be found in 12.2.9 InstanceKeyBlockSize in the Oracle BPEL Process Manager Performance Tuning Guide.  
    Reference : http://docs.oracle.com/cd/E14571_01/core.1111/e10108/bpel.htm  
    Reference :CIKEY or Instance ID generation for composites in SOA Suite 11.1.1.4 (Doc ID 1312037.1)
    Regards,
    Anshul

  • Not able to test SOA composites from Oracle Fusion Middleware Control

    Hi All,
    I am working on weblogic server 10.3.5
    SOA Suite 11.1.1.5.0
    Earlier everything was working fine. Suddenly while testing one of my deployed composite I am getting the following error
    Either the WSDL URL is invalid or the WSDL file is not valid or incorrect. - WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://<server_host>:<soa_server_port>/soa-infra/services/default/Project1/helloworld_client_ep?WSDL: HTTP connection error code is 503
    And this error message is coming from every other composite. I am not able to test any of the SOA composites from my fusion middleware control
    I followed the soa server log also but couldn't find any information regarding this error.
    Also I restarted all the servers;admin server+managed servers, after deleting the tmp folder but the error persists
    Can anyone suggest me what can be the issue?
    Thanks in Advance!!

    Hi Rohini,
    503 Service Unavailable errors can appear in any browser in any operating system.
    The 503 Service Unavailable error displays inside the browser window, just as web pages do.
    Cause of 503 Service Unavailable Errors
    The 503 Service Unavailable error is an HTTP status code that means the web site's server is simply not available right now. Most of the time this is because the server is too busy or because there's maintenance being performed on it.
    Try to enable HTTP tunneling on Server that solve your problem.
    Regards,
    Kal

  • Scheduling Capability in Oracle Soa Suite 11g

    Hi,
    I am looking for a capability to schedule the SOA composites in Soa suite 11g. Gone through the old forum posts and some of the blog links as well. Found out that only following ways are possible with out going for workarounds.
    - using commonJ API in weblogic
    - using quartz scheduler
    Just wanted to confirm is this the direct way possible? As both of these approches use the webaplication which requires additional maintenance have to come up with the UI as well as the user might want to modify scheduling times in future.
    Please let me know on the same.
    Thanks
    Siva

    I am looking in the same issue myself, I have put together some useful links here:
    http://www.javamonamour.org/2010/12/commonj-timer-with-osb.html
    most likely I will use CommonJ TimerManager with Clister-wide Timer and Job Scheduler, since I require High Availability....
    Anyway I wish there was something easier to configure and manage.... I have seen a commercial product (can't remember the link) but waaay too expensive....

  • Error in installing SOA Composites step in Oracle GRC8.6.3 Installation

    Hi all,
    i am installing oracle grc8.6.3 in windows 64 bit.
    i have installed database,rcu,weblogic,soa successfully.in next step i have to install SOA Composite.
    when i am running the wlst from oracle_soa1/common/bin and passing the parameter in the wls:/offline i am getting following error
    i have set JAVA_HOME,WL_HOME,SOA_HOME correctly
    please help me
    wls:/offline> sca_deployComposite("http://localhost:8001","
    D:\oracle\dist\composites1.zip",overwrite=true,user="weblogic",password="Newuser")
    serverURL = http://localhost:8001
    sarLocation = D:\oracle\dist\composites1.zip
    partition = default
    overwrite = 1
    user = weblogic
    forceDefault = 1
    configplan = None
    keepInstancesOnRedeploy = 0
    timeout = -1
    set user and password...
    Processing sar=D:\oracle\dist\composites1.zip
    created temp dir =C:\Users\A-EXT-~4\AppData\Local\Temp\deploy_client_24c31e3a-db
    09-43dd-92c7-cea134ccd56a
    Adding sar file - C:\Users\A-EXT-~4\AppData\Local\Temp\deploy_client_24c31e3a-db
    09-43dd-92c7-cea134ccd56a\sca_EmailComposite_rev2.0.jar
    INFO: Creating HTTP connection to host:sfre001t.statoilfuelretail.com, port:8001
    INFO: Received HTTP response from the server, response code=500
    ---->Response code=500, error:There was an error deploying the composite on soa_
    server1: Deployment Failed: Error occurred during deployment of component: Email
    Process to service engine: implementation.bpel, for composite: EmailComposite: O
    RABPEL-05250
    Error deploying BPEL suitcase.
    error while attempting to deploy the BPEL component file "D:\oracle\app\product\
    OFM\domain\user_projects\domains\grc_domain\servers\soa_server1\dc\soa_d7580aa1-
    6af4-4360-b47a-ce198c3d1d89"; the exception reported is: java.lang.NoClassDefFou
    ndError: Could not initialize class com.collaxa.cube.util.JavaHelper
    This error contained an exception thrown by the underlying deployment module.
    Verify the exception trace in the log (with logging level set to debug mode).
    thanks
    Edited by: 902535 on May 2, 2012 10:59 AM

    I think you may have gotten confused with the installation guide.
    If you're installing GRC, you should not be installing SOA or other components. There are 2 applications you can install from that distribution, GRCC or EGRCM. EGRCM is the one that refers to SOA's if needed, so even then you shouldn't need to install it for testing out the product.
    I hope that helps!

  • Cannot deploy SOA composite to a managed server

    My problem: cannot deploy SOA composite to a managed server.
    The following is what I did:
    1. I created a domain "devDomain". admin server is created automatically for me.
    *2. I created a manged server (soa_server1) on my domain after.*
    2. started the admin server
    3. started soa_server1
    4. see both servers in WLS control, both server state=running
    5. see both server in EM console, both server status are up
    6. in JDev(11.1.1.5.0), created an application server connection, and tested the connection successfully
    7. when I tried to deploy my composite from JDev, I selected the application server connection, on step "SOA servers", it only lists AdminServer.
    8. Then I tried to deploy the composite from EM by right-click soa_server1, but "SOA deployment" is not in the list.
    My guess: there should be some libraries or other resources applied to soa_server1 before it could accept soa deployment. What are these libraries/resources?
    I tried to target all 10 libraries under the path "oracle.soa." to soa_server1, and checked the config.xml and found the file was updated correcly, reboot my pc, restarted the servers, but still face the same problem.
    My environment is weblogic 10.3.5.
    Basically, my question is:
    after a domain is created and admin server is there, if I want to add a managed server which will host soa composites, what should I do to configure the managed server?
    Edited by: wiky on Jul 20, 2011 11:39 AM

    How can I add new code to a clustered environment without causing an          outage. Right
              > now I have to deploy the new code using the admin server to both managed
              servers.
              > My question is if I pull one managed server out of the cluster, add new
              code and
              > test it, how do I add this one managed server back to the cluster that is
              referencing
              > the old code without causing an outage for the site?
              This is something addressed much better in the 7.0 release.
              Peace,
              Cameron Purdy
              Tangosol, Inc.
              Clustering Weblogic? You're either using Coherence, or you should be!
              Download a Tangosol Coherence eval today at http://www.tangosol.com/
              "William" <[email protected]> wrote in message
              news:3cc9847a$[email protected]..
              >
              

  • How do you use a SOA Composite after you have deployed it and tested it?

    I have created a SOA Composite application, deployed it with no problems, and tested and it works. However I am having trouble finding info on what to do next. I really would like to know how to use this SOA Composite application in a web application. I am trying to create an interface that would use the SOA composite. Any links to help would be greatly appreciated.
    This is the only help I have found so far, http://docs.oracle.com/cd/E28271_01/fusionapps.1111/e15524/uc_bpel_bc.htm

    Hi,
    It's a web service call, you go to EM get the WSDL and with it you generate the webservice client for your web application... By calling the web service you will be starting the composite...
    Cheers,
    Vlad

Maybe you are looking for

  • How to Repair A File Changed into an Alias?

    hello, so i have a really frustrating problem. and here it is: --oct 25 i backed up all my files onto an external hard drive (EHD) --i upgraded my osx from snow leopard to mavericks --attached my EHD to laptop to retrieve files --discovered that seve

  • Multiple identical Applications files??

    I opened to my Applications in my finder the other day and discovered this; I have multiple app files and they are identical.  They each are the same size file. How were they created?  Do I delete the copies? How do I avoid this in the future? Thanks

  • Problem Installing Creative Suite 4 design premium.

    It would get to second disc, stop and have an errors. I ran the CS4 cleanscript and now on install I get a window that tells me I do not have SP1 for Vista installed (which I do). I went to MS and downloaded SP1 again but I still get the same error m

  • What are some ways to hook my imac to my tv

    I am looking for some ways to hook my G5+isight to my tv.  im not really sure what kind of cables to buy.  i would like not to have to move my comp but the only way i found for that would be the apple tv, am i right? my tv has all kinds of diff conne

  • [Solved]Keyboard shortcut to change workspace in Gnome

    I have my virtual machines run in full screen mode. Occasionally I'll want to switch workspaces in Gnome. How would I go about setting a keyboard shortcut to change the workspace? Last edited by jordanwb (2008-09-30 21:52:22)