Request/Reply w/ MDB

I'm having some trouble with my request/reply setup.
          Here's the requesting code (just a regular test class):
          String request = "<mileage-xml-request><origin><city>UNIONTOWN</city>" +
          "<state>OH</state><zip>44685</zip><country>USA</country></origin><dest><city
          >DALAS</city>" +
          "<state>TX</state><zip>75201</zip><country>USA</country></dest></mileage-xml
          -request>";
          String initialContextFactory =
          "com.tibco.tibjms.naming.TibjmsInitialContextFactory";
          String providerURL = "tcp://app-dev-01.blue.fedex.com:7222";
          QueueConnectionFactory factory = (QueueConnectionFactory)
          JndiHelper.lookup("QueueConnectionFactory", providerURL,
          initialContextFactory);
          QueueConnection conn = factory.createQueueConnection();
          QueueSession session = conn.createQueueSession(false,
          Session.DUPS_OK_ACKNOWLEDGE);
          Queue queue = (Queue) JndiHelper.lookup("COM.FEDEX.BLUE.MILEAGE.REQUEST",
          providerURL, initialContextFactory);
          QueueRequestor requestor = new QueueRequestor(session, queue);
          TextMessage requestMessage = session.createTextMessage(request);
          TextMessage textMessage = (TextMessage) requestor.request(requestMessage);
          System.out.println(textMessage.getText());
          requestor.close();
          session.close();
          conn.close();
          And the reply code (inside my MDB, called from onMessage):
          Queue queue = (Queue) message.getJMSReplyTo();
          QueueConnectionFactory factory = (QueueConnectionFactory)
          JndiHelper.lookup("QueueConnectionFactory", providerURL,
          initialContextFactory);
          QueueConnection conn = factory.createQueueConnection();
          QueueSession session = conn.createQueueSession(false,
          Session.DUPS_OK_ACKNOWLEDGE);
          QueueSender sender = session.createSender(queue);
          TextMessage replyMessage = session.createTextMessage(reply);
          replyMessage.setJMSCorrelationID(correlationID);
          sender.send(replyMessage);
          sender.close();
          session.close();
          conn.close();
          The requesting code runs fine up to
          TextMessage textMessage = (TextMessage) requestor.request(requestMessage);
          Which then triggers the reply code, which runs to completion, but the reques
          tor never receives a reply.
          Any ideas on what to try next? Is my requestor listening on the wrong queue
          for the answer? Is my replier sending to the wrong queue?
          Thanks.
          Eric
          

I just needed
          conn.start();
          after
          QueueRequestor requestor = new QueueRequestor(session, queue);
          "Eric F" <[email protected]> wrote in message
          news:[email protected]...
          > I'm having some trouble with my request/reply setup.
          >
          > Here's the requesting code (just a regular test class):
          >
          > String request = "<mileage-xml-request><origin><city>UNIONTOWN</city>" +
          >
          "<state>OH</state><zip>44685</zip><country>USA</country></origin><dest><city
          > >DALAS</city>" +
          >
          "<state>TX</state><zip>75201</zip><country>USA</country></dest></mileage-xml
          > -request>";
          > String initialContextFactory =
          > "com.tibco.tibjms.naming.TibjmsInitialContextFactory";
          > String providerURL = "tcp://app-dev-01.blue.fedex.com:7222";
          > QueueConnectionFactory factory = (QueueConnectionFactory)
          > JndiHelper.lookup("QueueConnectionFactory", providerURL,
          > initialContextFactory);
          > QueueConnection conn = factory.createQueueConnection();
          > QueueSession session = conn.createQueueSession(false,
          > Session.DUPS_OK_ACKNOWLEDGE);
          > Queue queue = (Queue) JndiHelper.lookup("COM.FEDEX.BLUE.MILEAGE.REQUEST",
          > providerURL, initialContextFactory);
          > QueueRequestor requestor = new QueueRequestor(session, queue);
          > TextMessage requestMessage = session.createTextMessage(request);
          > TextMessage textMessage = (TextMessage) requestor.request(requestMessage);
          > System.out.println(textMessage.getText());
          > requestor.close();
          > session.close();
          > conn.close();
          >
          > And the reply code (inside my MDB, called from onMessage):
          >
          > Queue queue = (Queue) message.getJMSReplyTo();
          > QueueConnectionFactory factory = (QueueConnectionFactory)
          > JndiHelper.lookup("QueueConnectionFactory", providerURL,
          > initialContextFactory);
          > QueueConnection conn = factory.createQueueConnection();
          > QueueSession session = conn.createQueueSession(false,
          > Session.DUPS_OK_ACKNOWLEDGE);
          > QueueSender sender = session.createSender(queue);
          > TextMessage replyMessage = session.createTextMessage(reply);
          > replyMessage.setJMSCorrelationID(correlationID);
          > sender.send(replyMessage);
          > sender.close();
          > session.close();
          > conn.close();
          >
          > The requesting code runs fine up to
          > TextMessage textMessage = (TextMessage) requestor.request(requestMessage);
          >
          > Which then triggers the reply code, which runs to completion, but the
          reques
          > tor never receives a reply.
          >
          > Any ideas on what to try next? Is my requestor listening on the wrong
          queue
          > for the answer? Is my replier sending to the wrong queue?
          >
          > Thanks.
          >
          > Eric
          >
          >
          

Similar Messages

  • Request/Reply in FTP Adapter

    Hi,
    I have to implement the Req/Reply paradigm with an FTP Adapter and DB Adapter. A file is created which is read by FTP adapter and a synchronous reply is required in the same file e.g the file will contain XML for customer number; in response in requires Customer Name is the same file.
    I am using Procedure in iStudio but how can I direct the reply to the same file with the same name with which it is originally created in the upload directory.
    In a nut shell, what is the best way to model req/reply in File and DB Adapter.
    Thanks
    M jahangir

    Hi All
    The request-reply pattern is working with queues and topics, but not with topic and queue. The issue is with this:
    <adapter-config name="RemoteOSBJMSService" adapter="JMS Adapter"
    wsdlLocation="RemoteOSBJMSService.wsdl"
    xmlns="http://platform.integration.oracle/blocks/adapter/fw/metadata">
    <connection-factory location="eis/JMS/RequestReplyTopic"
    UIJmsProvider="WLSJMS" UiOperationMode="Asynchronous"
    UIConnectionName="chdsez147855d"/>
    <endpoint-activation portType="Reply_ptt" operation="Reply"
    UITransmissionPrimitive="Request-response">
    <activation-spec className="oracle.tip.adapter.jms.inbound.JmsConsumeActivationSpec">
    <property name="PayloadType" value="TextMessage"/>
    <property name="UseMessageListener" value="false"/>
    <property name="DestinationName" value="jms.soa.local.response.q"/>
    </activation-spec>
    </endpoint-activation>
    <endpoint-interaction portType="Request_ptt" operation="Request"
    UITransmissionPrimitive="Request-response">
    <interaction-spec className="oracle.tip.adapter.jms.outbound.JmsProduceInteractionSpec">
    <property name="TimeToLive" value="0"/>
    <property name="PayloadType" value="TextMessage"/>
    <property name="DeliveryMode" value="Persistent"/>
    <property name="DestinationName" value="jms.soa.local.request.topic"/>
    </interaction-spec>
    </endpoint-interaction>
    </adapter-config>
    The connection factory "eis/JMS/RequestReplyTopic" can either hold isTopic as false or true. If i set it to false, it doesnt even let me enqueue and if i set it to true. The reply doesnt arrive.
    Please help!

  • Socket Adapter Request-Reply ~ Error occured in processing client request ~

    Dear Friends,
    Need your help in resolving a Issue regarding Socket Adapter Request/Reply.
    We have a requirement to recieve Message from a External Vendor using Socket based communication,to achieve this Created a Process which has Socket Adapter Inbound Synchronous Request-Reply. I have also created a sample Outbound Service to test and it was able to send & Receive Message Sucessfuly .
    When i try to Recieve a Message from the External Vendor on Port 8008 in this I am unable to receive the message(No Bpel Instance Created) message coming to the SOA Server, in the logs I can see Below Error-
    Socket Adapter ClientProcessor:run() Error occured in processing client request
    Socket Schema Translation Error.
    Error while trying to translate from native.
    Please ensure that the schemas are set up with native annotations and comply with the output XML. Contact Oracle support if error is not fixable.
    Pls. find my Input XSD Below-
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
    xmlns:tns="http://TargetNamespace.com/InboundService"
    targetNamespace="http://TargetNamespace.com/InboundService"
    elementFormDefault="qualified"
    attributeFormDefault="unqualified"
    nxsd:version="NXSD"
    nxsd:stream="chars"
    nxsd:encoding="US-ASCII"
    >
    <xsd:element name="R1">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="C1" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="${eol}" nxsd:quotedBy="&quot;" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    Sample Incoming Message-
    <?xml version="1.0" encoding="UTF-8"?>
    <ExitRequest>
    <ExitRequestID>1234</ExitRequestID>
    <Timestamp>28-11-2012 01:19:11</Timestamp>
    <ActiveTagData>23456</ActiveTagData>
    <DriverID>5555</DriverID>
    <LicensePlate>6546</LicensePlate>
    <DriverName> Sujit Nair</DriverName>
    <DriverDOB>06-06-2012</DriverDOB>
    <DriverEmployer>Testing</DriverEmployer>
    <DriverSex>Male</DriverSex>
    <DriverLang>ENGLISH</DriverLang>
    <DriverNationality>TEST</DriverNationality>
    <LaneID>Gate Testing</LaneID>
    <CardReaderID>07700</CardReaderID>
    </ExitRequest>
    Can anyone pls. help me on this , still not able to understand what I am doing wrong. Pls. let me know if any other details required.
    Thanks,
    Sujit Nair

    Hi,
    You don't need a NSXD (Native Format Builder) to receive a message that is XML already, and the NXSD you listed above has nothing to do with the sample incoming message. So, no surprises it is complaining "Error while trying to translate from native.".
    You have to fix the incoming message element on the Socket Adapter.
    Cheers,
    Vlad

  • Synchronous HL7 Inbound request-reply

    Hello All,
    This is my first please sorry for any mistakes
    I'm currently using,
    Oracle JDeveloper 11g Release 1 (11.1.1.7.0)
    Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
    My task looks very simple
    I need synchronous HL7 Inbound request-reply.
    What I'm trying to do is:
    Using Jdeveloper create SOA composite project
    1) Set up synchronous HL7 Inbound request-reply using "HL7 Adapter" (Inbound type: QRY_T12, Outbound type: DOC_T12)
    2) Set up synchronous BPEL (also tried specify later) and wire it to "Exposed service" created on step 1
    3) Add simple transformation between BPEL Recieve and Reply (setting ACK.1 == "AA")
    Compile: no warnings or errors
    Deploy: no warnings or errors
    Send HL7 message -> getting "IDeliveryService.post() invoked for two-way operation 'request-reply'. This method can only be used to invoke one-way operations which don't return any messages. Please check the WSDL which defines this operation and use the method IDeliveryService.request() to invoke a two-way operation"
    What am i doing wrong?
    Is such thing as HL7 request-reply is possible?
    Will highly appreciate any help, being struggling with this more than a week
    Thanks in advance!
    PS Endpoint Acknowledgement Mode is set to SYNC

    Bob,
    I don't think PS4 (11.1.1.5) has this option available -
    http://docs.oracle.com/cd/E21764_01/integration.1111/e10229/intro_ui.htm#CHDEGEEB
    Please re-check your local setup version.
    Regards,
    Anuj

  • Request-Reply in JMSAdapter SOA 11g using a Topic and a Queue

    Hi All
    We are trying to implement JMS Request\Reply with Tibco EMS Server using JMS Request\Reply. Problem is that Tibco has exposed a topic (where request message has been enqueued) and replies the message is a pre defined JMS queue.
    I am trying to use JMS adapter in SOA 11g (OSB doesnt support request\reply as soon as destination is selected as Topic ) with foreign JMS server setup in weblogic.
    Problem is that when i invoke the composite, it errors out saying that request destination has to be a queue. I tried to find any sample that talks about request-reply with topics but could not find any.
    Is request-reply pattern supported with topics or topic-queue combinations in JMS adapter 11g? Please let u know. Thanks

    Hi All
    The request-reply pattern is working with queues and topics, but not with topic and queue. The issue is with this:
    <adapter-config name="RemoteOSBJMSService" adapter="JMS Adapter"
    wsdlLocation="RemoteOSBJMSService.wsdl"
    xmlns="http://platform.integration.oracle/blocks/adapter/fw/metadata">
    <connection-factory location="eis/JMS/RequestReplyTopic"
    UIJmsProvider="WLSJMS" UiOperationMode="Asynchronous"
    UIConnectionName="chdsez147855d"/>
    <endpoint-activation portType="Reply_ptt" operation="Reply"
    UITransmissionPrimitive="Request-response">
    <activation-spec className="oracle.tip.adapter.jms.inbound.JmsConsumeActivationSpec">
    <property name="PayloadType" value="TextMessage"/>
    <property name="UseMessageListener" value="false"/>
    <property name="DestinationName" value="jms.soa.local.response.q"/>
    </activation-spec>
    </endpoint-activation>
    <endpoint-interaction portType="Request_ptt" operation="Request"
    UITransmissionPrimitive="Request-response">
    <interaction-spec className="oracle.tip.adapter.jms.outbound.JmsProduceInteractionSpec">
    <property name="TimeToLive" value="0"/>
    <property name="PayloadType" value="TextMessage"/>
    <property name="DeliveryMode" value="Persistent"/>
    <property name="DestinationName" value="jms.soa.local.request.topic"/>
    </interaction-spec>
    </endpoint-interaction>
    </adapter-config>
    The connection factory "eis/JMS/RequestReplyTopic" can either hold isTopic as false or true. If i set it to false, it doesnt even let me enqueue and if i set it to true. The reply doesnt arrive.
    Please help!

  • Asynchronous Web Service Request-Reply Invocation from Service Control

    Hi all
    I need to invoke a reliable web service call using a Service Control. when trying to make that invocation for an operation that returns data. It gives the following exception. For the methods that marked with @Oneway() annotation in the service implementation, it works.
    javax.xml.rpc.JAXRPCException: Reliable messaging will only work with one way messages or asynchronous request/response messages.
    </bea_fault:stacktrace></detail>]; nested exception is:
    weblogic.wsee.jaxrpc.soapfault.WLSOAPFaultException: Reliable messaging will only work with one way messages or asynchronous request/response messages.
    Caused by: java.rmi.RemoteException: SOAPFaultException - FaultCode [{http://schemas.xmlsoap.org/soap/envelope/}Server] FaultString [Reliable messaging will only work with one way messages or asynchronous request/response messages.
    ] FaultActor [null] Detail [<detail><bea_fault:stacktrace xmlns:bea_fault="http://www.bea.com/servers/wls70/webservice/fault/1.0.0">javax.xml.rpc.JAXRPCException: Reliable messaging will only work with one way messages or asynchronous request/response messages.
    </bea_fault:stacktrace></detail>]; nested exception is:
    weblogic.wsee.jaxrpc.soapfault.WLSOAPFaultException: Reliable messaging will only work with one way messages or asynchronous request/response messages.
    So I need to make Asynchronous Request-Reply Invocation from Service Control, which is apparently doesn't happen in this case.
    Thanks

    Hi HP,
    I included the following snippet in job source:
    //Set completion strategy to external
    jcsJobContext.setCompletionStrategy(CompletionStrategyType.External);
    I get the following error when compiled:
    JCS-102183: Compile failed for Job Definition SOAP_GlobalWeatherSoap_GetCitiesByCountry (Latest Version): SOAP_GlobalWeatherSoap_GetCitiesByCountry.java:user code 24:40:cannot find symbol symbol : variable CompletionStrategyType location: class com.redwood.scheduler.custom.SOAP_GlobalWeatherSoap_GetCitiesByCountry jcsJobContext.setCompletionStrategy(CompletionStrategyType.External);
    I am not able to find any information from the API documentation on the method setCompletionStrategy, so I'm not able to figure what type of variable am i passing, so that i can initialize it. Please shed some light on it.
    Also there is no path called Scripting > Built-In Web Services
    I have only Scripting>Published Web Services
    Thanks
    Nanda

  • Request/Reply

    I'm having some trouble with my request/reply setup.
    Here's the requesting code:
    String request =
         "<mileage-xml-request><origin><city>UNIONTOWN</city>" +
         "<state>OH</state><zip>44685</zip><country>USA</country></origin><dest><city>DALAS</city>" +
         "<state>TX</state><zip>75201</zip><country>USA</country></dest></mileage-xml-request>";
    String initialContextFactory = "com.tibco.tibjms.naming.TibjmsInitialContextFactory";
    String providerURL = "tcp://app-dev-01.blue.fedex.com:7222";
    QueueConnectionFactory factory =
        (QueueConnectionFactory) JndiHelper.lookup(
            "QueueConnectionFactory",
            providerURL,
            initialContextFactory);
    QueueConnection conn = factory.createQueueConnection();
    QueueSession session = conn.createQueueSession(false, Session.DUPS_OK_ACKNOWLEDGE);
    Queue queue =
        (Queue) JndiHelper.lookup(
            "COM.FEDEX.BLUE.MILEAGE.REQUEST",
            providerURL,
            initialContextFactory);
    QueueRequestor requestor = new QueueRequestor(session, queue);
    TextMessage requestMessage = session.createTextMessage(request);
    TextMessage textMessage = (TextMessage) requestor.request(requestMessage);
    System.out.println(textMessage.getText());
    requestor.close();
    session.close();And the reply code:
    Queue queue = (Queue) message.getJMSReplyTo();
    QueueConnectionFactory factory =
        (QueueConnectionFactory) JndiHelper.lookup(
            "QueueConnectionFactory",
            providerURL,
            initialContextFactory);
    QueueConnection conn = factory.createQueueConnection();
    QueueSession session = conn.createQueueSession(false, Session.DUPS_OK_ACKNOWLEDGE);
    QueueSender sender = session.createSender(queue);
    TextMessage replyMessage = session.createTextMessage(reply);
    replyMessage.setJMSCorrelationID(correlationID);
    sender.send(replyMessage);
    sender.close();
    session.close();
    conn.close();The requesting code runs fine up to
    TextMessage textMessage = (TextMessage) requestor.request(requestMessage);Which then triggers the reply code, which runs to completion, but it never receives a reply.
    Any ideas on what to try next? Is my requestor listening on the wrong queue for the answer? Is my replier sending to the wrong queue?
    Thanks.
    Eric

    I just needed
    conn.start();
    after
    QueueRequestor requestor = new QueueRequestor(session, queue);

  • Weblogic temporary or synchronous request/reply queue

    Hi,
    Is there a possibility of creating temporary or Synchronous request/reply Queue in weblogic. If so, please let me know the steps to create it.
    Thanks

    The following doc section contains information about using WebLogic JMS temporary destinations.
    http://docs.oracle.com/cd/E17904_01/web.1111/e13727/manage_apps.htm#JMSPG283

  • Request-Reply Messaging

              Hi,
              I'm buffled because I try to implement
              Request-Reply Messaging in my JavaClient Application,
              but one time it works, the next one doesn't.
              I use in my Application an MessageListener,
              and the same queue to send my messages and to receive reply messages.
              Middleware: WL 6.0 sp2
              Any advise would be great!
              kind regards
              

    Hi John,
    Does the work have to be queued? If not then I think the Functor Pattern (if you need order guarantees) or the Processing Pattern (no order guarantees) might be your easiest solutions (and they're fast).
    Alternatively, we could look at adding request/response into the Messaging. Do you have a particular API you'd like to see? Something JMS-ish?
    Regards
    -- Brian

  • Asynchronous request/reply with message driven beans?

    HI,
    Can I implement requet/reply with message driven beans in an asynchronous way? If so can somebody give me some hints?
    I read that this can be done by creating a temporary queue on the producer and then calling setJMSReplyTo methond on the request message and passing in the temporary queue. By how do you specify a response message in the MessageDrivenBean, MessageListener class with only onMessage()?
    Thanks

    The MDB can only really be used for the server side of a request-response.
    I'd recommend you look at Lingo which implements request-response remoting using JMS...
    http://lingo.codehaus.org/Example
    James
    http://logicblaze.com/
    Open Source SOA

  • No synchronous Request/Reply option in B2B config wizard step 5 of 7 ?

    I have a customer running SOA Suite 11.1.1.5 who has created a BPEL process
    and added a B2B partner link to the reference swim lane.
    They want to send a 270 document to a partner and receive a 271 on the same HTTP Channel as a Sync Req/Reply
    When the customer runs the B2B wizard, it successfully connects to their WLS Server and at
    Step 5 of 7 in the wizard they see radio buttons for
    o Send
    o Receive
    They do not have radio buttons further down for
    o Synchronous Request/Response
    o Outbound
    o Inbound
    Does anyone have any ideas why not?
    I have a sample running on my local server which is also 11.1.1.5 and
    the Synchronous Request/Response radio buttons do appear.
    thanks
    Bob

    Bob,
    I don't think PS4 (11.1.1.5) has this option available -
    http://docs.oracle.com/cd/E21764_01/integration.1111/e10229/intro_ui.htm#CHDEGEEB
    Please re-check your local setup version.
    Regards,
    Anuj

  • MQ Request - Reply : can not send reply message

    Hi,
    I have two MQs defined REQUEST_MQ_NAME.RQT and REPLY_MQ_NAME.RPY.
    I am trying to use : Get Message from MQ and Send Reply/Reports - Synchronous
    I am able to recieve the message from request MQ but while sending the reply I get this error on the EM console.
    Error Message:
    Fault ID     service:451394
    Fault Time     Apr 14, 2010 3:43:02 PM
    Non Recoverable System Fault :
    *BINDING.JCA-13044 A webSphere MQ Error occurrred[while putting the message]. A webSphere MQ Error occurrred[while putting the message]. A webSphere MQ Error occurrred while putting the message in Queue: "REPLY_MQ_NAME.RPY ". Please make sure that the Queue is Put enabled, not full, message do not exceeds maximum message length and QueueManger is up and running.*
    I checked .. Queue is empty , message is a few characters and the QueueManager is up and running
    I am using the latest Jdeveloper (Studio Edition Version 11.1.1.2.0)
    Please help
    Thanks,
    Praveen
    Edited by: Praveen636546 on Apr 15, 2010 12:06 PM

    I checked the Queue and was successful in putting messages through a MQExplorer.
    I see this in the log:
    [NOTIFICATION] [] [oracle.soa.adapter] [QueueProcessor] Translating Message.
    [NOTIFICATION] [] [oracle.soa.adapter][QueueProcessor] Message translated successfully. ok.
    [NOTIFICATION] [] [oracle.soa.adapter][QueueProcessor] Message published. ok. with time [253 msec].
    [NOTIFICATION] [] [oracle.soa.adapter][MessageProduce] Starting Outbound Produce.
    *[NOTIFICATION] [] [oracle.soa.adapter][MQOutboundDOMHeader] Header Node is NULL*
    [NOTIFICATION] [] [oracle.soa.adapter][MessageProduce] Enabling SyncPoints For XA Transaction.
    [NOTIFICATION] [] [oracle.soa.adapter][MessageProducer] Throwing PCXARetriableResourceException
    *[ERROR] [] [oracle.soa.adapter][MessageProducer] Error while putting message in REPLY_MQ_NAME.RPY Throwing retriable exception.*
    I also saw this in .out file
    <Error> <oracle.soa.adapter> <BEA-000000> <MQSeriesAdapter MyMQProcess
    java.lang.NumberFormatException: For input string: "null"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
    at java.lang.Integer.parseInt(Integer.java:499)
    at oracle.tip.adapter.mq.header.MQHeader.getMessageTypeAsInt(MQHeader.java:772)
    at oracle.tip.adapter.mq.header.MQOutboundHeader.setHeaderValuesInMQMD(MQOutboundHeader.java:271)
    at oracle.tip.adapter.mq.outbound.MessageProducer.setMessageProperties(MessageProducer.java:839)
    at oracle.tip.adapter.mq.outbound.MessageProducer.produce(MessageProducer.java:321)
    at oracle.tip.adapter.mq.inbound.QueueProcessor.sendReply(QueueProcessor.java:1157)
    at oracle.tip.adapter.mq.inbound.QueueProcessor.publishMessage(QueueProcessor.java:842)
    at oracle.tip.adapter.mq.inbound.QueueProcessor.publishContent(QueueProcessor.java:1016)
    at oracle.tip.adapter.mq.inbound.QueueProcessor.run(QueueProcessor.java:259)
    at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:77)
    at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:183)
    at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:3)
    I am not able to figure out why the Header Node is NULL
    Please help
    Thanks,
    Praveen

  • Iphone 4 S meeting request reply email in different languange

    I bought an iPhone 4S factory unlocked from Italy. I changed the system language to english and all went well except whenever I receive a meeting request, the confirmation email sent from the iPhone is sent in the italian languange. I tried to search were to change this but did not find it. any help?

    my version now is 4.3.5 and still same problem arised. at first i was not aware that most of the owners of iphone4 is also complaining about the 'bug'.
    my phone can't delete sms, battery draining even minimal usage was done and it was really hot to touch. I just turned off the contacts in my email account to avoid the bug.. im trying to observe now if it will happen again. Hopefully it will not anymore.
    I was waiting for version 5 to come out if there is a fix for this one as most of us need to use contacts in our email accounts.

  • EA6300 ICMP request reply delay "request timed out"

    Hi all,
    I bought recently a EA6300 smart wifi to provide support for intranet & internet. Router is connected by cat6 cable from a 24 port local lan switch. I am getting icpm delay message "request timed out" frequently. User can't work properly due to having this interruption over lan. I can't understand why it is happening. Could any expert pls help me regarding this issue.
    Rgds
    Zahir

    May I know where the computer is connected, Zahir? Is it behind the router or the switch? We have to properly look into what's causing this. What you mean by delay in ICMP, is it when you're pinging a website or the router IP Address? There are tons of reason for delay but with proper diagnostics, I'm pretty sure you'll get to the bottom of this. 
    By the way what kind of switch are you referring to? 
    You may check this for more info: SWITCH  

  • JMSControl request/reply possible in WLW 9?

    Hi All,
    Is it possible to send a message and get the response back using JMSCorrelationID using only the JMSControl or do I have to code it by hand? I found some docs explaining how to do it in WLW 8.1 but there seems to be no doc which tells how to do it in 9.
    Thanks,
    Daniel

    Hi Daniel
    In Workshop version 9.x, a JMS control can't be used to receive messages. You can only use it to send messages.
    In WLW8.1 we had support for both send and recieve. The link below talks about it under the section 'Replacing JMS Control Receive Functionality' http://edocs.bea.com/workshop/docs92/ws_platform/upgrading/conUpgradingJavaControls.html
    Some more info at http://edocs.bea.com/workshop/docs92/ws_platform/controls/system/jms/navJMSControl.html
    Vimala-

Maybe you are looking for