Sending Msg From HTTP client to XI through JMS Adapter using WebSphereMQ

Hello
I am trying to send some msg from Http client
I configured JMS adapter as receiver
Transport Protocol :WEBsphereMQ JMS provider
Message  protocol :JMS1.x
I have given the Ip  address  of my machine where I installed WEB Sphere MQ
Server Port :1416
Transport Protocol :WebSphere MQ
JMS compliant: JMS-compliant
In SXMB_MONI
Http client sends message without any error.
But while tracing I got message
<Trace level="1" type="T">Async barrier reached. Bye-bye !</Trace>
Can anybody tell me the solution..
Thnaks

Hi,
  I have not directly faced this but i may suggest ,
1. What do you see in sxmb_moni, do you have a queue problem?
2. see this File-to-File Scenario Stopped Working  the reply from Shravan and the last message.
<i>The XBTO que was the problem. I deleted all LUWs in it and now new transactions are working again</i>
3. You may also use this /people/sap.user72/blog/2005/11/29/xi-how-to-re-process-failed-xi-messages-automatically
Regards,
Anirban.

Similar Messages

  • TS3899 When sending email from the Mail App or through other Apps, my default From: address will change when I enter a To: address.  This sometimes leads me to send the email from the wrong outgoing email account.  It is frustrating and poor design.

    When sending email from the Mail App or through other Apps on my iPad, my default From: address will change when I enter a To: address.  This sometimes leads me to send the email from the wrong outgoing email account.  It is frustrating and poor design, especially since I had already checked the From: address.
    iPad 4 running iOS 8.1.3

    3rd party email addresses have to be deleted on every synmced mac product, although I have 1and1.co.uk and my imac updatetes the mails in that account from mac mail.
    Yahoo etc is a 2 step deleting process but good to get your emails pushed when on the go.
    LJ
    http://www.facebook.com/The.Cowboy.Party

  • Error while creating Sales Order From HTTP Client

    Hi,
    I have a scenario, wherein I need to create SO from HTTP client (an HTML page). I paste my xml source data in the payload area and send the message. I get back this response:
    Result:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns1:Deep_RFCResponse_MT xmlns:ns1="http://mindtree.com/xi/m1004968"><SALESDOCUMENT><SALESORDERNO></SALESORDERNO></SALESDOCUMENT><RETURN><item><TYPE>E</TYPE><ID>V1</ID><MESSAGE>Sales document type OR is not defined</MESSAGE></item></RETURN></ns1:Deep_RFCResponse_MT>
    I am supposed to get a SO no. here, but I get this message.
    Whereas if I give same data at  back end (in SAP system) the SO no is created successfully!
    Can anybody tell me where am I going wrong, if I am?
    Thank you,
    Cheers,
    Deepak.

    Hi  Prateek.
    You were right.....
    The problem was with the data that I was passing. I was passing OR as the document type, which internally was being converted to TA.
    It was creating the SO successfully because I was using the transaction se37 and this is where OR was converted to TA.
    But if we use va01 to create the SO, we get this error.
    Thank you....
    Points!! definitely
    Cheers,
    Deepak.
    Edited by: Deepak MS on Mar 13, 2008 5:20 AM

  • Is it possible to send varient from one client 800 to another client 810

    hi
    is it possible to send varient from one client 800 to another client 810,
    could u plz explain clearly,

    Hi,
    You can use the transport mechanism to transport variant.
    Go to SE38, type in the report name and choose "Variants". Then select the variant and choose the menu Utilities -> Transport request. Add the variant to an existing transport.
    Then use the standard procedures to move the transport request from client to client.
    Hope this helps (please reward me if it does).
    regards, Joerg

  • How can i send msg from iphon to ipod?

    How can i send msg from my iphon to the ipod?

    Yes as long as you are Messaging the iPod with an email address that is not listed on the phone in Settings>Messages>Send and Receive.
    If both devices are using the same email Apple ID there will have the same email address and phone number listed in Settings>Messages>Send and Receive.
    You can on the phone uncheck the email adress in Settings>Messages>Send and Receive.
    If you want to FaceTime one another do the same for Settings>FaceTime

  • How do i send photo from ipad to my hp 6500a plus printer using eprint app?

    how do i  send photo from ipad to my hp 6500a plus printer using eprint  app?

    Hi,
    Have you read this ?
       http://www.apple.com/support/ipad/assistant/airprint/
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How can I send files from my macbook pro to my iPad air using airdrop

    how can I send files from my macbook pro to my iPad air using airdrop?

    Your going to have to find some alternative.  See Dukto will work.
    "Dukto is a simple application that allows you to share files between devices connected to the same (wireless) LAN network."
    http://www.tidal.it/?page_id=309&lang=en
    http://www.msec.it/blog/?page_id=11
    "Box lets you store all of your content online, so you can access, manage and share it from anywhere. Integrate Box with Google Apps and Salesforce and access Box on mobile devices" Rated the most secure cloud storage by SkyHigh Networks.  You can buy a license to run box one of your servers.
    https://www.box.com/
    Files Connect -- "Cloud Storage services like Dropbox, MobileMe iDisk, Google Docs/Picasa, Facebook photos, FTP, SFTP, WebDAV ... AFS (Apple File Shares) SMB (Windows shares)  protocols"
    https://itunes.apple.com/us/app/files-connect/id404324302?mt=8
    "The kiteworks mobile file sharing solution provides secure creation, viewing, and sharing of enterprise content on smartphones and tablets while providing IT and security teams the administrative controls to manage user privileges and access rights necessary to ensure enterprise security and compliance."  " Includes choice of private cloud on-premise."
    http://www.accellion.com/solutions/mobile-enablement/mobile-file-sharing

  • Problem while sending ByteArray from as3 client through netconnection call method to red5 server

    Hi to all,
    I'm trying to send from as3 client a ByteArray of more or less 3 MB using NetConnection's call method but I am unable to do it, cause I get a timeout on the server and the client get disconnected (I have also increased the timeout limit in red5.properties but nothing changed). If I try to send a smaller ByteArray I don't have problem, even if the trasfer is really slow.
    Any solution?
    thanks

    put it in code tags so it's readable
    CLIENT
    public void sendLoginData(String data)
    int c=0;
    byte loginData[]=new byte[data.length()];
    loginData=data.getBytes();
    try
    out.write(loginData);
    System.out.println(client.isClosed());
    // here i want 2 receive the 1 byte data whch i hv sent frm server's RUN() method
    //following code is not working :( it gets hanged
    while((c=in.read())!=-1)
    System.out.print(c);
    System.out.print("hi");
    catch(Exception e)
    System.out.println("Caught:" + e);
    finally
    out.close();
    }SERVER
    public void run()
    boolean flag;
    try
    flag=verifyLoginData(ID); //this function verifies the login data by connecting to DB
    System.out.println(flag);
    if(flag==true)
    //send login valid
    bos.write(1);
    bos.close();
    else
    //send login invalid
    bos.write(0);
    bos.close();
    catch(Exception e)
    System.out.println("caught " + e);
    }

  • HT204380 Can't send msg from Iphon 4s to Ipod Touch?

    Hi
    I bought Ipod Touch for my young daughter...set it up for her and she can now send imsg to me which I can received hers...BUT I can' send msg to her. WHY??
    Can anyone help me on this please?
    Thanks a million!

    Is it actually sending via iMessage from your daughters device?  Meaning, does it show as a blue bubble?
    Also, read through this: http://support.apple.com/kb/ts2755
    Does any of that help?

  • How to send msg from "Drafts" folder

    How do i send a msg from the "Drafts" folder

    Firefox doesn't do email, it's a web browser.
    If you are using Firefox to access your mail, you are using "web-mail". You need to seek support from your service provider or a forum for that service.
    If your problem is with Mozilla Thunderbird, see this forum for support.
    [http://www.mozillamessaging.com/en-US/support/] <br />
    or this one <br />
    [http://forums.mozillazine.org/viewforum.php?f=39]

  • Sending msgs to certain clients

    All I have blazeds setup and messages being send to the frontend consumers. How do I do an async message and send it to only 1 of the 3 connect client frontend channels. Is there a way to subscribe or select msgs from certain clientId's?

    Hi Dave,
    As usual, an interesting question..
    For this one, you have to have the source code to the Xtra to
    know exactly
    how it handles socket communication.
    For tcp sockets in general, it's the system that handles i/o,
    and each
    socket works independently.
    So, long as the app (the xtra) makes sure that data are
    copied to the
    socket's buffer soon as the system informs the app that it
    can send more
    data, then you have optimal performance - at least for the
    type of sockets
    the muXtra uses.
    As for your question, I'd say neither.
    When you send a message, it is converted to binary data and
    stored in the
    object's (not socket's) send buffer.
    Soon as all data are sent, and long as more messages exist in
    the sendque,
    then the next message is copied to the send buffer.
    So, if you send 2 messages to two users, it is possible that
    both messages
    are delivered to one of them, while the other is still
    receiving the first.
    "Dave C" <[email protected]> wrote in message
    news:fktrnq$cvh$[email protected]..
    > In a p2p application, when a message is being sent to
    multiple clients,
    > how does the instance performing the server function
    accomplish this?
    > Specifically, if the message is a large amount of data
    broken into
    > multiple packets, does it send all packets to client 1,
    then all packets
    > to client 2, etc? Or does it send packet 1 to all
    clients, then packet 2
    > to all clients, etc?

  • How to copy a role from one client to another in a system using the CUA?

    Dear all,
    I have a question about transporting roles. We have CUA configured on our SAP system. Our development environment contains several clients. Recently I created a role by using PFCG in the development environment named E1D-100. Later there was a need to affect a user by this role but on another client of the development environment named E1D-200.
    How can I transport a role from a client of the development environment to another client of the same environment.
    While I use SU01 to assign the role, after clicking on "user comparing", I can see that the new created role exists on E1D-100 (the client of the development environment where the role was created), but I see that the role doesn't exist on the other client E1D-200.
    How should I proceed?
    Thanks in advance,
    Dariyoosh

    Hello again,
    Thank you very much for all of your answers. I tried both solutions and both worked pretty well. Thanks a lot for your help.
    Kind Regards,
    Dariyoosh

  • Sending Large size files through JMS adapter.

    We want to receive files larger than 5MB via the JMS receiver adapter. The receiver side has WebSphere MQSeries version 5.3.12.
    The channel we are using is SYSTEM.AUTO.SVRCONN.
    I can see a MQJMS2007 error in RWB for the JMS adapter.
    Does the XI JMS adapter have features to handle large files > 5MB?

    Neogy
    As far as my knowledge goes it supports MQSERVER. But I am not sure of AMQCLCHL.TAB. Also AMQCLCHL.TAB have some disadvantages when compared with MQSERVER.
    http://www3.sympatico.ca/n.rieck/docs/mqseries_client_on_openvms.html
    Also the primary inefficiency of this AMQCLCHL.TAB format is its size. When this file is managed by the queue manager (which is your only choice without using this perl module), it grows and never shrinks. When channels are deleted, the linked list pointers are modified so that the deleted entry is merely skipped, but it is not removed from the file.
    http://aspn.activestate.com/ASPN/CodeDoc/MQSeries/MQSeries/Config/ChannelTable.html#Secrets%20of%20AMQCLCHL.TAB
    When new entries are added, a deleted entry will be searched for and reused if found. If not, a new entry will be added to the end of the file. The size problem occurs if you ever create a very large channel table file, since that will effectively extend the file size permanently.
    use of MQSERVER differs from AMQCLCHL.TAB only with respect to the exits. To learn more on this:
    http://eai.ittoolbox.com/groups/technical-functional/mqseries-l/162315#
    Regards,
    ---Satish

  • Restrict message volume through JMS adapter (not individual message size)

    Hi, does anyone know of a way to restrict the flow of messages through a JMS adapter? For example, If I wanted to only allow up to 1000 messages to be sent in an hour to a particular system. The rest should just be queued in the Adapter Engine until the next hour begins in order to smooth out the load on the recieving system.
    I know this is poor design but there is a system that is getting overwhelmed and cannot be easily changed right away. I'd like a way to control this from the middleware using standard PI (no ccBPM).
    Any ideas?
    Thanks in advance,
    Aaron

    Stefan, thank you for the idea, that is a good one.
    I'm going to assume there is nothing specific we can do in the SAP JMS adapter to control the flow, and look to a solution in the queueing software like you suggested or the 3rd party application.
    -Aaron

  • Converting QoS from EO to EOIO in Receiver JMS Adapter

    Hello All -
    We are currently working with SAP XI 3.0 SP12. Our scenario is something like this:
    IDoc -> XI (BPM) -> JMS Adapter
    The BPM splits up the incoming IDoc into multiple JMS messages.
    The problem is that when the BPM sends the message to the JMS adapter the QoS changes from EOIO to EO. This essentially means that when the messages are written to the JMS Queues, there is no gurantee that they would be written in exactly the same order in which they are produced.
    The requirement is to write the messages in exactly the same order in the target queues.
    One solution is to capture the transport level acknoledgements and then send the next message from the BPM only on the receipt of the acknoledgement which takes a lot of time.
    Is there any other mechanism to ensure the messages going out in an EOIO fashion.
    Ashish

    Its like this , i ve file -> bpm -> idoc scenario. 've configured EOIO as the QOS for both adapters. file adapter is configured to pick up a pattern , say *.abc.
    The picking option is "By Date". Say there are 5 files in the directory before a particular polling interval which has about 5 sec time delay b/w them in their timestamp.
    Now the file adpater picks the files in order , delivers it to ccBPM, i can see 5 diff ccBPM instances(diff workitem IDs).
    Say, the third file has less data , the transformation happens faster in the 3rd ccBPM instance and so it delivers it to the idoc adapter vefore the 1st or 2nd one completes. So my order is lost.
    Now , i tried setting "transport ack" in send step , but didnt help.Is there any other specific setting to be done ?
    Thanks
    Saravana

Maybe you are looking for

  • Most of my music is not in iTunes!   How do I get it back?

    10June2013 I uploaded many music CDs years ago.  I kept servaal ipods full of music.  I noticed recently that almost all my music is missing from the Itunes music library.  I update Itunes Match several times a week, I hope to God that my music in in

  • An error occurred while attempting to change modules while starting up LR 4.1. New install on a new

    An error occurred while attempting to change modules while starting up LR 4.1. New install on a new MBP first time trying to start up

  • Foreign Currency Clearing

    Hi all, I post a vendor invoice in foreign currency and also make a payment of the same in foreign currency. But the system does not generate line item for foreign exchange gain/loss. The exchange rate it determines for open item clearing is the same

  • Displaying the PDF ByteStream on to the browser?

    Hi, I want to display a pdf on the browser. I have with me the byte stream, using which I need to display the pdf directly on the browser. Currently, I am storing it in my local file system by creating a file output stream. But its taking a lot of ti

  • Update BP code in DTW

    Dear All, How to update BP code in DTW Template. I already add BP code through DTW and i want change BP code. Regards, Sridharan.