Aggregating output of two BS in OSB Split join

Hi,
i am using split join to invoke two BS and after the each invoke activity in parallel branch i have placed assign activity and assigning output variable of in voke to reply activity output variable response.parameter . However in o/p i am getting response of only one BS. can any one help on how to aggregating output of two BS in OSB Split join . my output is coming like this
<soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
<soap-env:Body>
<ns2:NewOperationResponse xmlns:ns2="http://www.example.org/SjWsdl/">output</ns2:NewOperationResponse> -------->this is o/p of one BS. But i want to display O/p of two BS
</soap-env:Body>
</soap-env:Envelope>
thanks in advance..
Edited by: 11207106008 on Jun 26, 2012 10:11 PM
Edited by: 11207106008 on Jun 26, 2012 10:12 PM
Edited by: 11207106008 on Jun 26, 2012 10:13 PM

Suppose you saves the response of each BS in variables: $response1 and $response2
then you need to configure the replace action after the parallel branch like this:
Replace node content of . in variable <variable name of reply variable> with <Expression>
Where you can provide in <Expression> a simple XQuery expression to combine the two variable contents. (Choose a root node of your choice, I have used AggregatedResponse)
<AggregatedResponse>
{$response1, $response2}
</AggregatedResponse>

Similar Messages

  • Calling two Business service using split join in osb

    Hi,
    While trying to call two business service using Split Join in osb i am getting selection failure message in Bpel em console. i am using invoke activity to invoke the BS and assign to assign the input. in the assign i am assigning *$request.payload/input* to input.payload . In the em console i am getting input like this
    receiveInput
    Jun 19, 2012 5:05:45 PM Received "process" call from partner "bpelprocess1_client"
    <payload>
    <inputVariable>
    <part name="payload">
    <client:process>xxxxx</client:process>
    </part>
    </inputVariable>
    Assign (pending)
    Jun 19, 2012 5:05:48 PM Error in evaluate <from> expression at line "65". The result is empty for the XPath expression : "/client:process/client:input".
    <payload>
    <client:process>xxxxxx</client:process>
    Jun 19, 2012 5:05:48 PM The following exception occurred while attempting to execute operation copy at line 63
    <payload>
    <bpelFault>
    <faultType>0</faultType>
    <selectionFailure/>
    </bpelFault>
    Jun 19, 2012 5:05:57 PM "BPELFault" has not been caught by a catch block.
    Jun 19, 2012 5:06:00 PM The transaction was rolled back. The work performed for bpel instance "650002" was rolled back, but the audit trail has been saved for this instance.If this is a sync request, please resubmit the request from the client. If it is an async request, please recover from the recovery console by resubmitting the invoke message.
    Can anyone help on this?
    Thanks in Advance...

    maybe this one helps a bit, it's the same pattern
    http://www.xenta.nl/blog/2011/07/03/oracle-service-bus-implementing-aggregator-pattern-by-use-of-split-join/
    if you're using a dynamic split join easiest way is to do something like
    assing <yourresponse/> to $response
    at this moment your assign an empty placeholder to the response variable
    now you go into the for-each looping and for each iteration you need to insert the response of your bpel call in the $response variable
    so in the looping as last step you add something like
    insert $mybpelresponse/rootelement into $response/yourresponse
    with the insert it will insert the reponse 1..x times into the $response variable (so actually aggregating all the responses for you)

  • OSB Split Join Repeat Until Question On XPath Condition

    I'm trying to use OSB File Transport to stream a very large XML document file into a service which will split the file into very many small XML documents. So, given a file like:
    <BookStore>
    <Book></Book>
    <Book></Book>
    ... (many more books)
    </BookStore>
    In the split join I want to use a 'repeat until' to process each Book until there are no more Books in the BookStore. Here's my question: What is the correct XPath expression to use as the Repeat Until terminating condition? (I'm an XPath novice.)
    Thanks for your help!!!

    Hi,
    Based on what I understood, you should be using a for each loop with the conditions as follows:
    Within the Split Join flow
    for each ( counter variable from 1 to Count (xpath of book) ) --> For my example it was count($request.parameter/sjpoc:Orders/sjpoc:Order) replace this with your xpath.
    - do your logic
    Snapshot just in case @ http://dl.dropbox.com/u/19901533/sj_foreach_snapshot.JPG
    Based on this the split and join would happen for n (based on count) number of Book tags.
    Let me know if my understanding is incorrect.
    Thanks,
    Patrick

  • OSB SPLIT JOin How to verify it is working parallel

    HI ,
    I am using Oracle service Bus 11.1.1.3 and I have following Requirement
    PS 1 : Receives the request ,validates the input and calls proxyservice 2 (using publish action )
    PS 2[Sb ] :Receives the req from Proxyservice 1 queries a DB using the DB Dapater and obtains a list of subscribers for the request .
    Each item of the list contains information about the subscriber metadata(data format,JMS endpoint) .For Each Subscriber calls Proxyservice 3 which the subscriber meta data info and the actual request received .
    PS 3 [SB ]: Receievs the subscriber meta data and the actual request XML .depending upon the format specified in the meta data for the subscriber performs transformation(using xquery) and post the transformed xml to the subscriber specific queue [JMS ].
    Proxyservice 3 is common for all subscriber depending upon the metadata different Xquery needs to be called for different subscriber [this is achieved using Dynamic xquery ].
    My requirement is i need to call Proxyservice 3 in parallel for all subscriber .
    OSB doesnot out of the box provide action for spanning multiple threads of a PS from another PS .
    I have tried using Split join .Have created a Split Join which will loop through the list of Subscribers returned in PS2 and call PS3 for Each loop (have specified paralle =yes in split join ).
    How do I confirm that PS3 is called in parallel for all the subscribers .
    Is there any other way I could implement this requirement of spanning multiple threads ?
    Thanks a regards ,
    Yamini

    HI Abhinav ,
    Thanks a lot for the help .I had tried with adding log actions at various places.
    Added a log action as the first action of the for loop (split join )
    Start of PS3 and End of PS3 ..
    Please find some of teh readings .
    Reading 1
    for loop ******************************: 2011-09-01T16:24:12.825+01:00
    for loop ******************************: 2011-09-01T16:24:12.965+01:00
    for loop ******************************: 2011-09-01T16:24:12.965+01:00
    for loop ******************************: 2011-09-01T16:24:13.137+01:00
    progate Input Time Stamp ::::: 2011-09-01T16:24:12.965+01:00 ODM
    Progate Input Time Stamp ::::: 2011-09-01T16:24:13.028+01:00 oye
    Progate Input Time Stamp ::::: 2011-09-01T16:24:13.121+01:00 hade
    Progate Input Time Stamp ::::: 2011-09-01T16:24:13.199+01:00 PAM
    JMSSSSS Posting: 2011-09-01T16:24:13.043+01:00 odm
    JMSSSSS Posting: 2011-09-01T16:24:13.043+01:00 oye
    JMSSSSS Posting: 2011-09-01T16:24:13.137+01:00 hades
    JMSSSSS Posting: 2011-09-01T16:24:13.199+01:00 PAM
    Reading 2:
    Calling the SplitJoin: 2011-08-31T17:54:20.914+01:00
    ending the SplitJoin: 2011-08-31T17:54:20.929+01:00
    THE COUNT ******************************: 2011-08-31T17:54:21.662+01:00
    THE COUNT ******************************: 2011-08-31T17:54:22.021+01:00
    Prooooooogate Input Time Stamp ::::: 2011-08-31T17:54:23.254+01:00 odm
    Prooooooogate Input Time Stamp ::::: 2011-08-31T17:54:23.269+01:00 pam
    JMSSSSS Posting: 2011-08-31T17:54:23.285+01:00 odm
    JMSSSSS Posting: 2011-08-31T17:54:23.363+01:00 pam
    As far as my analysis goes PS3 is executed in parallel but it is not instantaited at one go (all threads in parallel ) .
    I am not able to conclude the level of parallelism achieved using Split join ..
    Do let me know if I am missing anything
    Yamini

  • OSB Split-Join problem

    I am a bit confused as to how to design a split-join via Oracle workshop for weblogic
    I have imported a WSDL and can define how to decode my incoming request so that I can issue multuple service requests via a Parallel node
    When I try to configure the Invoke Service node - I can't sem to reference anything other than the WSDL I started with ???
    I thought I was supposed to be able to access any other Business (or Proxy) service (or even another Split-Join)
    Don't know if this is clear enough for anyone to be able to help

    When you configure Invoke Service you can choose any WSDL-based business or proxy service operation. Under Input Variable and Output Variable tabs you set message variables of appropriate types.

  • Dynamic Split Join:Parallel flow using OSB

    Hi,
    I am implementing a dynamic split join in OSB,where in the for -loop i am invoking a database adapter.
    If I select parallel='yes' in the for-loop settings, I get a random number of records from the database as an output.
    While on the other hand, on running the for-loop sequentially, i get the exact number of records i am expecting.
    Could anybody figure out why is this happening?
    Regards,
    Tarun

    If I understand correctly, this is what you are doing:
    Configure a For loop based on a repeating element in source XML (for ex. for each customer id in xml message).
    Inside each loop you are making a DB lookup and getting one record for each element (for ex. customer details of each customer id)
    Finally you are aggregating them in the same variable (join)
    The problem that you see is that if you do it in parallel then you do not see details of all customers in the out variable?
    If yes, then can you please let me know how you are updating the details of each record in the out variable.

  • Split joins in OSB

    Hi,
    Actually i do have a requirement where i need to call 2 business services simultaneously(in parallel) in OSB(Like using Flow activity in SOA) using split joins. Is it possible to call 2 business services parallely in OSB?
    Can any one please help me out with any blogs or steps that i can follow to achieve this.
    Your help is appreciated.
    Thanks,
    Naveen

    That is not entirely true. Split Join itself is based on single operation, i.e. the input to split join will be a single message, but within the split join you can invoke multiple services in parallel. You can either dynamically decide the number of parallel flows at runtime (similar to FlowN) or you can have static number of parallel calls (like Flow activity of BPEL) within split join.
    In case you want to call two business services in parallel, create a WSDL(if needed, in most cases you can reuse the WSDL of the Proxy Service itself for SplitJoin as well unless you are doing enrichment within Proxy before calling business services) for split join which has request message which contains data for both business services. Within the split join you can configure calls to both business services in parallel and you can also add transformations for each business services in respective branches.
    You can than aggregate the response from both services if needed and return that as a response of split join.
    Here is an example of Static Split Join:
    http://www.xenta.nl/blog/2011/07/03/oracle-service-bus-implementing-aggregator-pattern-by-use-of-split-join/

  • Hi, when I upload music into itunes from a cd it sometimes appears in itunes as two different albums and split up the music in 2 or even three albums....how can i merge these albums...this is particularly true when one album may have different composers?

    Hi, when I upload music into itunes from a cd it sometimes appears in itunes as two different albums and split up the music in 2 or even three albums....how can i merge these albums...this is particularly true when one album may have different composers?

    Generally setting a common Album title and Album Artist will fix things.
    For compilations that aren't, select all tracks, Get Info, and on the option tab set Part of a Compilation to No. If it already says No tick the box alongside, then click OK.
    For deeper problems see Grouping tracks into albums.
    tt2

  • How can I Route to two proxies or business services with out split join

    Hi,
    How are you?
    I´m trying to use a proxy to invoke 2 other proxiers or more at the same time but when trying to build a Split Join is giving an Error about the Security that is in the WSDL which is WSSecurity, so far I think that SPlit Join can´t handle this and is a must right now so I´m trying to figure out how to Route a Message to two proxies or business services doesn´t matter if it is in a secuencial way.
    Hope somebody knows what to do.
    Kind Regards,
    Gerardo J

    Hi!
    Thanx for the response, That´s the way I´m implementing it at this moment and is working fine.
    Thanx in Advanced!
    Kind Regards,
    Gerardo J

  • Hetis 865GV video output to two monitors

    Does anyone know how to set the Hetis 865GV to output simultaneously to the VGA port and to either DVI or S-Video to display the same output on two monitors?

    well i dont have an 865 , but that is handled by my video card.
    try reading up in the features of that, using a short alt f something key to turn on 2nd display. may have to set it up under video card propertes, an click a check box under tv.

  • Smartform output in two different printers

    Hi Experts,
    I want to take the Smartform output in two different printers. printers has been added in the table <b>pkhd</b> .
    please anyone suggest how to pass these two in the smartform function module?
    Thanks in Advance
    Kavya Deva

    Hi Kavya,
      You can execute the Smart form Function Module. It will then pop-up a dialog box asking for an output device. There you can specify the Output device type and go for Print or Print Preview as necessary.
    Manoj

  • For each sample example  in OSB without Split join

    Hi,
    Any body have sample example for For each in OSB without Split join......Thanks in advance

    I know this is an old thread, but I just ran into this same problem. Wow! That's a crappy 'feature'. I wasted 4 hours this morning on this thinking it was me doing something wrong in my xpath, but nope, you need to cast the counter to an int .......
    I hope they fix things like this in the next major release.
    Thanks for the solution.

  • OSB Split Jooins

    hi all
    i have one doubt,if you guys know this please respond.
    Split-Join – branches from the main execution thread of the OSB message
    flow by splitting the payload into a fixed number of branches according to the
    configuration of the Split-Join at design time.
    my doubt is in split join the payload is divided in to parts called branches , we are processes these submessages concurrently and then aggregates the responses into one
    return message (join),in this case if any branch fails where it will go
    1.whether it will go to the error handler to log error ,if we are handling any errror handler (or) it will process with based on other branches success response then it will return message (join).
    which one is correct?
    please suggest on this......
    Thanks
    bala

    You need to implement a proper error handling mechanism otherwise the error from one node will propagate in the whole flow.
    Please refer to the following blog to get more idea on fault handling in split join
    http://www.rubiconred.com/blog/dynamic-split-join-in-osb/

  • Map the Output of Two BLT's to an iGrid?

    Hi all,
            Can i map the the output of two BLT's to one iGrid. Is it possible??
    Thanks,
    Sushma.

    The iGrid, as well as all of the applets, can only be fed by the results of a <b>single</b> query template.  Since an XacuteQuery template may only call <b>one</b> transaction, then there would be no way to have the iGrid call your two current BLS transactions.  An AggregateQuery calling two XacuteQuery templates that point to each of your transactions would work only if the two datasets were the same shape (meaning that the document columns from each trx were identical), but I would encourage you to create an additional transaction that calls your current two.  This way you can use each one independently as well as together, providing you with the benefits of reusability.  The iGrid will be able to merge two separate Rowset documents together if they are the same, sort of like how a union works with a relational database query.
    Regards,
    Jeremy Good

  • Split-Join, unable to set SOAP:HEADER in OSB at Invoke Service Component.

    Hi Experts,
        i created a Split-join for parallel processing and invoke third party services, but this service requires some mandatory elements in soap:header like WS-Addressing and, WSA-TO and some security infomation, but i don't know  how to pass header in invoke service step. Please help me to setup Header for Invoke services in split join.
    Please help me to resolve this issue.
    Thanks
    Ankit

    see this :https://forums.oracle.com/thread/951618
    not the most fancy way, but you can create some sort of  wrapper proxyservice in front of your business service to make it work

Maybe you are looking for

  • Lines printing in edited photos on 3 HP printers

    We have three HP printers - one F4280 all-in-one and one 990cse connected to the same Vista computer and one 990cse connected to an XP. They are all printing horizontal lines in portrait view edited photos and vertical lines in landscape view. The li

  • Satellite Pro A100-848 - Which AC adapter I need?

    Hello, can someone tell me what AC Adapter I need for the A100-848 . Thanks

  • How to check the way table S066 is updated through VKM3

    Hello Experts! I'm debbuging transaction VKM3. This is used to release open orders. Within this functionality infostructure S066 (credit managment for open orders) will be updated. My problem is that I can't see the values it's using to update the ta

  • IPod problems after Flashing with 1.1.1

    I downloaded and flashed my iPod with the 1.1.1 updater and went as far as to completey wipe the iPod and reload everything. I did this and the iPod has been working fine. Well I got some new songs the other day and went to plug the iPod into the USB

  • Bad character set in dump file?

    (Sorry for re-posting this question; posting in in the "Globalization" section was apparently a bad idea as nobody replied.) Hi, IMPDP-ing a dump file that someone has handed me over into Oracle XE results in special characters, i.e. Umlauts, being m