Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Re: Instant messaging

    <chris@yahoo.com> wrote in message
    news:#Txy19sUDHA.3312@tk2msftngp13.phx.gbl...
    > Has anyone built a web-based instant messaging system - or bought one?
    Yahoo, AOL, MSN...free...it's hard to beat. ;-)
    --
    Peter O'Reilly


    Peter O'Reilly Guest

  2. Similar Questions and Discussions

    1. Forum and Messaging Help
      Can anyone tell me how to make a forum or how to set up a messaging system? If you do please leave me a message or send me an e-mail at...
    2. instant messaging api
      I was just curious if in flex, a high level messaging api exists. What i would like is to have a primtive instant messaing mechanism within a page...
    3. question about messaging with web services
      Hi All, Let's say I have a web service InternalService1 that expose 30 web methods. This web service is only exposed internally, and it does not...
    4. messaging like in Java
      What is the PHP equivalent of messaging, as in Java?
    5. Messaging
      Well Ron it sounds like you just have a database application here that stores messages? Each time a user logs in you query the database for...
  3. #2

    Default Re: Instant messaging

    i think you missed the point

    WEB-based

    also, not a public network - something that can be used to allow 2 people on
    the same web-site to communicate with each other - like chat, but one-on-one



    "Peter O'Reilly" <Peter_OReilly@timeinc.com!N!O!.S!P!AM!> wrote in message
    news:eEkzhGtUDHA.2204@TK2MSFTNGP12.phx.gbl...
    > <chris@yahoo.com> wrote in message
    > news:#Txy19sUDHA.3312@tk2msftngp13.phx.gbl...
    > > Has anyone built a web-based instant messaging system - or bought one?
    > Yahoo, AOL, MSN...free...it's hard to beat. ;-)
    > --
    > Peter O'Reilly
    >
    >

    Guest

  4. #3

    Default Re: Instant messaging

    I know there is a nice library written in Java to allow you to connect to
    AIM through TOC. I've loaded it up in J# and compiled it with just a few
    modifications. You could call that from inside ASP.NET and make your own
    interface that way. The Jaim library is what I'm thinking of,
    [url]http://jaimlib.sourceforge.net/[/url].

    It'd take some work, but it's definitely possible.

    Ryan


    <chris@yahoo.com> wrote in message
    news:%23Txy19sUDHA.3312@tk2msftngp13.phx.gbl...
    > Has anyone built a web-based instant messaging system - or bought one?
    > Looking for anyone who has implemented/purchased one already for
    > advice/pointers/ any suggestions?
    >
    >
    > Cheers
    >
    > Chris
    >
    >

    Ryan Gregg Guest

  5. #4

    Default Re: Instant messaging

    <chris@yahoo.com> wrote in message
    news:eVadHZtUDHA.392@TK2MSFTNGP11.phx.gbl...
    > i think you missed the point
    >
    I don't think so. Not in the least.
    > WEB-based
    >
    > also, not a public network
    You mean like a private world wide WEB :-) The ones I cited use the HTTP
    protocol; in that respect they are "web" based. I presume that is what you
    mean.
    >>>- something that can be used to allow 2 people on
    > the same web-site to communicate with each other - like chat, but
    one-on-one

    Since *private* (not originally specified in your 1st message), one could
    have fun building a UI wrapper to the Windows "net send " command statement
    and do so on the cheap, too or use Microsoft chat one of those hidden, long
    last forgotten utilities nobody seems to use. Ok, its not WEB -
    nevermind.

    How private things are (which you did not allude to in your 1st message) is
    a matter of network setup, i.e. parameters that exist outside of ASP.NET.

    Regarding ASP.NET and the .NET framework, you can use HTTP or TCP protocols
    to communicate. Like AOL, MSN, and Yahoo, you will need to develop a small
    memory resident desktop "listener" application or windows service. This
    listener application is also where the user types and sends chat messages.
    With this listener application you would incorporate .NET web services to
    communicate with other participants sending SOAP formatted HTTP
    requests/responses. The .NET web services framework takes care of the
    SOAPing seemlessly for you.

    Another ASP.NET specific server application logic would need to be written
    to relay the message sent from person A to person B and vice versa. This
    app would also tell your listener app who is logged in, etc.

    That's how it would be done in .NET.

    Good luck!

    --
    Peter O'Reilly


    Peter O'Reilly Guest

  6. #5

    Default Re: Instant messaging

    Hello,

    | Has anyone built a web-based instant messaging system - or bought one?
    | Looking for anyone who has implemented/purchased one already for
    | advice/pointers/ any suggestions?

    today I think the best solution would be use MSN messenger, resp. Exchange
    messaging. Of course, it's possible to write that application on your own. I
    wrote one application, years ago, before the .NET. But I'm afraid that it
    would be unusable for you, because is completely in Czech language.

    If you want solution accessed by web browser, it's really simple. If you
    want real instant messaging, then I recommend to create one backend server,
    which would communicate via web service interface with clients (winforms).
    Complexivity of that application may vary, basic solution is one-night-work.

    --
    Michal A. Valasek, Altair Communications, [url]http://www.altaircom.net[/url]
    Please do not reply to this e-mail, for contact see [url]http://www.rider.cz[/url]


    Michal A. Valasek Guest

  7. #6

    Default Re: Instant messaging

    msn chat exposes itself as a .net com object from the tools menu. play with
    it see what you come up with.
    <chris@yahoo.com> wrote in message
    news:#Txy19sUDHA.3312@tk2msftngp13.phx.gbl...
    > Has anyone built a web-based instant messaging system - or bought one?
    > Looking for anyone who has implemented/purchased one already for
    > advice/pointers/ any suggestions?
    >
    >
    > Cheers
    >
    > Chris
    >
    >

    Alvin Bruney Guest

  8. #7

    Default Re: Instant messaging

    lol,

    nah, i didn't mean the communication should be web-based, i meant the client
    should be web-based!!!!!



    "Peter O'Reilly" <Peter_OReilly@timeinc.com!N!O!.S!P!AM!> wrote in message
    news:uwDe8AvUDHA.1152@tk2msftngp13.phx.gbl...
    > <chris@yahoo.com> wrote in message
    > news:eVadHZtUDHA.392@TK2MSFTNGP11.phx.gbl...
    > > i think you missed the point
    > >
    > I don't think so. Not in the least.
    >
    > > WEB-based
    > >
    > > also, not a public network
    >
    > You mean like a private world wide WEB :-) The ones I cited use the HTTP
    > protocol; in that respect they are "web" based. I presume that is what
    you
    > mean.
    >
    > >>>- something that can be used to allow 2 people on
    > > the same web-site to communicate with each other - like chat, but
    > one-on-one
    >
    > Since *private* (not originally specified in your 1st message), one could
    > have fun building a UI wrapper to the Windows "net send " command
    statement
    > and do so on the cheap, too or use Microsoft chat one of those hidden,
    long
    > last forgotten utilities nobody seems to use. Ok, its not WEB -
    > nevermind.
    >
    > How private things are (which you did not allude to in your 1st message)
    is
    > a matter of network setup, i.e. parameters that exist outside of ASP.NET.
    >
    > Regarding ASP.NET and the .NET framework, you can use HTTP or TCP
    protocols
    > to communicate. Like AOL, MSN, and Yahoo, you will need to develop a
    small
    > memory resident desktop "listener" application or windows service. This
    > listener application is also where the user types and sends chat messages.
    > With this listener application you would incorporate .NET web services to
    > communicate with other participants sending SOAP formatted HTTP
    > requests/responses. The .NET web services framework takes care of the
    > SOAPing seemlessly for you.
    >
    > Another ASP.NET specific server application logic would need to be written
    > to relay the message sent from person A to person B and vice versa. This
    > app would also tell your listener app who is logged in, etc.
    >
    > That's how it would be done in .NET.
    >
    > Good luck!
    >
    > --
    > Peter O'Reilly
    >
    >

    Guest

  9. #8

    Default Re: Instant messaging

    I think I need to clarify this a little more.

    What I'm asking is if anyone has written/purchased an instant messaging
    system for use on a website. ie: a web client that communicates and stores
    messages on a server so that another client can retrieve them and send new
    messages in turn...


    so the architecture would be something like


    client > server > client


    Like a chat-room, but instead of being open to x number of chatters - there
    can only be 2. Is that clearer?


    Chris



    <chris@yahoo.com> wrote in message
    news:%23Txy19sUDHA.3312@tk2msftngp13.phx.gbl...
    > Has anyone built a web-based instant messaging system - or bought one?
    > Looking for anyone who has implemented/purchased one already for
    > advice/pointers/ any suggestions?
    >
    >
    > Cheers
    >
    > Chris
    >
    >

    Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139