I have to implement an adapter that does not immediately routes messages to a JMS queue, but instead waits and gathers messages with the same id, concatenates them to a list and then sends the list as a single message to the queue. Is this technically possible in the Oracle OSB?
Oracle OSB gather messages with same id and send them to a JMS Queue
241 Views Asked by Alex At
1
There are 1 best solutions below
Related Questions in ORACLE11G
- Building an sql execution plan history
- how to update the date field for this specific condition using oracle query?
- Insert Into SP in Oracle Sql Developer
- Trying to update an ORACLE 11G DB with C# Asp.net using Oracle Managed Driver.
- Require tool to trace the LInq Queries in Oracle
- Oracle 11g : staging table
- Persist the value of one column in two simultaneous update
- Trigger From Oracle to SQL SERVER
- how to check succeeded and failed sending a message in gsmcomm library
- How to install Oracle XE for windows32 properly?
- use select under case statement
- Merge table in Oracle with delete condition refering to source table
- Oracle 11g to PostgreSQL - CREATE TYPE OBJECT
- Import dmp file created in Oracle 11g (WE8ISO8859P1) to Oracle 11g XE database (AL32UTF8)
- Changing start date for system jobs related to automatic statistics collections in 11g
Related Questions in MIDDLEWARE
- Why doesn't my connect middleware pass forward?
- Proper calling of next callback in express get()
- Stop middleware pipeline execution in KOA
- Laravel 5.0 custom 404 does not use middleware
- Middleware between passport and angular
- Slim PHP Framework middleware custom URL filter
- How to rely on other middlewares in express?
- How to store session data using Owin hosting?
- Laravel 5 : passing a Model parameter to the middleware
- Laravel 5 route same urls login or not
- How to respond in Middleware Slim PHP Framework
- Rendering an "internal" Rails controller from a middleware
- What is wrong with Nodejs?
- Django 1.8: ImproperlyConfigured: Module "django.contrib.auth.middleware" does not define a "SessionAuthenticationMiddleware" attribute/class
- Laravel 5 - Middleware always restricts access while being logged in
Related Questions in WEBLOGIC11G
- Oracle Weblogic server - get logs of requests served
- WebLogic Console - No application files exist when redeploying application
- Integrated weblogic server is not running
- How can I find the root cause of my never ending maven dependency hell?
- Weblogic Domain Configuration Wizard replaces forward slash (/) with back-slash (\) while creating domain
- Weblogic jms distributed topic
- do we need the firewall port open from App server to Webserver
- Exhausted ResultSet Exception while using two phase commit in Weblogic
- Stage managed node
- How can I solve error 403 (Forbidden) after deploying ADF Application without any security configuration?
- How to take memory snapshots at regular interval for jrockit?
- Reflection much slower than normal
- Trinidad API usage caused an exception on weblogic managed server in my case
- javax.jms.InvalidSelectorException when calling javax.jms.QueueSession.createBrowser() in weblogic12c
- Validate user entered weblogic location
Related Questions in OSB
- XQuery XML insert
- In OSB can you change the proxy service or business service WSDL using a Customisation File?
- Get all the child elements of parent node using xpath expression OSB
- OSB Binary Data to text
- From Jax-ws client, how to invoke an OSB proxy which has ws policy Auth.xml enabled
- Local Proxy Service Testing
- What is the best style of integration considering a large volume of transactions and guaranteed delivery?
- what are the real time benefits of migrating to service bus 12c from 11g for an enterprise application?
- Maven:I am mavenizing oracle service bus application using jdeveloper 12c
- Error 403--Forbidden - web service error when I use SOAP UI
- osb project deployment failing due to java.lang.OutOfMemoryError: Java heap space
- How to create an async web service using jax-ws and OSB12c
- Getting distinct Values from XML in java, OSB, XQuery
- Deploying a spring web service or another framework web service on the Oracle Service Bus
- How WSDL is Used in Oracle Service Bus?
Related Questions in ORACLE11GR1
- ORA-00923: FROM keyword not found where expected - LISTAGG
- I have created a trigger where data cannot be edited on Saturday and Sunday on emp table
- Parallelize oracle union query questions
- How to execute query when oracle starting up?
- How to fetch merge data in Oracle
- Can somebody please push me in right direction
- Issue with Oracle bind variables not using index properly
- SQL DUMP missing information in a column
- installing oracle fusion middleware(11G) in windows 8(Formsweb.cfg location issue)
- Set default value as column value
- How to execute the oracle 11g SP which resides in the package using EntityFrameworkCore 5
- Oracle: logical operator AND treated differentyl in 11.1 and 11.2
- java.sql.SQLRecoverableException:Closed Connection
- generate date range per year basis
- How can I concatenate column data into string separated by ","?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If you are doing a batch processing it is possible because you know that last message has arrived and you are ready for consolidation.
One way - Dump all the messages in to a file/db, read the file/db and do necessary transformation that is required and send to the queue.
In real time it won't be possible until you know the identifier for the last message, after that consolidation has to start.