ESB Endpoint Properties

I noticed in ESB you can now setup Endpoint Properties. I'm interested in using them for error handling, specifically rejectedMessageHandlers. I found some documentation on using that as a property, but can't seem to get it to work. I've tried setting up the property to use file, AQ, and BPEL, none of which seemed to work, I followed the documentation and a post on this forum. Has anyone gotten this to work properly? Is there somewhere in the app server log that I could see the output of endpoint properties? I'm kind of stuck.
Thanks for any direction.

I am on 10.1.3.3
I am seeing the following exception in $J2EE_HOME/log/oc*/oc*/log.xml file
<MSG_TEXT>JCA: Rejection handler failed
Error while trying to hand off bad message to Rejection handler bpel://default:D0978108040F48D060880D888301C27EDDC048307AFA162A|JCARejectionHandler|han
dleRejection|message due to: java.lang.Exception: Failed to create "ejb/collaxa/system/DeliveryBean" bean; exception reported is: "javax.naming.NameNot
FoundException: ejb/collaxa/system/DeliveryBean not found
at com.evermind.server.rmi.RMIServerContext.lookup(RMIServerContext.java:207)
at com.evermind.server.ApplicationContext.unprivileged_lookup(ApplicationContext.java:257)
at com.evermind.server.ApplicationContext.lookup(ApplicationContext.java:197)
at javax.naming.InitialContext.lookup(InitialContext.java:351)
at com.oracle.bpel.client.util.BeanRegistry.lookupDeliveryBean(BeanRegistry.java:279)
at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:250)
at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:174)
at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:149)
at oracle.tip.adapter.fw.AdapterFrameworkListenerBase.invokeBpelProcess(AdapterFrameworkListenerBase.java:1209)
at oracle.tip.adapter.fw.AdapterFrameworkListenerBase.invokeBpelProcess(AdapterFrameworkListenerBase.java:1247)
at oracle.tip.adapter.fw.AdapterFrameworkListenerBase.invokeBpelProcess(AdapterFrameworkListenerBase.java:1266)
at oracle.tip.adapter.fw.AdapterFrameworkListenerBase.handleUndeliverableRequestMessage(AdapterFrameworkListenerBase.java:1522)
at oracle.tip.adapter.fw.AdapterFrameworkListenerBase.sendRejectedMessageToExceptionHandler(AdapterFrameworkListenerBase.java:1394)
at oracle.tip.esb.server.service.impl.inadapter.ESBListenerImpl.onReject(ESBListenerImpl.java:536)
at oracle.tip.esb.server.service.impl.inadapter.ESBListenerImpl.onReject(ESBListenerImpl.java:633)
at oracle.tip.adapter.fw.jca.messageinflow.MessageEndpointImpl.onReject(MessageEndpointImpl.java:361)
at oracle.tip.adapter.aq.inbound.AQActivationSpecDequeuer.handleRejections(AQActivationSpecDequeuer.java:110)
at oracle.tip.adapter.aq.inbound.AQActivationSpecDequeuer.doRaise(AQActivationSpecDequeuer.java:409)
at oracle.tip.adapter.aq.inbound.AQActivationSpecDequeuer.raiseInboundInteraction(AQActivationSpecDequeuer.java:314)
at oracle.tip.adapter.aq.inbound.AQActivationSpecDequeuer.raise(AQActivationSpecDequeuer.java:246)
at oracle.tip.adapter.aq.inbound.AQActivationSpecDequeuer.run(AQActivationSpecDequeuer.java:225)
at oracle.j2ee.connector.work.WorkWrapper.runTargetWork(WorkWrapper.java:242)
at oracle.j2ee.connector.work.WorkWrapper.doWork(WorkWrapper.java:215)
at oracle.j2ee.connector.work.WorkWrapper.run(WorkWrapper.java:190)
at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:814)
at java.lang.Thread.run(Thread.java:595)
Where are the Marc Kelderman instr?
Regards,
Rajesh

Similar Messages

  • Deployment of ESB for 10.1.3.4 (trying to amend Endpoint properties)

    I have downloaded the new deployment code (esbdeploymentautomation) to enable you to deploy an ESB between environments.
    I am deplying an ESB process from Dev to Systest.
    I have amended the build_tst.properties file to include all the relevant info and the build.properties.
    At the bottom of this file I have added
    # Values required for replace tasks.
    code_dir=C:\Project\Client\jdev\jdev\mywork\dii\esbInt110Flow
    search_text=/u01/esb/out/XX/int110_01
    replace_text=/u01/esb/XX/INT110/out
    These lines are trying to change the Endpoint property of a FileAdapter where the directories are different in the new environment.
    I run extract.sh and it successfully creates a deploymentPlan_tst.xml. Great!!
    I can then successfully run the deploy.sh and it deploys my ESB into the new environment but it doesn't change the Endpoint property.
    When you look at the log files generated it doesn't even appear to try and run the replaceToken process.
    Any ideas if this replaceTokens actually works?
    When the extract.sh is run it also generates logging which seems to suggest the replaceTokens runs after the DeployESBSuitcase:
    *Build sequence for target(s) `ExtractESBDeploymentPlan' is [ExtractESBDeploymentPlan]*
    *Complete build sequence is [ExtractESBDeploymentPlan, DeployESBSuitcase, replaceTokens, usage, UndeployESBEntities, ]*
    But from what I can see when you finally run the deploy.sh it only runs the DeployESBSuitcase process and nothing else.
    The only reason for using this automaytion process is so that we can amend Endpoint properties and URLs as we deploy but this is the part that doesn't seem to work....
    Help!!
    Regards
    Stuart

    You need to run the replaceToken before the deployESBSuitecase.
    Here is my example, it does a find and replace on host name
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <project name="ESBDeploymentProject" default="usage">
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Properties
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <property environment="env"/>
    <property name="esbProjectToDeploy" value="${basedir}/deployment"/>
    <property name="deploymentPlanFilename" value="${esbProjectToDeploy}/deploymentPlan.xml"/>
    <property name="ImportFilename" value="${env.ORACLE_HOME}/Deployment/deploy/lib/ESBMetadataMigrationTaskdefs.xml"/>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Environment specific properties
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <echo>Property Files ${env.ORACLE_HOME}/Deployment/deploy/resources/esb.${env.paramtarget}.properties</echo>
    <property file="${env.ORACLE_HOME}/Deployment/deploy/resources/esb.${env.paramtarget}.properties" />
    <property name="targetDeploymentPlanFilename" value="${esbProjectToDeploy}/${esb.deployTargetPlan}"/>
    <target name="param-target-chk" unless="env.paramtarget">
    <fail message="Target deployment environment parameter not set" />
    </target>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Import, to enable the custom ESB Metadata Deployment ant tasks
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <echo>Import ${ImportFilename}</echo>
    <import file="${ImportFilename}"/>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - ESB Deployment Automation
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <target name="DeployESBProject" depends="param-target-chk">
    <deployESBProjects
    esbMetadataServerHostname="${soa.suite.hostname}"
    esbMetadataServerPort="${soa.suite.port}"
    userName="${soa.suite.admin.username}"
    password="${env.soapassword}">
    <esbProject directory="${basedir}"/>
    </deployESBProjects>
    </target>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - List the GUID's for the UndeployESBEntities target e.g.:
    <system guid="8D61C3F0871111DB8F2675C60E6C31C6"/>
    <serviceGroup guid="0EB5F380896111DBBFBC9530C01627AC"/>
    <service guid="0547F370841611DBBFCF2D9BF80323FA"/>
    <serviceGroup guid="B90E6B70895F11DBAF1483EEF470B835"/>
    <system guid="A62C91C1841511DBBFCF2D9BF80323FA"/>
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <target name="UndeployESBEntities" depends="param-target-chk">
    <undeployESBEntities
    esbMetadataServerHostname="${soa.suite.hostname}"
    esbMetadataServerPort="${soa.suite.port}"
    userName="${soa.suite.admin.username}"
    password="${env.soapassword}">
    <system guid="ED8243D1B9A211DCAF33D38D99DD8682"/>
    <service guid="63085310B9A311DCAF33D38D99DD8682"/>
    </undeployESBEntities>
    </target>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Metadata Promotion to different ESB Metadata Servers (environments)
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <target name="ExtractESBDeploymentPlan">
    <mkdir dir="${esbProjectToDeploy}"/>
    <delete file="${deploymentPlanFilename}" verbose="true"/>
    <extractESBDeploymentPlan
    sourceDir="${basedir}"
    deploymentPlanFile="${deploymentPlanFilename}"/>
    </target>
    <target name="ModifyESBDeploymentPlan" depends="param-target-chk">
    <!-- <xmltask source="${deploymentPlanFilename}" dest="${targetDeploymentPlanFilename}">
    <replace path="/deploymentPlan/systemDeploymentPlan/properties/property[@name = 'Host']/@value" withText="${soa.suite.hostname}" />
    <replace path="/deploymentPlan/systemDeploymentPlan/properties/property[@name = 'Port']/@value" withText="${soa.suite.port}" />
    </xmltask> -->
    <copy file="${deploymentPlanFilename}" tofile="${targetDeploymentPlanFilename}"/>
    <replaceregexp file="${targetDeploymentPlanFilename}"
    match="http://[^/]*/"
    replace="http://${soa.suite.hostname}:${soa.suite.port}/"
    byline="true" />
    </target>
    <target name="DeployESBSuitcase"
    depends="param-target-chk, ExtractESBDeploymentPlan, ModifyESBDeploymentPlan">
    <deployESBSuitcase
    esbMetadataServerHostname="${soa.suite.hostname}"
    esbMetadataServerPort="${soa.suite.port}"
    sourceDirectory="${basedir}"
    deploymentPlanFilename="${targetDeploymentPlanFilename}"
    forcedDeployment="true"/>
    </target>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Usage
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <target name="usage">
    <echo>
    ======== Environment =====================================================
    SOA_DA_HOME = ${env.SOA_DA_HOME}
    CLASSPATH = ${env.CLASSPATH}
    ANT_HOME = ${env.ANT_HOME}
    ENVIRONMENT = ${env.paramtarget}
    ======== Properties =====================================================
    basedir = ${basedir}
    SOA Suite server = ${soa.suite.hostname}:${soa.suite.port}
    OC4J instance = ${soa.suite.oc4j.instancename}
    ==============================================================================
    </echo>
    <exec executable="ant" dir="${basedir}" vmlauncher="false">
    <arg value="-projecthelp"/>
    </exec>
    </target>
    </project>
    cheers
    James

  • SOAP Service Endpoint properties configuration

    hi
    i have an ESB SOAP service, invoking a web service which is working fine.but i need to do the same process using Location variable in endpoint properties and also can anyone explain me how to configure Location(URL Format and delimiters), Retrycount and RetryInterval of endpoint prop. can i use the endpoint to redirect my request from one URL location to another baserd on retryinterval.
    thanks in advance
    Thirumal

    hi
    iam getting the following error when i set a service url for Location variable in SOAP Service endpoint property.
    oracle.tip.esb.server.common.exceptions.BusinessEventRetriableException: An unhandled exception has been thrown in the ESB system. The exception reported is: "org.collaxa.thirdparty.apache.wsif.WSIFException: exception during SOAP invoke: Caught exception while handling request: unrecognized operation: {http://serviceone1/types/}getDecodedStringElement; nested exception is: javax.xml.rpc.soap.SOAPFaultException: Caught exception while handling request: unrecognized operation: {http://serviceone1/types/}getDecodedStringElement at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.populateFaultMessage(WSIFOperation_JaxRpc.java:2978) at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.invokeOperation(WSIFOperation_JaxRpc.java:1714) at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.invokeRequestResponseOperation(WSIFOperation_JaxRpc.java:1463) at com.collaxa.cube.ws.wsif.providers.oc4j.jaxrpc.WSIFOperation_JaxRpc.executeRequestResponseOperation(WSIFOperation_JaxRpc.java:1185) at oracle.tip.esb.server.common.wsif.WSIFInvoker.executeOperation(WSIFInvoker.java:507) at oracle.tip.esb.server.common.wsif.WSIFInvoker.nextService(WSIFInvoker.java:430) at oracle.tip.esb.server.common.wsif.WSIFInvoker.nextService(WSIFInvoker.java:447) at oracle.tip.esb.server.service.impl.outadapter.OutboundAdapterService.nextService(OutboundAdapterService.java:184) at oracle.tip.esb.server.service.impl.outadapter.OutboundAdapterService.processBusinessEvent(OutboundAdapterService.java:112) at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatchNonRoutingService(InitialEventDispatcher.java:106) at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatch(InitialEventDispatcher.java:85) at oracle.tip.esb.server.dispatch.BusinessEvent.raise(BusinessEvent.java:1416) at oracle.tip.esb.utils.EventUtils.raiseBusinessEvent(EventUtils.java:105) at oracle.tip.esb.server.service.EsbRouterSubscription.onBusinessEvent(EsbRouterSubscription.java:273) at oracle.tip.esb.s

  • ESB SOAP service endpoint properties cacheConnections

    Hi all,
    Has any body used cacheConnections, end point property.? how does it effect ESB SOAP service response.

    Hi all,
    Has any body used cacheConnections, end point property.? how does it effect ESB SOAP service response.

  • Regarding End point properties in ESB

    Is jdeveloper 10.1.3.3.0 version supporting Endpoint Properties in ESB? i was unable to change even a single EndPoint Property. Iam able to edit that property but it is not reflecting..........can any one please suggest me in this regard???

    Check if the port of ESB in your server is open.
    I think that the port is: 7777
    try from ESB server:
    wget WSDLURI
    if you got the file then the port is closed.

  • Unable to change ESB Soap Service endpoint

    Hi people , i have a problem,
    after creating a soap service , register de esb service on DefaultSystem, i want to call externally using
    "http://host:port/esb/wsil/DefaultSystem/<name of soap service>?wsdl
    everithing works ok , but when i try to change from Jdeveloper the enpoint URL , ESB seems to keep using the old URL in :
    http://host:port/event/DefaultSystem/<name of soap service>?WSDL ..
    If i check on esb control i can se the new "WSDL URL" on the Definition tab of this soap service. But internally in the WSDL generated by the ESB endpoint it keeps using the OLD URL
    causing obviously a:
    "SOAPException: Message send failed: Connection refused"
    if i make that resource unavailable after the change
    The question is .. why i cant change the endpoint url ????
    theres is any WSDL cache or something like in Oracle BPEL PM ??
    i need to restart (i dont try yet )
    please ill wait for any suggestions
    PS: im using ESB 10.1.3.3.0 Build:PCBPEL_10.1.3.3.0_GENERIC_070615.0525

    Hi
    I have similar problems and nobody seems to know the solution. Changing the virtual host and port in ESB console does not resolve the problem thoroughly. It's changing the end point entry but living the namespace URL of the WSDL with old value, for instance my address was: http://localhost.localdomain:8889/ .....servicename?WSDL.
    This prevents it from proper invoking by external clients, you can reach the end point and use the test page but you can't read its wsdl file without adjusting its address by hand.
    I found one solution, it's reinstalling the OAS from scratch and pass the proper name of the server when prompted but what the kind of solution is that? This is obviously deployment problem, the original wsdl file prepared in JDeveloper is used to generate the final wsdl file exposed to external clients but which is the configuration file responsible for that and why the esb console don't change the namespace url too while changing end point?
    This is the bug indeed because it's impossible to resolve from console level.

  • Dynamic service binding in ESB

    Hi,
    I am trying to do dynamic binding in ESB (using service registry key) and facing the following issue:
    1>I have added the uddi Inquiry url in the esb_config.ini:
    uddiInquiryURL=http://ossi-1042.idc.oracle.com:8888/registry/uddi/inquiry/
    2>In the ESB, I am invoking BPEL through soap service. There are 2 BPEL processes, say B1 and B2. I am giving the wsdl location of B1, and in the endpoint properties i am adding the registry key of B2 (so that I can find out if the registry key property is working):
    <endpointProperties>
    <property name="registryServiceKey" value="uddi:797f8d80-fbbf-11dc-a4bb-27e52611a4ba"/>
    </endpointProperties>
    When I run the instance, always B1 is getting invoked, proving that the registry key is not being used and thus dynamic service binding is happening.
    Kindly help me out in this.
    Thanks and regards,
    Pavan

    I tried applying the patch, but it gives the following error:
    OPatch detects your platform as 207 while this patch 6133448 supports platforms:
    0 (Generic Platform)
    This patch is not suitable for this operating system.
    Please contact support for the correct patch.
    ERROR: OPatch failed during pre-reqs check.
    OPatch returns with error code = 150
    I downloaded for the OS I am on, but always the generic patch downloads; i guess this generic one should work for all platforms. Opatch version is 1.0.0.0.56.

  • How to generate a Web Service Proxy for an ESB Routing Service?

    Hi,
    I have a SOAP service behind an ESB Routing Service. I am aware that i can call this ESB Service at the SOAP endpoint which can be found at the ESB Console after registration.
    But, i want to invoke this service using a Web Service Proxy. My understanding is that, i need to use the WSDL generated for the ESB Routing Service to generate the proxy. The WSDL which can be seen in JDeveloper does not have any soap bindings and hence the tool does not allow me to generate any proxy.
    Also, the two WSDLs whose URLs can be found at the ESB Console do not have the soap endpoint properties.
    Can someone help me out on the same?
    Thanks and regards,
    Priya.

    Priya,
    Just take the SOAP endpoint and suffix it with a ?wsdl
    Even the Concrete WSDL endpoint should be having a SOAP endpoint.
    HTH
    Uday

  • Soap Service RetryInterval in ESB

    Hi,
    Can you tell me whether the endpoint properties RetryInterval and RetryCount work on Soap Services also. I have a Siebel Web Service (synchronous) registered with the ESB.
    I want to be able to retry 5 times at an interval of 5 seconds in case Siebel is down.
    What are the steps that I need to take? The process needs to be automated.
    Kindly advice. Also, kindly explain what exactly is retried by specifying this interval? Does this retry occur in case of all exceptions?

    I tried applying the patch, but it gives the following error:
    OPatch detects your platform as 207 while this patch 6133448 supports platforms:
    0 (Generic Platform)
    This patch is not suitable for this operating system.
    Please contact support for the correct patch.
    ERROR: OPatch failed during pre-reqs check.
    OPatch returns with error code = 150
    I downloaded for the OS I am on, but always the generic patch downloads; i guess this generic one should work for all platforms. Opatch version is 1.0.0.0.56.

  • Calling ESB flow to ESB flow

    as anyone been able to call one ESB flow (flow B) from another ESB flow (flow A)using the SOAP Service Adapter?
    I would like to be able to simply specify the "Location" property of the SOAP Service adapter in flow A after deployment, where the "Location" would be the service endpoint address of flow B. However, even after setting the proper virtual host information, I have not been able to execute this successfully. The only way I could find was to specify the runtime WSDL address in JDeveloper (http://....?wsdl) of flow B, and then deploy. However, this is a bit inflexible if you simply want to chnage the address of flow B without having to redeploy.
    Any ideas would be greatly appreciated..

    Can you describe how you specified the RT WSDL address and what you set it to? You should look at the "Endpoint Properties" sample in the samples zip on http://otn.oracle.com/goto/esb if you haven't already.
    1 thing to note where this implementation differs from BPEL is that this is ONLY for the service RT location and NOT the actual WSDL itself so in your case, the SOAP SVC will continue to try and access the original WSDL location at startup which may not be available. The best practice for dealing with this is to import the external WSDL file into the project so it accesses it from the local webdav/slide repository.

  • Using UDDI to create reusable ESB/BPEL artifacts

    I would like to make my ESB artifacts reusable by removing end-point details from ESB configuration and having that kind of detail in an UDDI. It does not seem that the ESB has the ability to do UDDI inquiry's in runtime. Does anyone now of a work around? Have played around with the endpoint properties beta feature in Jdev to achieve some sort of abstraction, but this is not good enough (http://download-east.oracle.com/docs/cd/B31017_01/integrate.1013/b28211/adapter_services.htm#CHDJJDHB)
    From BPEL there seems to be a way of at least using UDDI service keys (http://www.oracle.com/technology/tech/soa/soa-suite-best-practices/reusable-soa.html).
    Any input would be much appreciated.

    Hi
    We're planning an enhancement that will enable ESB to query UDDI for service endpoints using the uddiServiceKey, similar to what we provide with BPEL.
    If you send me an email on this subject I'll inform you when the enhancement is available.
    Thanks
    Dan Hynes
    [email protected]

  • Custom SOAPAction for Oracle ESB?

    Hi, I was wondering if it is possible to customize the SOAPAction header that Oracle ESB expects for its endpoints. Thanks!

    I assume you mean Outbound from ESB using an ESB SOAP Service. Are you referring to HTTP header or SOAP header? SOAP headers can be manipulated using ESB header support as shown on otn.oracle.com/goto/esb while HTTP headers cannot except for basic authentication using endpoint properties in ESB Control.

  • Async ESB Process

    Is it possible to invoke an async process as you can in BPEL and wait for a response as in BPEL.
    I have an async process that may run for 30 mins, this is too long for a sync process so i want to call it asynchronously and wait for the response. When I call a async process it has no reply.
    any help appreciated.
    cheers
    James

    Can you please help me understand this better.
    As u said an asynchronous process connected to ESB is being called.
    There would be one Routing Service for the initiate operation.
    How to implement the callback from this process to ESB and then in turn to the calling process.
    to implement this callback we would have to create another SOAP service in ESB project mapping it with the onResult operation and also a routing service of similar nature.
    this has effectively created 2 ESB endpoints but instead of 1 SOAP service there are 2 SOAP services.
    Hence on invocation the calling process never gets the response back
    Is my understanding correct.
    in short i want to understand how can i connect an async BPEL process to my ESB in a way that the calling process can invoke and then get a callback of the result.

  • Inbound File Adapter

    The requirement to trasfer a file from one location to another location after removing some of colomns from source file using Trasform activity. Simple process contain step; File Inbound, Transform, File Outbound but problem with the file size.
    I have created File Inbound adapter partner link that polls on a directory for every 30 min for new files. We have one file , size 400 MB containing 960,000 records.
    The process is thorwing errors , outofmemory error JVM heap memory error.
    First of all, is anyone dealing with this size of data ? can Transform (XSLT) activity handle 960,000 records, each record has 10 columns.
    We are using Oracle SOA 10.1.3.3 latest patch on Windows 2003 server.
    Please advise ...

    Hi.
    bpel.xml only applies to BPEL Process Manager. If this is the case, you can configure a logical name, and set its value it in the descriptor page of your BPEL process in the BPEL Console.
    Now, when we talk about ESB, when you define a logical name, you set its value using the endpoint properties of the adapter. If you're using JDev 10.1.3.3 (or 10.1.3.1/10.1.3.2 in preview mode) you can set the endpoint property at design time in JDev. At runtime, you set the value of the logical name in the properties tab of the adapter located in the ESB console.
    Denis

  • Oracle AQ - dequeue multiple threads

    Hi,
    I have a single consumer AQ queue containing 1000 records. I have a bpel process that dequeues from the queue and performs some action.
    I need to have 10 processed polling from the queue at a time and performing the post xyz task. When any one of them is done, the next record can be dequeued.
    Thanks,
    Rosh

    i have the same problem with my proxy service on the osb which is polling an aq.
    when 100 messages are in the queue and it starts polling it will dequeue them all in 1 thread and will hammer the backend service.
    i couldn't find any setting on the aq jca itself to control this. my current solution is osb based and we use throttling on the business service to control it a bit.
    in the old esb you could have a setting like minimumDelayBetweenMessages to control this, but i already decompiled the aq adapter from the osb but can't find any interesting setting anymore
    see : https://blogs.oracle.com/kavinmehta/entry/aqapps-adapter-endpoint-properties for the old settings which worked for us

Maybe you are looking for

  • Diff b/w snapshot baselines and AWR reports

    Hi All, Can anyone tell what is the difference b/w snapshot baselines and AWR reports. I have gone through couple of articles and i feel both are same, however given different names. Am I correct? Thanks

  • Out of Range problem

    I have a G5 dual 2.3 with a Sony monitor (analog) connected to the DVI port by the converter that came with the Mac. I have a problem in that certain games set the default resolution to a setting that is out of range of the monitor. Specifically, the

  • My Creative Could isn't coming up

    I have it installed but when I click on it it wont come up. I've tried to troubleshoot it but that doesn't do anything.If your wondering when I try to lunch it nothing no sign of it popping up comes. now I haven't tried uninstalling it but if there i

  • I set up ios 5 beta 3 and it wont work it keeps saying unable to active ipod i want to know whta is goin on?

    I need help or send my ipod to the Apple company and change my ipod

  • Wrong target data after mapping with attribute move

    Hi, We have a load method type Load from Datastream. In the mapping customizing of this method, we have defined a MOVE operation for getting 'Company' from attribute of 'Company code'. This has been working absolutely fine but suddenly its creating s