How to use the b2b to send and recieve HL& message  without SOA Composite

Hi Guru's
We are doing HL7 transactions at our end. We have following use case
Inbound partner gets the HL7(ADT) message and then without any transformation we wan't to send the message to another partner ( set up in the same b2B). I understand I can do this way
b2b--> SOA Composite--> B2B
but we don't want to use the SOA composite here as it is simple passthrough ( i.e no transformation of data is done).
I understand B2B when it gets the message puts in IP_IN_QUEUE
Can b2b( remote tp) read directly from IP_QUeue and send it.
I mean it has this strcuture
Inbound tP--> HOST--> Outbound TP
by doing this we will have no need to create the SOA composite. I hope this should be possible. I tried using the listening channel but outbound TP did'd got any message. Can you please guide me in all the steps I need to follow in order to set this up?
Any pointers will be highly appreciated as this will eliminate the SOA composite from the picture.
Regards
Sahil

Hi Sahil,
Yes, it can be done using HUB mode implementation. Please refer -
http://blogs.oracle.com/oracleb2bgurus/entry/implementing_oracle_b2b_11g_as
A sample configuration is also provided there (for HL7 itself).
Regards,
Anuj

Similar Messages

  • I am using systec usbmodule1 to send and receive CAN messages , is any one have tried this in labview?, if yes can you send me the code thanks

    i am using systec usbmodule1 to send and receive CAN messages , is any one have tried this in labview?, if yes can you send me the code
    thanks
    Solved!
    Go to Solution.

    Hey,
     All of our CAN drivers have been written for National Instruments' CAN hardware (referenced here : http://digital.ni.com/public.nsf/allkb/E2C6ED025C7​98C5586256F4E00520448 ). Thus, you will have to code all your communication manually, unless Systec provides a LabVIEW driver. There might be various dll files that Systec provides for communication, which you will be able to access through LabVIEW. Take a look at the Call Library Function Node, which can be found from the Functions Palette under Connectivity -> Libraries & Executables. Here you can call a dll file, and also the individual functions within that dll.
    I would suggest posting your question either to the LabVIEW forum, as previously mentioned, or to the CAN forum found here : http://forums.ni.com/ni/board?board.id=30
    Justin E
    National Instruments R&D

  • I don't seem to have the option to send and recieve SMS

    I don't seem to have the option to send and recieve SMS.  There are no options under "Settings"/ Messaging.  I used to be able to about a month ago or so but it has disappeared...

    Sorry, still no go.  I've even checked to make sure "pop ups" aren't blocked on either device.  I'm signed into iCloud, have the same wifi connection on both, Bluetooth is on, on both....but no pop up message on the iPad received yet...

  • Airplay disconnecting when sending and recieving a message

    I use Airplay on my iPhone to stream music from the music app to my Apple TV. When sending and recieving a message over Skype or Facebook, my phone disconnects from Airplay, pausing the music.
    Is this a common issue, and are there any known fixes, or do i just have to wait for Apple to fix this in a future update?

    That is silly - Facebook message notifications are tiny.  You can't provide some vague hand waving dismissal of the problem and blame network throughput.
    I have the same issue - it's obviously a bug with iOS or Facebook.  Airplay shouldn't disconnect every time a new message arrives.  If I don't have Facebook open the same messages still arrive in the background and airplay works fine.
    The issue is specific to a foreground app receiving notifications and then Airplay craps out.
    Come on Apple, fix this!

  • LG Vortex sending and recieving picture messages

    This is my first smartphone and I am to able to send or recieve picture messages. It just says sending or downloding but nothing happens. Can anhyone help me please?

    Hello, what I recommend doing is a battery pull.  To do this, please:
    Power the device off.
    Remove the battery.
    Let the device sit for 15 seconds.
    Replace the battery.
    Power the device back on.
    Now you can proceed with your task.

  • I Can Send and Recieve Text Messages But It Does Not Appear

    Hi Everyone,
    I can send and receive text messages but i can't seem to find it anywhere on my phone. There is a notification that I have new text messages but I can't find my new text messages.
    Hoping for someone that can help me with my problem.
    Thanks!

    You can find it in Blackberry Hub. Further this will help you http://docs.blackberry.com/en/smartphone_users/deliverables/47561/mwa1336589935052.jsp
    Hit Like if this post found useful

  • How to use the method calendar.getTimeInMillis() and setTimeInMillis(bb)

    I have met some problems in writing my programme,I want to know what the time is after every 20 minutes so have written some codes as below ,but the compilar warned me that there are some errors in them ,and I don't know how to use them correctly ,can you help me?
    Thank you very much!
    the code is:
    begin=datime+" 00:00:00";
    Calendar calendar=Calendar.getInstance();
    DateFormat df = DateFormat.getDateInstance();
    Date start=df.parse(begin);
    calendar.setTime(start);
    long aa=calendar.getTimeInMillis();
    calendar.setTimeInMillis(aa);

    Hopefully the following snippet of code will help you out (note that the Date class seems more appropriate for what you need to do):
    import java.util.*;
    import java.text.*;
          String begin="00:00:00";
          SimpleDateFormat df = new SimpleDateFormat("HH:mm:ss");
          df.setTimeZone(TimeZone.getTimeZone("GMT"));
          Date start=new Date();
          try {
             start=df.parse(begin);
          } catch (Throwable e) {
             System.out.println("Invalid time format");
          long aa=start.getTime();   // to get the time in milliseconds
          System.out.println(aa);    // just to see what the answer is (should be zero)
          start.setTime(aa);         // to set the time in milliseconds
    ...V.V.

  • How to use the built-in camera and mic for commercial video conferencing

    I would like to use the camera and microphone to join a commercial video conference - not iChat. How do I do that?

    Hi
    Dont know, you dont say which commercial video conference software is involved.
    Tony

  • How to use the Time Variants PYTD and Prior Year Annual?

    Hi,
    We have a time dimension which has the generic columns i.e Month, Year.
    We need to calculate the Time variants for the Facts Say Sales. I was able to calculate the Prior Month, Current YTD
    I have some doubts regarding the other variants:
    1. Prior Year : Does this include the Prior Year Annual?
    2. Prior YTD: How to calculate it?
    Somehow I am getting the same results for PYTD and Prior Year.
    The formula used are :
    Prior Year:
    AGO(Sales, Year, 1)
    PYTD:
    AGO(Sales CYTD, Year, 1)
    Has anybody encountered similar issue?

    I assume the Sales measure is a monthly measure. The Prior year calculation as I described will give you the sales for the same month in the previous year when selecting month in your report. When selecting year it will add up all months of the prior year until now and you will indeed see the Prior year YTD.
    If you want to see the total sales for the previous year you have to use the same calculation as 'Prior year' and map it to the year level of your time dimension. This will work as a 'partition by year'.

  • How to use the lcds in flex and how use the messageing serviecs in blazeds ?

    I have a problem with messageing servies in Blazeds i used the romte and proxy very well but messaging services ?

    Hi
    Dont know, you dont say which commercial video conference software is involved.
    Tony

  • TS2755 why can i only send and recieve text messages from other iPhones whith my new iPhone 5?

    why can i only text between other iPhones whith my new iPhone 5?

    Hello i need help! My text are only getting to iphone users and some other people without them but some non iphone users are not getting my text?

  • How to use the palette or drag and drop functions in netbean?

    Is there anyone who can help me out on using drag and drop function in netbean to design GUI inteface..??
    Is palette is the tool that can be used to drag and drop.??
    thank you in advance.

    I actually really like the GUI builder in netbeans. I used to be a big eclipse user so I am very familiar with coding GUIs by hand, and most of what I do involves GUI's or at least swing.
    At first I hated netbeans, I hated that I couldn't edit the code most. Then I decided to take a deep breath and really examine the issue. What I discovered is that most of the edits I wanted to make but couldn't really weren't the right way to be doing it in the first place, for the rest the code is actually really easy to change you just have to know how.
    Now my palette is huge, probably about 250 objects in it organized into sections that work for me. Basically if I want a object to do something that is not already in the palette I simply write a new object and add it to the palette. I started small like with rounded buttons/progress bars, and as I got comfortable I now have some fairly advanced objects like grids, isometric grids, alpha composits, an animated hourglass countdown timer, and an animated "loading/activity" indicator that is not tied to a progress indicator.
    The main reason I stuck with the netbeans drag and drop GUI builder is it's layout manager is really a very nice layout manager, you couldn't pay me enough to go back to eclipse or codeing GUIs by hand, as I can now do in one day what used to take me several weeks.
    So what I am saying is stick with netbeans and the drag and drop, it sucks at first, but once you get to a point where you are comfortable with it and adding to the palette it will become a great tool.
    JSG

  • HT1976 I recently downloaded the 6.1.2 update and after the update was installed i lost the ability to access my cellular data (safari, imessage, facetimeand similar applications won't work) and the ability to send and receive picture messages. what happe

    i have already tried reseting the phone in every way possible several times as well as toggling different settings that has to do with the use of such things but nothing works. i've even called the support line for my company but they basically had me do everything i had already done over again.

    Is your storage too full?
    Check Settings > General > Usage and make sure your available space is absolutely no less than 10% of your device's total space.

  • I cannot send and recieve text messages to a straight talk phone

    When i  send a text message to a phone on straight talk, i get the error that "it is not registered with iMessage". I can communicate with this phone with my iPhone with no problem. how do i register? and why? My iPad is only using Wifi and has no cellular service, but communicates great with an iphone.

    The iPad doesn't do SMS text messges which are necessary to send messges to a regular phone.

  • Is there a way to send and recieve text messages from my pc

    I want to be able to see the texts that come up on my phone with my PC because I do not always have my phone out. Is this possible. I know that mac's are able to get their imessages but can you do the same with a PC?

    No Sir.

Maybe you are looking for

  • HTTP Adapter POST

    Hi Can anybody point me on How to configure HTTP receiver adapter. I have gone through SAP help library on XI and configuring HTTP receiver adapter topics but what I am looking for is specific weblog on HTTP receiver Adapter configuration as I have a

  • Photo App does not display all photos

    Running iOS 7.0.4 on an iPhone 4S. The new Photo App does not display all photos properly. All photos show up as thumbnails. However, when you tap on some of them, only a blank page is displayed. The rest is fine. This issue started after the upgrade

  • How to create margins to ALL pages automatically?

    Hi guys. I need a help, then I will be ablo to do my work without any troubles. So, I need to understand 2 things. I hope you will easly help me. So... 1) I wonder how can I change a margins in my document after I set my settings in frist time. I mad

  • MDVEX table in order creation (VA01)

    Hi, Can anybody let me know , where does the table "mdvex" gets populated from during order creation (VA01) ? I tried debugging , but cudn't figure out. Thanks! -Faria

  • Set Default "Open" - How?

    I know this is a simple question, as I have done it before. I don't know if the combination of Xmas shopping and stressed out at work has made me forget, but ... I just upgraded to a Mac Mini Intel Core Duo from a G4 (HUGE difference in speed, btw) a