How can i send a message to specific user?

I know I need to use ptp messaging when sending a personal message to a particular person.
How can I specify so that the person with name mike is going to receive?

Put in your message header in the form of name/value pairs, the knowledge you want to use to control the consumer flow of your messages. For example (personName, Mike). Then setup a selector on the consumer side with personName = 'Mike' (see the JMS spec for this, or your product dev guide). This will allow the consumer Mike to get the message.
Now will that prevent anyone else from reading the message? No. Anyone that would not filter on the personName could consume the message. Another way of doing it (in a more complex fashion) would be for Mike to create a temporary queue, and to send the queue name to the producer in a message on a management queue define by you. This way, only the element knowing about the queue name will be able to use the queue, hence, the producer targeted by Mike, and himself. If you need to get to that extent, then you probably also want to setup the security, so that only authorized consumers and producers can connect to your queueing system.
This forces you to allow temporary queue creation, which is sometime seen as a security risk.
HTH
TE

Similar Messages

  • How can I send a message from database to a J2EE application?

    How can I send a message from database to a J2EE application?
    If I have a codetable in database that has new or modified values I have to refresh the codetable in my J2EE application.
    Most effective way would be send a message to initiate a table reload from J2EE app, but I don't know how to do this.
    Now I have a background thread that regular reads the table and looks for changes.

    http://www.oracle.com/technology/products/integration/bam/10.1.3/TechNotes/TechNote_BAM_AQ_Configuration.pdf
    This document details how to create triggers on a table that send out JMS messages.
    In this example, the messages are going to Oracle BAM.. your message could go to your J2EE application listening to its own topic/queue.
    an alternative idea.
    you could also just cache your lookup table with something like Oracle Coherence and than try to ensure that all changes to the lookup go through Coherence, so that you won't need to do notification from the db up to the application. the application and the lookup data management tool would be using the data grid for management of the lookup table data, and the data grid (coherence) would persist the lookup data changes back to the db.

  • How can I send a message to multiple contacts using "groups".

    How can I send a message to multiple contacts using "groups".
    It was easy on my sony ericssonn....do i need to download an app?

    There is no group send option like you are looking for.
    To send to a group you have to pick each person you want to send to and send as a group that way. Then don't delete that SMS thread and you can reuse it again later.
    As for an app, well SMS works via your carrier and the OS, not something an App can do unless the app send the data to them (a third party) and then they relay it to the carrier. Do you really want to be sending your SMS to some 3rd party first?

  • How can I send whatsapp messages using Siri ?

    Hi,
    How can I send whatsapp messages using Siri ? or how can I ask Siri to read my whatsapp messages ?
    thanks for help!

    kladrian wrote:
    this is not the case in particular
    Yes it is.  If it wasn't the case, then why are you asking the question to begin with?
    why everytime I have a question about a simple activity present in Android system I get in response ... "you can't sorry" !?
    1.  Because iOS is not Android
    2.  Because it's the truth, whether you like it or not

  • How can i send simple message from PC-to-another device

    How can i send simple message from PC-to-another device
    just simple message (like command String) not SMS or Data File.
    I have a computer with bluetooth and the oter side is Embeded Blue
    Thanks.

    http://www.oracle.com/technology/products/integration/bam/10.1.3/TechNotes/TechNote_BAM_AQ_Configuration.pdf
    This document details how to create triggers on a table that send out JMS messages.
    In this example, the messages are going to Oracle BAM.. your message could go to your J2EE application listening to its own topic/queue.
    an alternative idea.
    you could also just cache your lookup table with something like Oracle Coherence and than try to ensure that all changes to the lookup go through Coherence, so that you won't need to do notification from the db up to the application. the application and the lookup data management tool would be using the data grid for management of the lookup table data, and the data grid (coherence) would persist the lookup data changes back to the db.

  • How can I send a message in the iPod touch 5g

    I can not send a message from iMessage how can I send messages

    Yepezlitzy123 wrote:
    I can not send a message from iMessage how can I send messages
    You do not state what happens when you try...
    See here...About Messages
    And...
    Using Messages  >  http://support.apple.com/kb/HT3529
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755

  • How can I send "new" iMessages to apple users?

    I am unable to send new iMessages but I can send iMessages from previous threads. How can I send new iMessages to other apple users?

    Just click the button in the top right corner that looks like a pencil on a piece of paper make sure you are at the main I message screen were all the threads are listed.
    If that's not the issue you can try:
    1.hold the home and power button for 10-11 seconds
    2. When the slide to power off comes up ignore that and keep holding home and power
    3. The screen will go black and you will see an apple logo that's when you can let go of the home and power button
    4. The. iPhone will come back on and you can try sending a message
    If it still does not work
    1. Go to settings> General> Reset> select "Reset All Settings" this will not erase any data on the device it will only reset the settings
    2. After that try to send a message again
    If that does not work you can try this
    1. Plug your iPhone into iTunes and click your iPhone in iTunes
    2. Then press backup iPhone
    3. Then restore your iPhone this will erase everything and reinstall the operating system
    4. Try to send a message and see if it sends
    5. Then go back into iTunes and select restore from backup and select the backup you made earlier this will put all the data back on the device all apps will need to be re downloaded but app data will still be on the device. Pictures and messages. Will also be their.
    If that did not solve your issue I would then go into the apple retail store

  • Send system message to specific users

    Hi,
    We have a requirement to send a system message to specific users that will be displayed immediately to those in the list who are logged on, or for those not currently logged on, the message should be displayed when they next log-in.
    We do not want the message to go to their in-box or to be sent by email. We are looking for something similar to the system message produced by SM02.
    Does anyone have any ideas or examples?
    Thanks
    Jan

    Hi Mylene,
    We have looked at TH_POPUP.
    This works fine if the user is logged in but not if they are not. We need something that will pop up when they do log in.
    Thanks for your help tho
    Jan

  • How can i send a MESSAGE from an object to another object?

    i've following code:
    class Receiver {
         private String str = "Your message is recieved to me.";
         String sendBack() {
              return str;
    class Sender {
         public static void main(String[] args) {
              Receiver r = new Receiver();
              System.out.println(r.sendBack());
    }I'm confused with the concept of MESSAGE in java. All i gather about it is that when two objects want to communicate with each other they send messages to each other. One object is sender of message and other is its receiver.
    Here reciever object 'r' itself performs its method and does not communicate with any other object. How do i change this code into where two objects communicate with each other?

    Well the OO theory says that objects comunicate via messages, now that information must be taken as knowledge only, not for programming issues really. What you need to know is that when you need to pass any data from onw object to another you can send them via parameters of defined methods.
    For example you have an Object called R of a receiver class and that object needs to pass a String (text message) to another object. you can do it via a method.

  • How can I send the messages in the CANdb file to the hardware(PXI-8464)?

            I tried to open a Vector CAN Database (*.dbc) and wanted to transmit the message of the database ,but I do not know how to achieve it ?  I want to  send the messages of Vector CAN Database (.dbc file) out through the hardware( PXI-8464) of NI device. What confused me now is that I do not know how to read the message  of  the .dbc file after improting it into labview, also I do not know use what kind of  tools  to control the progress of reading and sending. Because some part of the .dbc file is blank and needed to be filled from the Labview front pannel , so the connection between the  control (on the front pannel)and the .dbc file has to be setup, further more, I do not know how to make that out . For example,if a message in the .dbc file has a value table for a message, such as message 'SwitchStatus' that shows a 0 = open and 1 = closed, is there a way to read this value table into Labview and send it to the hardware( PXI-8464) of NI device.

    Hi
    I have tried it according to your help, but the message can not be recieved by CANoe. WHY?
    Look forward to your reply.
    Regards
    Vivian

  • How can I send a message on message?

    So, I got message when I downloaded OS X Mountain Lion. The problem is, when I try to send something it says that I can't. I'm signed in and I'm all ready to send but the problem is, the system obviously doesn't let me send. It says "Your message could not be sent. Your iMessage account is not signed in" and then i gives me the to choices "Sign in" and "Cancel"
    How can I actually make it sign in so I don't always have to text from my phone?

    HI,
    In the Messages Menu > Accounts it will tell which accounts the app has and the ticked ones will be logged in
    The same can be seen in Message Menu > Preferences> Accounts but you have to highlight each account and see if the "Enable this Account" box is ticked.
    However this does not always mean the account was successful in logging in.  (Essentially it means the account is "ON" and should login). It does not change if the account fails to log in.
    You can have an iMessages account (To Apple IDs and iPhone numbers that have been Registered and are On Line)
    The Bonjour account everyone has but is Disabled by default (LAN based Chats only)
    You may have AIM or Jabber based names and IDs
    These may or may not accept Off Line IMs.
    It could be the server (Jabber) involved does not store them.
    It could be that the person has set to Not receive them.
    See the Preferences > General Section > "When I quit Messages, set the Status to Off Line"
    This tells the Server that you are fully off line (the app "Listens"  if the computer is on otherwise)
    Although this does stop Off Line IMs it is not the same as setting it here
    https://settings.aim.com/
    Logging in to this page requires either and older @mac.com name or an actual AIM name.
    (@me.com and @icloud.com need a dual log in to me.com to allow AIM to verify the password  (iChat 6 and Messages do this dual login)
    Jabber servers  vary on this function.
    With an iMessages account you can only tell if a Contact is On line when their iMessage ID makes their name in the "To" filed in the Messages window turn Blue.
    There appears to be only one messages for Unregistered or Off line/Unavailable Contacts.
    They appear to go Red if the iPhone has no power or is without Cell Coverage or Wifi  (Same for iPad if not Wifi)
    You cannot send Off line iMessages either.
    10:01 PM      Wednesday; February 13, 2013
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How can someone send a message and it shows up from my number

    Please someone help me!!! I am getting messages from someone, I reply, but there is also someone else that replies and it shows from my phone number. it is like i am in the middle of someone elses conversation.. what is going on how can i fix it?

    Try contacting your carrier to see if they can help.

  • How can I send text messages without being a thread as an group??

    Hi guys, I want to send text messages so several person without being an SMS as an group chat.
    Why do I want it?? Well it's mostly to send Christmas greetings to several persons without they know to whom I send to because many of them dot even know each other.. And I don't want the recipients to see the numbers of other recipients..
    I've read in the forum that you can turn off the "group messaging" in the "messages" bar. However i don't have that, so is there any other ways I can aens text without it being an SMS as group????

    naxster wrote:
    I've read in the forum that you can turn off the "group messaging" in the "messages" bar. However i don't have that, so is there any other ways I can aens text without it being an SMS as group????
    Thats because use you're not looking I the right place.  Settings -> Messages -> group messaging

  • Can I send a message to multiple users at once?

    My company has an internal Jabber/XMPP server that we use to communicate as a group. Up until recently, I've been using a Jabber client called Psi (http://psi-im.org/) to connect to our Jabber server and do messaging. However, I recently decided to give Messages a try, since it includes support for the Jabber protocol. It is working great, except for one feature that I can't seem to find. With Psi, I was able to right-click on the heading of a buddy group and choose to send a message to all of the members. With Messages in Yosemite, I get an option to "Send instant message to members," but all that does is pull up my messages window with a random contact from the group selected. I also don't want to start a group chat, I just want to send a broadcast message to the group. Maybe this is just a distinction that Messages doesn't make, but with Psi there was a distinct difference between a message (just a single message, in its own window, sent from one person to one or more other people) and a chat (an ongoing conversation with one or more people, all in the same window).
    Right now when I want to send one of these messages, I quit the Messages app, start Psi, send the broadcast message, quit Psi, and start Messages back up again. I'd like to be able to just use Messages.
    Any thoughts?

    Hi,
    The Yahoo add-on bits in Messages are not worth the code they are written on.
    When it was muted to be coming (pre iChat 6)  we thought it would be added the same way and Jabber was in iChat 3 (later amended to allow the Google Name issue to be circumvented by having A Google Entry) including Group Chats, Direct IM, Video Chats and Audio Chat if only to other iChat/Messages users.
    However this is not the case and it only does 1-1 text chats and can only use actual Yahoo IDs
    8:19 pm      Wednesday; April 22, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Can I send notification message to other users?

    Hi all,
    Can abap webdynpro send out notification messages to other users in a portal? If a new user select some employees that have overwritten other same users selection, I need to send out notification message to other users that their selection have been resetted by this particular user. Can this be done in abap webdynpro?

    In NetWeaver 7.0 Enhancement Package 2 there is a new feature called Web Dynpro Notification Service. It lets you send events to any other applications which are listending for that same event id.  In a demo that comes with 7.02 we use this technology to create a chat application.  However this functionality has to be built into each application.  They must have an event handler ready to respond to the event.
    So you could build what you describe into your application - but only as of 7.02.  7.02 for the Business Suite comes with BS7i2010 which is currently scheduled to start ramp-up in Q4.

Maybe you are looking for

  • Print report in OAF

    Hi , i have a requirement to print all the values as a report. say i have a page. For each value i have a check box. oN select of the checkboxes the values needs to be printed. How do i proceed on this? the report should be displayed as PDF. what sho

  • Major Problems connecting ATV to iTunes

    I am having major problems in connecting to my iTunes on my PC. The ATV is not showing up in the devices list at all. It started after I reinstalled windows and reinstalled all the software after having major problems with the internet connection. Th

  • Q10 - Outlook contacts missing after software upgrade

    Hi there, I have an executive at my company who upgraded to the Q10.  It started to freeze when she went to her calendar.  I rebooted the device, checked for software updates and upgraded using the latest available software release.  After that upgra

  • Flash Crashing

    I have been having issue with the flash plugin crashing frequently on my 64bit arch install in all browsers. I have an Nvidia gtx 260 with the latest proprietary drivers and the following relevant packages lib32-flashplugin10 - from the aur, I tested

  • Problems with Magic Mouse, OS 10.9.2 with Mac Mini (mid 2010)

    My mouse connects fine to the computer but I can´t use any magic movements at all. What can be the problem? I use Magic Mouse, OS 10.9.2 with Mac Mini (mid 2011).