JMS Control - receive-correlation-property

Hi,
I am using JMS Control in WLI 8.1. This is not a WLI JMS Control. Some application
puts a message to Weblogic Queue.
My JMS Control is subscribed to the queue. It gives the following error - when
it receives the message...
<Jun 15, 2004 4:02:56 PM EDT> <Error> <WLW> <000000> <Received message without
correlation
ID. MessageID=ID:P<323523.1087329776527.0>>
I am new to this domain. I looked at the receive-correlation-property in my JMS
control, which is defaulted to JMSCorrelationID. Really appreciate Any suggestions/thoughts.
TIA,
Don

Hi,
I am using JMS Control in WLI 8.1. This is not a WLI JMS Control. Some application
puts a message to Weblogic Queue.
My JMS Control is subscribed to the queue. It gives the following error - when
it receives the message...
<Jun 15, 2004 4:02:56 PM EDT> <Error> <WLW> <000000> <Received message without
correlation
ID. MessageID=ID:P<323523.1087329776527.0>>
I am new to this domain. I looked at the receive-correlation-property in my JMS
control, which is defaulted to JMSCorrelationID. Really appreciate Any suggestions/thoughts.
TIA,
Don

Similar Messages

  • How to maintainCorrelation using JMS control

    Hi I am sending and receiving message from differnt Queue in WLI.Using JMS Control how we maintain correlation. Even though it is a asyncroneous communication I want the reply back for further process in JPD. I try it out it shouws the below error message.
    <5/07/2007 12:11:00 PM EST> <Error> <WLW> <000000> <errMsg=onMessage(): Could no
    t deliver message with id=ID:P<851933.1183516529000.0> to Service[jms://TES33269
    5:8001/weblogic.jws.jms.QueueConnectionFactory/jws.queue?URI=/TestWSAccess/proce
    sses/process.jpd(1183516524671):a:AmadausMsgChannel:listener].
    I receive the response upto the Queue. I couldn;t get it back to my jpd.
    Regards
    Ashok

    Hi I am sending and receiving message from differnt
    Queue in WLI.Using JMS Control how we maintain
    correlation. Even though it is a asyncroneous
    communication I want the reply back for further
    process in JPD. I try it out it shouws the below
    error message.
    <5/07/2007 12:11:00 PM EST> <Error> <WLW> <000000>
    <errMsg=onMessage(): Could no
    t deliver message with
    id=ID:P<851933.1183516529000.0> to
    Service[jms://TES33269
    5:8001/weblogic.jws.jms.QueueConnectionFactory/jws.que
    ue?URI=/TestWSAccess/proce
    sses/process.jpd(1183516524671):a:AmadausMsgChannel:li
    stener].
    I receive the response upto the Queue. I couldn;t get
    it back to my jpd.
    Regards
    AshokH! Ashok
    May be following info may help you establishing Co-relation
    Two-way messaging requires that every received messages be correlated with the instance of the application that sent the original outgoing message. This correlation is typically managed for you by the JMS control, so no action is necessary on your part. To learn more about message correlation, see the explanation of the send-correlation-property and receive-correlation-property attributes for the @jc:jms annotation.
    To enable two-way messaging with queues:
    1.
    On the JMS control, specify the name of the JMS queue to which you want to send messages by setting the value of the send-jndi-name attribute on the @jc:jms annotation.
    Specify the name of the JMS queue from which you want to receive messages by setting the value of the receive-jndi-name attribute on the @jc:jms annotation.
    To send a message from your web service, call the JMS control's default method (sendTextMessage, sendBytesMessage, sendObjectMessage or sendJMSMessage depending on the message type selected when the control was created), or a custom method you have defined for the JMS control.
    4.
    To be notified when messages are received on the receive queue, implement a callback handler for the JMS control?s callback (receiveTextMessage, receiveBytesMessage, receiveObjectMessage or receiveJMSMessage depending on the message type selected when the control was created), or a custom callback you have defined for the JMS control.
    The following is an example enabling two-way messaging:
    public class MyService {
    * @common:control
    private MyQueueControl myQueue;
    * @common:operation
    public void sendID(String personID) throws Exception
    myQueue.sendTextMessage( personID );
    myQueue_receiveTextMessage(String message)
    // message has arrived from queue, perform desired operations

  • Platform Domain and  WorkShop JMS Control Problems

    I created a platform domain and created a workflow in WLI. I would like to expose
    the workflow from a web service. I successfully used the JMS control to send
    the XML request into WLI and receive the reply from WLI. My problem is whenever
    I try to execute the callback function when I receive my reply from JMS it his
    a loop and never executes the callback to the client. In the same service i replaced
    the JMS interaction with a timer and it works fine. The problem only occurrs when
    the JMS control receives the reply and then invokes the callback. If I just receive
    the reply without calling the callback everything works fine. Any ideas? Thanks

    I did a little more debugging and it looks like when the message is sent to the
    JMS Queue a different instance of the session EJB is calledback to when the JMS
    reply is received. I noticed when my callback is invoked by JMS i have different
    proxy and context objects. I hope this helps.
    "David" <[email protected]> wrote:
    >
    I created a platform domain and created a workflow in WLI. I would like
    to expose
    the workflow from a web service. I successfully used the JMS control
    to send
    the XML request into WLI and receive the reply from WLI. My problem is
    whenever
    I try to execute the callback function when I receive my reply from JMS
    it his
    a loop and never executes the callback to the client. In the same service
    i replaced
    the JMS interaction with a timer and it works fine. The problem only
    occurrs when
    the JMS control receives the reply and then invokes the callback. If
    I just receive
    the reply without calling the callback everything works fine. Any ideas?
    Thanks

  • JMS Control to receive a message

    Hi all,
    I’m trying to createJMS Contro to test my JMS Server. A method to send a message was generated
    @Message(JMSControl.MessageType.Auto)
         public void sendMessage(Object body);but I cannot find how can I write a method to receive a message.
    Can anybody tell me how can I receive messages from JMS server with JMS Control?
    Many thanks
    Pavel

    It is possible till 8.1, but not from 9.2 versions. The suggested way to implement this for 9.2 or greater is:
    In version 9.2, a JMS control can't be used to receive messages. In upgraded code, you can work around this by developing a message-driven bean (MDB) to receive the messages or by invoking a web service using asynchronous request-response.
    Please refer this upgrade guide:
    http://e-docs.bea.com/workshop/docs92/ws_platform/upgrading/conChangesDuringUpgrade.html#features_not_supported
    regards,
    ~Poorna

  • Publish to JMS control

    Hi,
    I want to publish a message to a message queue using JMS control in
    pageflow. The JMS control is configured properly, it has set
    connection-factory-jndi-name, send-type and send-jndi-name.
    Receive-jndi-name is not set because the control doesn't consume messages.
    In pageflow, there is an action containing code:
    //create message
    Message message = myJMSControl.getSession().createTextMessage("some text");
    //send message
    myJMSControl.sendJMSMessage(message);
    In runtime I get an exception when creating a message:
    weblogic.jms.common.IllegalStateException: Session is closed
    at weblogic.jms.client.JMSSession.checkClosed(JMSSession.java:2729)
    at weblogic.jms.client.JMSSession.createMessage(JMSSession.java:548)
    at Controller.startPeriod(Controller.jpf:90)
    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:324)
    at
    com.bea.wlw.netui.pageflow.FlowController.invokeActionMethod(FlowController.
    java:1262)
    at
    com.bea.wlw.netui.pageflow.FlowController.getActionMethodForward(FlowControl
    ler.java:1214)
    Am I doing something wrong? Is there any other way how to create a message?
    I wrote a standalone test client which publish a message to the same queue
    using the same factory. All goes well. The code is:
    ctx = new InitialContext(env);
    qConFactory = (QueueConnectionFactory) ctx.lookup(JMS_FACTORY);
    qCon = qconFactory.createQueueConnection();
    qSession = qcon.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
    queue = (Queue) ctx.lookup(QUEUE);
    qSender = qSession.createSender(queue);
    msg = qSession.createTextMessage("some text");
    qcon.start();
    qsender.send(msg, DeliveryMode.PERSISTENT, priority, ttl);
    Thanks for advice,
    Tomas

    Tomas,
    This seems like an issue. The error does not happen when you use the same
    code in a WebService. This also does not happen for a JMSControl which
    accepts a TextMessage such as
    myJMSControl.sendTextMessage("tomas");
    I will file a change request for this.
    Thanks for the feedback.
    Regards,
    Anurag
    "Tomas Koutny" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I want to publish a message to a message queue using JMS control in
    pageflow. The JMS control is configured properly, it has set
    connection-factory-jndi-name, send-type and send-jndi-name.
    Receive-jndi-name is not set because the control doesn't consume messages.
    In pageflow, there is an action containing code:
    //create message
    Message message = myJMSControl.getSession().createTextMessage("sometext");
    //send message
    myJMSControl.sendJMSMessage(message);
    In runtime I get an exception when creating a message:
    weblogic.jms.common.IllegalStateException: Session is closed
    atweblogic.jms.client.JMSSession.checkClosed(JMSSession.java:2729)
    atweblogic.jms.client.JMSSession.createMessage(JMSSession.java:548)
    at Controller.startPeriod(Controller.jpf:90)
    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:324)
    at
    com.bea.wlw.netui.pageflow.FlowController.invokeActionMethod(FlowController.
    java:1262)
    at
    com.bea.wlw.netui.pageflow.FlowController.getActionMethodForward(FlowControl
    ler.java:1214)
    Am I doing something wrong? Is there any other way how to create amessage?
    >
    >
    I wrote a standalone test client which publish a message to the same queue
    using the same factory. All goes well. The code is:
    ctx = new InitialContext(env);
    qConFactory = (QueueConnectionFactory) ctx.lookup(JMS_FACTORY);
    qCon = qconFactory.createQueueConnection();
    qSession = qcon.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
    queue = (Queue) ctx.lookup(QUEUE);
    qSender = qSession.createSender(queue);
    msg = qSession.createTextMessage("some text");
    qcon.start();
    qsender.send(msg, DeliveryMode.PERSISTENT, priority, ttl);
    Thanks for advice,
    Tomas

  • Correlation property of correlationSet "name" is not defined

    Hi.
    I have got strange problem with correlation property.
    I am using JDeveloper Studio Edition Version 11.1.1.5.0 with Oracle 11g Fusion middleware Version 11.1.1.5.0.
    I created BPEL process driven by EDA. All receive and pick activity are event driven.
    Everything works fine till I tried to make correlation.
    I use wizard to create CorrelationSet and correlation property, assign type and create property aliases.
    Now I get error correlation property "{http://xmlns.process.com/oxygenium/OrderAuthorization/OrderAuthorization/correlationset}webOrder_property" of correlationSet "webOrderCorrelationSet" is not defined.
    Error message points to line with <correlationSets><correlationSet name="webOrderCorrelationSet" properties="ns7:webOrder_property"/></correlationSets>
    xmlns:ns7="http://xmlns.process.com/oxygenium/OrderAuthorization/OrderAuthorization/correlationset"
    I can't understand what is wrong. Wizard show all dependencies OK.
    Please help.
    Thanks in advance.

    Problem still remains.
    The only way to solve I found is add SOAP webservice interface with partnerlink. After that compiler didn't find any error but what horrible workaround it is...
    I think there is bug in compiler which doesn't allow create correlation set without partnerlink :(
    Please give me a hope that there is a normal solution.
    Thank you

  • ** Use of 3 values in 'Receiver From' property of the BPM send step

    Hi Friends,
    Still I am not clear the exact use of 'Receiver From' property of the Send step in BPM. This property is having 3 possible values: 'Send Context', 'Receivers List', & 'Response to Message'.
    What's the purpose of each value ? In what situations, which value we have to use.
    Kindly clarify friends.
    Kind Regards,
    Jeg P.

    Hi,
    In Send step, The message receiver can be a business system or another integration process.
    To handle Receiver Determination in BPM you need these options.
    Send Context -
    Send Context will be used by Receiver determination, if you will give it in Send step then accordingly receveir deteermination will process. Here the Message will go to fixed receiver
    Response to message -- While dealing with Sync/async bridge you can use this option to give the Switch or Transformation step to for further response.
    Receivers List -- For Runtime Receiver Determination you have to go for Receiver Lists. It will relied on the
    design of the Integration process.
    For e.g you can refer to the Conditional Receiever Determination.
    http://help.sap.com/saphelp_nw04/helpdata/en/3c/831620a4f1044dba38b370f77835cc/frameset.htm
    Thanks
    Swarup

  • Usage of Apache Beehive JMS control inside Message Driven Bean

    Hi,
    I am developing a j2ee application using weblogic workshop 10.3. This application contains the following three projects.
    - J2EE Utility Project
    - Message Driven Bean Project
    - Ear Project
    In the Utility project I have created one apache beehive jms control. I am using this control inside the message driven bean application. I haven't got any issues during the development and deployment phase with the beehive control. But during runtime the apache beehive jms control is not getting instantiated and the mdb application is throwing the null pointer exception when the EJB container try to execute the methods on the control instance. I have used the declarative programming model to create the control instance inside the mdb application.
    I am using the weblogic 10.3 server for testing and I have created the 10.3 weblogic+workshop domain. By default it has the beehive libraries deployed.
    Can somebody help me out to resolve this issue?
    Regards,
    Bp

    You can get the message directly with getText() method. Following is the snippet of code.
    if (aMsg instanceof TextMessage) {
    TextMessage msg = (TextMessage) aMsg;
    String testMessage = msg.getText());
    Kishore.

  • Receiver Correlation????

    Hi Everybody!
                   I am implementing a BPM Scenario. I have three receieve steps in my BPM. The first one being the start process and the other two receiveing message from file adapter. The issue is when i configure these two receivers it asks for receiver correlation as a mandatory field.
    First why do we need correlation?
    Secondly can't I skip correlation step?
    My design is  receive --> Transform1 ---> Transform2 ---> Send ---> <b>Receive</b> ---> Switch ---> Transform3 --->Send ---> <b>Receive</b> -
    > Transform4 -
    > Send.
    Regards,
    Ashish

    Asish,
    taking your scenario,
    Consider your recive step is executed and the BPM is active waiting for the other file to comne in.
    Before the next file comes in , if another BPM is activated becuase your recived recive1 message. Now, when the next message comes in , how does XI know which BPM instance is to be used.
    Correlation is used in these cases. to corelate the messages.,
    And you cannot skip correlation.
    Regards,
    Bhavesh

  • Jms settings and correlation settings in jms adapter

    hi expects,
       what is use of jms settings and correlation settings in jms adapter.

    Hi Rohit,
    have a look at thsi article to understand jms correlation:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5059f110-0d01-0010-7c8b-fdc983be70c0
    Regards,
    michal

  • What is the exact meaning of the Slider control's SmallChange property

    Here is the definition from MSDN:
    "Gets or sets a Value to
    be added to or subtracted from the Value of
    a RangeBase control."
    "For example, when the user taps the track of a custom scrollbar control, the Value property
    would increase or decrease by the value of SmallChange."
    After I set SmallChange = 1, when I move the slider between 0 and 100, the value can be anything (e.g. 65.5810815512).  I thought it the change would multiples of SmallChange (i.e. integer).
    Could anyone shed some light on this property?
    Hong

    SmallChange doesn't work with slider. SmallChange works with keyboard. If you want in multiples of 1 (or SmallChange) then you can write your code in ValueChanged event. For multiples of 1 then you can try following code
    Private Sub MySlider_ValueChanged(sender As Object, e As RoutedPropertyChangedEventArgs(Of Double)) Handles MySlider.ValueChanged
    Dim value As Integer = e.NewValue
    MySlider.Value = value
    End Sub
    Gaurav Khanna | Microsoft .NET MVP | Microsoft Community Contributor

  • JMS control

    (How) can I use a JMS control to deploy an MDB to WLS? I tried to do so in a sample app but it seems that Workshop only deploys a control (and the underlying beans) if it is accessed by the application (a JWS in my case). If I develop a JMS control but not use it I can't find the corresponding MDB deployed.
    Can somebody help me?

    My actual workaround is to declare in the JWS a member variable of the type of the JMS control I'm trying to deploy and it works (but doesn't look great).
    Regards.
    Antonio.

  • Using a JMS control from an EJB project

    I'm developing an EJB in Workshop and my EJB is expected to send messages to a JMS queue. How can I use a JMS control (JCX) from my EJB?

    If you're talking about making an executable jar file that will work with the bouncycastle jar:
    (1) Make a jar as usual with your classes in it
    (2) Include a manifest file that specifies the class containing your app's main() method
    (3) In that same manifest, make sure that the bouncycastle jar is included in the Class-Path
    Details are in Sun's Tutorial: [Packaging Programs in JAR Files|http://java.sun.com/docs/books/tutorial/deployment/jar/index.html] and specifically [http://java.sun.com/docs/books/tutorial/deployment/jar/downman.html|http://java.sun.com/docs/books/tutorial/deployment/jar/downman.html] for the business of having your app recognise the other jar file's classes at runtime.
    Doubtless this can all be done from the comfort of your IDE, but I don't know how. There will be documentation on NetBeans site I suppose.
    Edited by: pbrockway2 on Jul 23, 2008 8:59 PM

  • Setting JMS Priorities in the Presence of a JMS Control

    I posted the following question to the JMS interest newsgroup and received a response on how to accomplish my objective using the QueueSender class. However, nobody in that newgroup could tell me how to construct a QueueSender from the JMSControl serving as the interface to my Queue. So, while that solution worked, it eliminated the convenience of using the JMSControl. Anybody have an answer that leverages the control?
    Link to original posting and responses is here: http://forums.bea.com/bea/message.jspa?messageID=202440977
    Thanks!
    Todd

    That doesn't change whether the code works or not. Which it still doesn't.

  • JMS Request - Response Correlation Not Working

    Hello Experts -
    I am new to OAG and hence seek your expert advice. Following is our use-case scenario:
    1. OAG needs to push a sample XML Message to Weblogic Request JMS Queue. In the Request tab of "Routing to Messaging System filter" I set the CorrelationId
    2. In the response tab wait for a timeout (I set to 600000 secs)
    3. Retrieve Response from the Weblogic Response Queue
    4. Send the Response back to the client
    When i invoke the OAG policy, I am able to post the message to the Request Queue. For my testing purpose, I manually get the correlation id from the request message in the request queue and then populate the same in the response message correlation id field and post the same to the response queue.
    Unfortunately I am not able to see the response back. Below is the log.
    Any help is greatly appreciated.
    Thanks!
    Dibya
    DEBUG   29/Jan/2015:23:38:55.677 [3220]     handle type text/plain with factory class com.vordel.mime.Body$1
    DEBUG   29/Jan/2015:23:38:55.677 [3220]     Added converted message is added to the whiteboard
    DEBUG   29/Jan/2015:23:38:55.677 [3220] } = 1, filter [Request Message on Queue(Set Message)]
    DEBUG   29/Jan/2015:23:38:55.678 [3220] Filter [Request Message on Queue(Set Message)] completes in 1 milliseconds.
    DATA    29/Jan/2015:23:38:55.678 [3220] LogManager logging {
    DATA    29/Jan/2015:23:38:55.678 [3220]     Logging at Success
    DATA    29/Jan/2015:23:38:55.678 [3220]     Calling write log on class com.vordel.log.trace.TraceLogger
    DATA    29/Jan/2015:23:38:55.679 [3220] }
    DEBUG   29/Jan/2015:23:38:55.679 [3220] run filter [Place Message on Weblogic Queue (Messaging system)] {
    DEBUG   29/Jan/2015:23:38:55.893 [2300] start thread 10706770 in set "netsvc threadpool": count=11, busy=10, idle target=4, max=512
    DEBUG   29/Jan/2015:23:38:56.388 [3220]     Set Reply to on a named queue: TokenJMSModule!SMAIPO.ActiveSubscriptionResponse
    DEBUG   29/Jan/2015:23:38:56.389 [3220]     creating consumer from QueueSession
    DEBUG   29/Jan/2015:23:38:56.758 [3220]     cache com.vordel.circuit.jms.JMSProcessor$PoolContextCache@19c45da grows to 3
    DEBUG   29/Jan/2015:23:38:56.759 [3220]     JMSProcessor message ID is: Id-ef18cb542c01000000000000bcac40f9
    DEBUG   29/Jan/2015:23:38:56.760 [3220]     Creating JMS byte message using automime
    DEBUG   29/Jan/2015:23:38:56.760 [3220]     new buffered content factory 10674640
    DEBUG   29/Jan/2015:23:38:56.760 [3220]     buffered content 10674640, size=0/8
    DEBUG   29/Jan/2015:23:38:56.761 [3220]     [10674640] new chunk 10541538 from 10606CC8 to 10606DFE (310)
    DATA    29/Jan/2015:23:38:56.761 [3220]     new content stack 105488F8
    DATA    29/Jan/2015:23:38:56.761 [3220]     push source buffered onto 105488F8
    DEBUG   29/Jan/2015:23:38:56.761 [3220]     Setting reply to named queue
    DEBUG   29/Jan/2015:23:38:56.761 [3220]     setJMSMessageID: Id-ef18cb542c01000000000000bcac40f9
    DEBUG   29/Jan/2015:23:38:56.761 [3220]     setJMSCorrelationID: Id-ef18cb542c01000000000000bcac40f9
    DEBUG   29/Jan/2015:23:38:56.762 [3220]     Calling post JMS creation hook
    DEBUG   29/Jan/2015:23:38:56.762 [3220]     Post JMS creation hook completed
    DEBUG   29/Jan/2015:23:38:56.762 [3220]     Sending JMS message to TokenJMSModule!SMAIPO.ActiveSubscriptionRequest
    DATA    29/Jan/2015:23:38:57.120 [3220]     trace transaction
    DEBUG   29/Jan/2015:23:38:57.121 [3220]     Wait for repsonse ? true
    DEBUG   29/Jan/2015:23:38:57.819 [2300] incoming call on interface localhost:8085 from ::1:63317
    DEBUG   29/Jan/2015:23:38:57.820 [2300] new connection 02F0FB08,  settings source incoming interface (allow 1.1=no, idleTimeout=60000, activeTimeout=60000, contentLength: req=no, res=no)
    DEBUG   29/Jan/2015:23:38:57.820 [2300] push SSL protocol on to connection
    DATA    29/Jan/2015:23:38:57.820 [2300] [SSL_accept, 00006000] before/accept initialization.
    DEBUG   29/Jan/2015:23:38:57.821 [2300] No SSL host name provided, defaulting to certificate: { subject: /CN=instance-1 }.
    DATA    29/Jan/2015:23:38:57.821 [2300] [SSL_accept, 00002110] SSLv3 read client hello A.
    DATA    29/Jan/2015:23:38:57.821 [2300] [SSL_accept, 00002130] SSLv3 write server hello A.
    DATA    29/Jan/2015:23:38:57.823 [2300] [SSL_accept, 000021D0] SSLv3 write change cipher spec A.
    DATA    29/Jan/2015:23:38:57.823 [2300] [SSL_accept, 000021E0] SSLv3 write finished A.
    DATA    29/Jan/2015:23:38:57.823 [2300] [SSL_accept, 00002100] SSLv3 flush data.
    DATA    29/Jan/2015:23:38:57.824 [2300] [SSL_accept, 000021C0] SSLv3 read finished A.
    DEBUG   29/Jan/2015:23:38:57.825 [2300] negotiated SSL cipher "DHE-RSA-AES256-SHA", session 00000000 (reused) peer cert /CN=nodemanager-1
    DATA    29/Jan/2015:23:38:57.825 [2300] client certificate: { subject: /CN=nodemanager-1 }
    DEBUG   29/Jan/2015:23:38:57.826 [30a4] incoming call on interface localhost:8085 from 127.0.0.1:63320
    DATA    29/Jan/2015:23:38:57.826 [2300] rcv 979 from max of 2048: <GET /api/monitoring/metrics/summary?timeline=10m&metricGroupType=Service HTTP/1.1
    Host: localhost:8085
    Accept: application/json
    Accept-Language: en-US,en;q=0.8
    authentication.subject.id: admin
    authentication.subject.role: API Server Operator:API Service Developer:Policy Developer:API Service Administrator:API Server Administrator:Deployer:KPS Administrator
    Authorization: Basic YWRtaW46Y2hhbmdlbWU=
    Cookie: avlastvisit=1411930906; avlastactivity=0; __utma=125953885.1884274842.1414410173.1414410173.1417627152.2; __utmz=125953885.1417627152.2.2.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=(not%20provided); utag_main=_st:1417668298258$ses_id:1417666771075%3Bexp-session; WT_FPC=id=cfc9b752-08a3-4756-8d26-c4ca2d77219f:lv=1417670100029:ss=1417670100029
    Host: localhost:8085
    Referer: https://xx1211000592.global.avaya.com:8090/
    User-Agent: Gateway
    X-Requested-With: XMLHttpRequest
    Connection: close
    X-CorrelationID: Id-f118cb54e204000000000000373fba90 1

    Hi Michael,
    I think the adapter type is for the receiver channel looking at the documentation SAP Library - SAP Exchange Infrastructure
    Have you checked your receiver channel doesn't belong to a party?
    I havent tried this bridge with the http_aae but looks to be problematic according with Michal comment here http://scn.sap.com/community/pi-and-soa-middleware/blog/2014/01/28/generic-pi-async-sync-bridge-configuration-for-any-adapters#comment-454463
    Regards.

Maybe you are looking for