BlazeDS for Chat application

Hi All,
I am trying to develop a chat application with FLEX and PHP.
Is BlazeDS really required for that?
If so, Do I need tomcat server.
Could you please clarify me?
Thanks and regards,
-Krish

If you want a chat you need real time messaging.
So yes BlazeDS would be necessary. However, as far as I know it doesn't handle PHP
So you will need to create your backend in Java.
Look at the example provided by Adobe in the BlazeDS package. They have a basic chatroom.
I used this example to create my chatroom. It works pretty good.
Hope this help

Similar Messages

  • How can we develope  Chat  application  by using RMI?(urgent)

    Hello guys,
    I want to develope a chat application like Yahoo Messanger application by using RMI. Can I use TCP/IP of UDP protocal to pass data? Please tell me.
    Please give me idea about this topic,Thanks a lot...

    Plz send the code for chat application(min b/w 2
    users) using RMI to
    [email protected],viswanadha.gowrikanth@gmail.
    comYou really needed to resurrect an old thread for this request?

  • Recommendations for a simple, fast GUI LAN chat application? [Solved]

    We now have 4 ArchLinux machines scattered throughout the house. (My wife is an Archer now!). I am looking for a simple fast GUI LAN chat application. I looked at "qchat" but it is a bit cumbersome and doesn't have the option of a small applet to the panel. Any recommendations appreciated...
    Larry
    Last edited by lagagnon (2010-02-13 21:27:00)

    jwwolf wrote:Found this in AUR
    griv
    I just tried it with a few machines and it works fine.
    Excellent choice! Nice, light and unobtrusive. Works well, thanks for the recommendation.

  • I'm trying to download what's app chatting application and the massage given (need your secret answers for the below questions to proceed your purchase request ) but the problem is I forgot my answers :((( how can I reset the questions and the answer ????

    I'm trying to download what's app chatting application and the massage given (need your secret answers for the below questions to proceed your purchase request ) but the problem is I forgot my answers :((( how can I reset the questions and the answer ????

    Visit this site: http://support.apple.com/kb/HT5312

  • Develop chat application for website  +chattiing only for register users  ?

    Please requierd help ..
    How to develop chat application in java...
    for website (so users who r registerd can chat )

    I don't think chat has anything to do with JavaMail.
    If you don't even know where to start and you want to support 1 million users,
    you're best bet is to hire someone who knows what they're doing.

  • N8: what application do you use for chatting, it m...

    N8: what application do you use for chatting, it must support Google talk and msn

    That app was beta is no longer available in it's previous form. I believe it has reincarnated into Social which unfortunately does not support the two networks you referred to. Have you tried Nimbuzz?

  • How do i develop a chat application using jms over web based

    I want to develop a chat application using jms with mailing,file transfer and audio facilities
    can anyone help me to how to go abt that

    There is a good article from Sun on a simple example of what you want - it could serve as a basis for you.
    http://developer.java.sun.com/developer/technicalArticles/peer/

  • 3GS Voice Chat Application

    Hey I'm looking for a specific voice chat application. I would like an app that would allow multiple users to join a chat room and talk via voice with each other on the iphone. I would like this app to also allow users on a PC to join into this voice chat with iphone users. I would also like to make the chat room private so only certain users can join the chat room. Is there an existing application that accomplishes this? I have searched around the internet and haven't found anything yet. Thanks.

    Stebalien wrote:Cool! However, the key exchange system looks a little unwieldy; personally, I would give everyone a permanent "identity" key (preferably allow the user to a GPG key) and then use the socialist millionaire's protocol (SMP) to exchange these keys. Once the keys have been exchanged, they can be used to negotiate shared session keys. This way, once you talk to someone once, you don't need to keep manually sharing a key with them. The OTR library (libotr) does this very well but I don't know how usable it would be for this project (it's intended for layering encryption over existing IM protocols).
    Really thanx for your interest, i refer to the main developer . Be free to come in #seren on irc.freenode.net , to talk directly with him and the community!

  • What are the requirements to build a live video chat application?

    I am looking into making a live video chat application. I
    have seen several examples on the web so my question is not "how"
    to do it. My question is "what do I need" to do it?
    It seems that all the examples use Flex Data Services and
    then some sort of back-end communication server. The cost of FDS is
    well beyond what the client can afford so my question is: is it
    necessary? Is there a way to build this sort of application without
    FDS? Can I get live video streaming to work using only what is in
    the SDK? I know nothing about data streaming, real-time
    communication, etc. and have no idea how to implement this outside
    what I have seen in the online articles so far.
    If there are any other forums that are more appropriate to
    this question, please direct me there. It is not a FDS exclusive
    issue and I am just starting to look into it. I am starting here
    because we would like to use Flash Player for the client-side
    application.

    I am looking into making a live video chat application. I
    have seen several examples on the web so my question is not "how"
    to do it. My question is "what do I need" to do it?
    It seems that all the examples use Flex Data Services and
    then some sort of back-end communication server. The cost of FDS is
    well beyond what the client can afford so my question is: is it
    necessary? Is there a way to build this sort of application without
    FDS? Can I get live video streaming to work using only what is in
    the SDK? I know nothing about data streaming, real-time
    communication, etc. and have no idea how to implement this outside
    what I have seen in the online articles so far.
    If there are any other forums that are more appropriate to
    this question, please direct me there. It is not a FDS exclusive
    issue and I am just starting to look into it. I am starting here
    because we would like to use Flash Player for the client-side
    application.

  • Close a client part of the socket in a chat application

    Hy. I have a chat application where the clients connect to the server. For example lets suppose that there are 3 clients connected to the server. I want to make a method that makes the followings : when a client wants to disconnect from the chat application(from the server) he types 'disconnect', and the connection between server and client is interrupted. How can i do this????

    Here is the exceptionjava.net.SocketException: Socket closed
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.net.SocketInputStream.read(SocketInputStream.java:182)
         at java.io.DataInputStream.readInt(DataInputStream.java:370)
         at chat.common.network.MessageReader.unserializedMessage(MessageReader.java:38)
         at chat.common.network.MessageReader.run(MessageReader.java:29)
         at java.lang.Thread.run(Thread.java:619), and MessageReader class is like this
    public class MessageReader implements Runnable {
        private SynchronizedQueue<IMessage> list;
        private DataInputStream in;
        private static boolean running = true;
        public MessageReader(SynchronizedQueue<IMessage> list, InputStream in) {
            this.list = list;
            this.in = new DataInputStream(in);
        public static void isRunning(boolean isRunning) {
            running = isRunning;
        public void run() {
            try {
                while (running) {
                    IMessage m = unserializedMessage(in);
                    list.offer(m);
            } catch (IOException e) {
                e.printStackTrace();
        private IMessage unserializedMessage(DataInputStream in) throws IOException {
            int type = in.readInt();
            IMessage m;
            try {
                m = MessageFactory.create(type);
            } catch (Exception e) {
                throw new IOException("userialize exc " + e.getMessage());
            m.unserialize(in);
            return m;
    } This

  • How to solve page flickering in a jsp page for chat

    Hi,
    I'm trying to build a very simple chat application. I'm using JSP as the frontend. The problem is that when I want to refresh the messages typed and list of users currently logged in, the page is refreshing using html refresh tag. The result is very bad to the eye since the page flicker. Is there a way to solve this without using Applet ?
    Thanks,
    Ron

    hidden frames for data loading and Javascript for DHTML manipulation, maybe

  • Doubts over the Performance in Developing a Chat application

    We are developing a chat application which needs to update the chat content in the database for the duration of the chat (ie.,For the duration of a session).At the same time the page should refresh and show the current content on both ends.In addition to both these, the database tables has to be checked to detect the occurence of a Network error on both sides.
    We have developed it as a Browser based chat and we have used PHP with MySQL. The performance is slow.
    Can anyone give a suggestion as to whether we can develop the chat application completely from the scratch and if we do that which technology should we choose to boost the performance.
    If anyone is not clear about my problem just mail me.I'll explain it in more detail.
    Thanks in Advance

    Hi,
    I just wanted to know these following answers.
    2) Network failure -- Means (either browswer got killed or data did not arrived/Page Not refreshed)
    3) which WebSErver are U using?
    From java, it is very easy to develop chatting application for which you can use applet and servlets for the same (if you consider the performance is the utmost importance)
    Updating to the database should not be done for the duration levels rather should be done at the event levels(data change/keyboards/session -inf changes).
    Im not sure about PHPs running at client but I can suggest you to use two frames .One is for typing and other one is for displaying information which basically gets the staus from the server abt other users in the chat either from the session, which would be driven by other component which is static) .
    Any how, I just put my ideas (Im sure , you know all these things)
    with regards
    Lokesh T.c

  • How to create smileys in a chat application?

    Hello, i developped a chat application in java
    i use a JFrame, and to put the dialogs, i use a DefaultListModel.
    how can i print smileys ?
    the defaultlistmodel works for printing String, not pictures.
    Can you help me ?

    Hello, i developped a chat application in java
    i use a JFrame, and to put the dialogs, i use a
    DefaultListModel.
    how can i print smileys ?
    the defaultlistmodel works for printing String, not
    pictures.When you say your using DefaultListModel I assume your using it with a JList because otherwise its really pointless. You won't do this code in the list model you will have to do it with the JList by making your own renderer. Take a look at this link here is a good example of using an image in a list. I don't think they have text and an image in the same row of the list, but that shouldn't be too hard to add on your own.
    http://www.codeguru.com/java/articles/449.shtml

  • Video Chat Application : Problem downstream on ios device

    Hi
         I made real time video chat application between mobile (ios and android device with flash builder 4.7 on flex 4.6.0 and adobe air 15) and flash desktop website (flash builder 4.6, on flex 4.6.0 air 4.0).   It's almost done, but there is a problem only ios device subscribe stream is very lag for the first time that video streaming start.   Sometime it is stop for several time before it can be play that stream. I find the cause of it such as network, flash desktop build version, buffer (it's very smooth but there is problem when you press home button while using video chat, It's stream is gone T^T)
    I have the example of downstream :
    // ------------ sample code that using netstream ------------
    if(subscribeNetStream == null)
      subscribeNetStream = new NetStream(subscribeNetConnection);
      trace("Initial for playing agent video")
      subscribeNetStream.client = {onMetaData:function(obj:Object):void{}};
      // display metadata
      var clientMetaData:Object = new Object();
      clientMetaData.onMetaData = function(info:Object):void{
      trace("onMetaData");
      // print debug information about the metaData
      for (var propName:String in info){
      trace("  "+propName + " = " + info[propName]);
      subscribeNetStream.client = clientMetaData;
      // trace the NetStream status information
      subscribeNetStream.addEventListener(NetStatusEvent.NET_STATUS, subscribeNetStatusHandler);
      // set the buffer time to zero since it is chat
      subscribeNetStream.bufferTime = 0;
      // subscribe to the named stream
      subscribeNetStream.play("Stream_name");
      // attach to the stream
      if(!videoSubscriber){
      videoSubscriber = new Video(uicAgent.width, uicAgent.height);
      videoSubscriber.attachNetStream(subscribeNetStream);
      uicAgent.addChild(videoSubscriber);
    ------------------- netstream/netconnection handle method ----------------------------
    private function subscribeNetStatusHandler(event:NetStatusEvent):void{
      trace(event.currentTarget+" : "+event.info.clientid+" : Subscribe netStatus = "+event.info.code+"\n "+event.info.description);
      switch(event.info.code) {
      case "NetConnection.Connect.Success":
      trace("Success to play");
      playStream();
      break;
      case "NetStream.Buffer.Empty" :
      if(holdingNetStream)
      holdingNetStream.seek(0);
      default:
      break;
    // --------- End of sample code ------------------
    I have no idea for solving this problem please suggest me
    Thank you
    Pornphop Sudpan

    Check this page out for a list of apps available in a certain region on the PlayBook:
    http://btsc.webapps.blackberry.com/btsc/viewdocument.do?noCount=true&externalId=KB27203&sliceId=2&cm...
    As for why it would be on your old PlayBook, I've noticed that early releases included all the apps - and then that was changed. The only two ways to get around this is to either sideload the video chat app or use a proxy in another country to set up your new PlayBook.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!

  • Nokia E5 Chat application

    Hello,
    My installed application on my Nokia E5 (Chat on the go, i think) doesn't work.
    In the Ovi Store, I can't find a original Chat application, also not for my Nokia 5530 XM & Nokia N97 Mini !
    Is there any solution available?
    Edit:
    I've download (here: www.nokia.mobi/messaging/im/dl) the newest Chat application for the Nokia E5, 5530 XM and N97 Mini.
    The application doesn't work on my Nokia E5.
    On my 5530 XM it works, but there is a very large/long vibration .
    I'm trying it now on my Nokia N97 Mini .
    Best regards,
    Wietse ter Haar
    Solved!
    Go to Solution.

    Why is there none answer on my question?
    I find it very bad that there is none official Chat on to go application for S60v5 or S60v3 phones in the Ovi Store.
    Browse to www.nokia.mobi/messaging/im/dl only way to get the application Chat on the go, but it doesn't work on my Nokia E5.
    Nokia, what to do? I don't like your very poor support!
    Attachments:
    Scr000001.jpg ‏26 KB
    Scr000002.jpg ‏21 KB

Maybe you are looking for

  • Is apple tv convenient compared to airport express when it comes to audio airplay ? (all i need to do is , switch on my airport express)

    is apple tv (2nd gen) convenient compared to airport express when it comes to audio airplay ? i currently have my amp connected via optical cable to my airport express , everytime i want to listen to songs from my iphone , all i need to is switch on

  • Wire transfer missing?!

    I ordered a Y510p Lenovo laptop, I received a confirmation about this order and also the necessary information needed for a wire transfer (via a Lenovo REP).  I wire transferred a X amount of USD to Lenovo on 4 Feb. 2014. I suppose the amount should 

  • Business Process Best Practises in Healthcare

    Dear community members, for a customer engagement in Brazil, I'm looking for a business process map for healthcare providers in general and hospitals in particular. Please let me know if you have knowledge about any best practice collections in the m

  • SOLAR01-Graphic Tab

    Hi Team, I am working in SOLAR01 "Graphic" tab. When i try to connect two business process steps, i am getting the option Sysnchronously & Asychronously. What does it mean? How does it impacts? Need your guidance on this Thanks PSK

  • When i re-open a document format of text frames is changed

    I save my document with some frames with text. I close it. When I open it again the text is no longer visible, the format of the frame is changed. If i save it again, it may be stable...... incredible.