How to include chat Messaging in Apex

Hi, does anyone have an idea as to how to use Message Chats in apex, using it for a peer to peer chat application i'm building.
Thanks.

Check PRIOR threads and you MIGHT find what you are looking for: [b]Adding IM (XMPP/Jabber) messaging to APEX[/b]
Thank you,
Tony Miller
Dallas, TX

Similar Messages

  • How to include a message with photo in Win Live and LR4

    I have Win 7 - 64 bit, Win Live Mail and LR 4.  I can attach the photos and send the email successfully but cannot include a message.  It puts my message into a HTML Doc next to the photos.  How can I access the body of the email to write my message?  

    Open the photo, assuming it is in Photos, and then in the lower left corner under the photo is a box with an up-pointing arrow.  Tap that box, and then the photo will have a blue circle with a checkmark in its lower right corner and the word Next at the upper right.  Tap Next, then choose how you want to send the photo, by text message, email, and so on.  Simply address the method you have chosen and put in any text you want to include.

  • How to display Error Message in APEX from Database Stored Procedure

    Hello,
    Using APEX version 3.2
    DB version 9.2.0.8.0
    Internet Explorer version 6
    I have an After Submit Page Process that calls a stored procedure. In the exception section I'm using dbms_output.putline to display an error message, but the error message is not displayed in APEX. How can I have the error message generated from the stored procedure display in APEX?
    Thanks so much.

    Hi Apex_Noob,
    I created On Load - Before Header process that uses apex_application.g_notification := :P3_ROLE;I'm sorry but I'm not sure what you mean by "instead of using dbms_output.putline use :P1_ITEM"
    I have the following code in my stored procedure
    EXCEPTION
         WHEN OTHERS THEN
         dbms_output.put_line('Role does not exist');Thanks.

  • How to include original message body in the reply to a workflow notificatio

    Hi,
    I have a requirement from my clients.
    Standard Functionality: When a Manager clicks on the APPROVE (button / link) to approve a workflow notification from a mailing application, a (response) mail gets composed to the Workflow Mailbox with the NID and Access Key. The content as shown below.
    ===========================
    Action: 'Approve'
    Comments: ''
    NID[3699/874478985@WFMAIL3]
    ===========================
    Requirement:
    The requirement is that, when the Maanger clicks on Approve / Reject, the original message body also has to get populated into the response mail along with the NID and Access Key.There would be audits conducted(looking into the workflow mail box) on the approval / rejection decisions taken by the users. The intention of getting the originial message body is to identify, to which notification(or letter) this action was taken. Me, being a Technical person can get it from the Notification Id in the workflow mail box, but the people conducting the Audit cant identify that. So, I need to get the original message body into the response. This is the reason for the requirement.
    Actually, I dont need the whole message body, but the value in an URL attribute, which is one of the SEND attributes of the notification in question.
    fyi, It is a VOTING ACTIVITY and hence, I donot know how many users would get the notification.
    I tried creating a RESPONSE Attribute(I understand that, a response attribute is an attribute where I accept inputs from the user), but couldnt assign the value to that attribute.
    Regards
    Anil K A

    Sadly, I believe this will require a bit of development to make it happen. The project I'm on now...we are finding that to get it to do what we want it to do, a development to customize the email message to include all the case fields is required.
    D

  • How to display confirm message in APEX pl/sql process

    I have a pl/sql process that selects success messages from a database table. These messages need to be displayed to the user and confirmed (only one button, to acknowledge/dismiss the mssage) along the way.
    Is there a way to do this within the process? I see lots of examples in the Forum of doing this in javascript (which I know very little about) but suspect there must be a simple way to do this in my pl/sql process.
    Help?
    Thanks,
    Carol

    Hi Carol,
    You can put you success messages inside page items or application items (when pages are rendered or processed...).
    Then using :
    1) javascript can display these values
    2) rendering the page can display these values
    Hope this help
    Louis-Guillaume
    Homepage : http://www.insum.ca
    InSum Solutions' blog : http://insum-apex.blogspot.com

  • Scam to chat message

    There are more than 10 messages everyday from foto hahaha http://drhoelldmd.com/images/image.php?9Zh25d12
    and it shows that it from one of my friend.
    So I deleted my friend from contact list.
    She actually did't send those things.
    I don't know how to block these things. It is annoying.
    Please help to fix it.
    I feel like want to stop using Skype because of this.

    yxes2013 wrote:
    Hi all,
    I am adding Sb as friend in my task list. How can I chat message with him?
    Thanks,
    zxy
    This question is NOT related to this Database General Questions forum space.
    It does not belong here.
    Your post is locked because it is outside the scope of the Database forum space.
    ( ... and there is no private chat function on this forum web site.)

  • HT5622 I tried to send a photo on my phone in a chat message.  The photo locked up.  I can't get back to photo stream.  How do I restart phone or solve issue otherwise.

    I tried to send a photo on my phone in a chat message.  The photo locked up.  I can't get back to photo stream.  How do I restart phone or solve issue otherwise.

    More than likely you can get the phone back by doing a reset. Hold the sleep/wake and home buttons together until you see the Apple logo and then release. The phone will reboot.

  • How to include an image or pdf file in a message for this forum

    Can someone please tell me how to include in a message like this one an image or a pdf file?
    Thanks

    Read here _[Help and terms of Use|http://discussions.apple.com/help.jspa]_ which you can also can find in the right panel in the forum
    You can put your image on flickr.com or imageshack.us or similar sites.

  • How to include ojdbc.jar with applet in apex

    Hi,
    I am integrating applet with apex. I need to use ojdbc.jar to connect to Database. How can i include this jar. I tried uploading it as a static file. But i am not sure how to embed it with applet code in region source of a page. I am using following code to embed the applet.
    <applet code="TestApplet.class" archive="#APP_IMAGES#Test.jar" width="500" height="500">
    </applet>
    Please suggest how to include the ojdbc.jar.
    Regards,
    Shweta

    Thank you all for help, from your posts I was able to get the datepicker working with a different version of jQuery (but not jQueryUI) included on the page. There are two methods:
    1. Include the new library before #HEAD# and change the reference to a different variable, for example:
    <script src="jquery-1.6.4.min.js" type="text/javascript"></script>
    <script type="text/javascript">
      var jq164 = jQuery;
    </script>
    #HEAD#2. Include the new library after #HEAD# and enable noConflict() mode, for example:
    #HEAD#
    <script src="jquery-1.6.4.min.js" type="text/javascript"></script>
    <script type="text/javascript">
      var jq164 = jQuery.noConflict(true);
    </script>In both examples above, $, jQuery and apex.jQuery point to apex jQuery, while jq164 points to the new one.
    However, I couldn't manage to include a newer version of jQueryUI. I only found a page ([url http://stackoverflow.com/questions/6358961/using-multiple-jquery-ui-versions]http://stackoverflow.com/questions/6358961/using-multiple-jquery-ui-versions) that says you have to specify a different context for each version of jQueryUI included on the same page. I haven't yet had time to look at this, so if anyone already knows how to do it, it would be really nice to share it with us.
    Regards,
    Jure

  • How to make use of notify-send to get alerted when a chat-message arrives?

    I would like to get notified, if a chat-message arrives. I tried two add-ons, both will play a sound, but not show a notification-window, as promised, so I'd like to do it myself, using `notify-send`. I suppose, that'll take to listen to a fitting event and execute notify-send, can someone please give me a hint, how to do that? Docs are rare.
    Using Thunderbird 24.4.0 on Ubuntu 12.04
    TIA, ida

    Hi Matt and sfhowes,
    I have tried several-addons with no success and suspect a problem with my Ubuntu, as they don't show any problem-reports of other users.
    Writing a Thunderbird-add-on is a little bit challenging and not as well supported than writing a Firefox-Add-on. Also the used JS-func for alerting, when messages arrive, shows a lot of bug reports.
    So I decided to go for a shell-script-solution now, listening to a fitting child-process and sent notificia. I will post it , when it's finished.
    Thanks for your replies
    Ida

  • How long does my private chat/message convertation...

    How long does my private chat/message convertation last in skype? I can't find back one convertation from januar-feb 2015 and some from 2014. Do skype delete my message if i don't write for a while?
    This post was transferred from its previous location to create its own new topic here; its subject and/or title has been edited from "Skype messages" to differentiate the post from other inquiries and to reflect the post's content.

    thanks for the reply, how ever ive already contacted itunes support and they didnt say any thing about why my ID was disabled. So now what go directly to Tim cook an have this problem resolved ? P.S your user name is great

  • How to recover old chat messages?

    please help me...i want message from the year 2014 from one person ...i delete the person but i want the mesages...how  can find the message...????
    [Topic title updated by moderator to be more descriptive. Original topic title was: "Messaging"]

    Hi and welcome to the Skype Community,
    You cannot recover old chat messages, I'm afraid. Skype will only synchronize maximum the last 30 days of conversation when you start it for the first time on a new device.

  • How to get Mac Messages to NOT save chats?

    How to get Mac Messages to NOT save chats?
    I went through the Preferences but I do not see where I can check/uncheck save chats.  Will someone help direct me?

    Hello mayonnaise18,
    Thank you for the question.  You can disable the option to save chats in the Messages tab in Messages>Preferences:
    Automatically save conversations when you close them
    Choose Messages > Preferences, and then click Messages.
    Select “Save history when conversations are closed.”
    These steps are to enable the option to save messages, but you would want to uncheck the option to "Save history when conversations are closed."  You can find the full article here:
    Messages (Mountain Lion): Save conversations
    http://support.apple.com/kb/PH12012
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • How do i send message only to intended client  (Private Chat) ??

    i need embed a live chat for customers where they can send their queries to Customer Care executive.
    Customer care executive will respond to thier queries.
    Now my requirement is to design a chat application in which i need to send message to the intended client only
    Client and Customer Care executive will both use the Samev Web application to chat.
    I can get the messages from client ,but how do i send message back to the intended client only ??
    Please advice me if their is any good design strategy or technology which will fulfil my requierment.
    Please guide me !!

    Requirement is :
    1. User first select the section , as per his queries
    such as
    a.Technical Support
    b. Complaints.
    c. General Queries
    (for every section there are more than one Customer Care Executive's)
    2. Now i have to first decide that to which Customer Care Executive(CCE) (thar are logged in ) i may redirect the user. The criteria is : Select CCE who is least busy.
    3. The CCE is using the same web application to respond the Customers.
    4. Now the Customer and CCE should have private conversation with each other
    Regards

  • How do you download messages on a mac book pro.. i only have i chat and i need messages

    i just need to message my friends.. how do i download messages on my mac i only have ichat

    Messages is part of Mountain Lion - you can't just download Messages, you have to install Mountain Lion in order to have Messages installed.
    Clinton

Maybe you are looking for