instant messenger as multi network chat

Last post 07-05-2009 4:05 AM by Shengqing Yang - MSFT. 11 replies.

Sort Posts:

  • instant messenger as multi network chat

    06-23-2009, 5:38 AM
    • Member
      96 point Member
    • srankamal
    • Member since 02-04-2009, 11:49 AM
    • Posts 219

    hello all i have to make aweb application as a instant messenger as multi network chat using asp.net

    have you any idea about this .how can i start working on it

    Mark as an answer if it helps
    Filed under:
  • Re: instant messenger as multi network chat

    06-25-2009, 5:41 AM
    Answer

    srankamal:

    hello all i have to make aweb application as a instant messenger as multi network chat using asp.net

    have you any idea about this .how can i start working on it

     

    Hi,

    If you need to build a chat feature using ASP.Net, I would like to suggest you having a look at this existed thread answered by Lance Zhang - MSFT: http://forums.asp.net/t/1371574.aspx. It gives five choices to make it.

    Actually, if you give a search using google, you will find thousands of samples on the internet, like these:

    http://www.codeproject.com/KB/ajax/ChatRoom.aspx

    http://www.codeproject.com/KB/applications/AliAspNetChat.aspx

    Best Regards,
    Shengqing Yang

    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread : )
  • Re: instant messenger as multi network chat

    06-25-2009, 6:14 AM
    Answer
    Remember to click “Mark as Answer” on the post, if it helps you. Because It helps others to find the solution.

    Srinivas Kotra.


  • Re: instant messenger as multi network chat

    06-30-2009, 1:41 AM
    • Member
      96 point Member
    • srankamal
    • Member since 02-04-2009, 11:49 AM
    • Posts 219

    hello Shengqing Yang - MSFT and srinivaskotra

    Thanks for sending me usefull reply. it was very helpful for me

    Thanks again to both of youSmile

    Mark as an answer if it helps
  • Re: instant messenger as multi network chat

    06-30-2009, 1:53 AM
    Answer
    • Member
      17 point Member
    • mrwelcam
    • Member since 01-10-2009, 1:42 PM
    • Posts 73

     Using WCF and silverlight is a good approach. Heres an example

    http://www.silverlightshow.net/items/Silverlight-Web-Chat-With-WCF-Callbacks.aspx

  • Re: instant messenger as multi network chat

    07-02-2009, 9:17 AM
    • Member
      96 point Member
    • srankamal
    • Member since 02-04-2009, 11:49 AM
    • Posts 219

    hello all is there any way to read yahoo emails in my web application?? help me out if it is???Yes

    Mark as an answer if it helps
    Filed under:
  • Re: instant messenger as multi network chat

    07-02-2009, 10:29 AM
    Answer
    • Star
      8,817 point Star
    • lspence
    • Member since 11-01-2006, 2:12 PM
    • United States
    • Posts 1,358

    You will have to upgrade to Yahoo's Mail Plus service which is $19 per year for access to pop accounts, so that you can read your email outside of their client.

    http://overview.mail.yahoo.com/enhancements/mailplus


    My Blog
    http://Lspence.blogspot.com

    (Please MARK this post as ANSWERED, if you find it helpful)
  • Re: instant messenger as multi network chat

    07-03-2009, 1:35 AM
    • Member
      96 point Member
    • srankamal
    • Member since 02-04-2009, 11:49 AM
    • Posts 219

    lspence:

    You will have to upgrade to Yahoo's Mail Plus service which is $19 per year for access to pop accounts, so that you can read your email outside of their client.

    http://overview.mail.yahoo.com/enhancements/mailplus


    thanks for reply .Is their any way to access it free by code.

    Is The yahoo Chat also paid??i mean if i want to embid chat from yahoo id in my web page??

    Mark as an answer if it helps
  • Re: instant messenger as multi network chat

    07-03-2009, 8:59 AM
    Answer
    • Star
      8,817 point Star
    • lspence
    • Member since 11-01-2006, 2:12 PM
    • United States
    • Posts 1,358

    According to the link above you will have to pay for access to their pop servers, I don't think there is any other way of accessing them without paying.

    I don't think they make their chat available  to developers. You might want to have a look at some of the open source IM clients like Pidgin or Miranda IM to see how they do it. Just Google them for more information. Here is the list of public webservices and apis Yahoo makes available.

    http://developer.yahoo.com/everything.html

    My Blog
    http://Lspence.blogspot.com

    (Please MARK this post as ANSWERED, if you find it helpful)
  • Re: instant messenger as multi network chat: APOP authentication not supported

    07-03-2009, 9:27 AM
    • Member
      96 point Member
    • srankamal
    • Member since 02-04-2009, 11:49 AM
    • Posts 219

    lspence:

    According to the link above you will have to pay for access to their pop servers, I don't think there is any other way of accessing them without paying.

    I don't think they make their chat available  to developers. You might want to have a look at some of the open source IM clients like Pidgin or Miranda IM to see how they do it. Just Google them for more information. Here is the list of public webservices and apis Yahoo makes available.

    http://developer.yahoo.com/everything.html

    Thanks for Reply again

    i have another problem related to this code

    i m using following code

    http://www.jscape.com/emailfactorydotnet/docs/userguide/html/index.html?comppopathentication.html

    and facing error

    "An I/O Error occured: Jscape.Email.PopException: APOP authentication not supported.
       at Jscape.Email.Pop.LoginAPOP(String banner)
       at Jscape.Email.Pop.Connect()"

    my code is

    Pop myPop = new Pop("pop.myserver.com", "username", "password");

     myPop.AuthMode = Pop.AUTH_APOP;// error is here

    myPop.Connect();

    please guide to solve it

    i am trying to access the email from yahoo/gmail

    Mark as an answer if it helps
  • Re: instant messenger as multi network chat: APOP authentication not supported

    07-03-2009, 5:27 PM
    Answer
    • Star
      8,817 point Star
    • lspence
    • Member since 11-01-2006, 2:12 PM
    • United States
    • Posts 1,358

    I'm sorry I'm not familiar with that product. I can only suggest that you contact their tech support for assistance with their product.

    My Blog
    http://Lspence.blogspot.com

    (Please MARK this post as ANSWERED, if you find it helpful)
  • Re: instant messenger as multi network chat: APOP authentication not supported

    07-05-2009, 4:05 AM

    Hi,

    I suggest you can have the discussion in a new thread since this one is just talking about chat feature and has been alread closed that few members will jump in to give more advices.

    Best Regards,
    Shengqing Yang

    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread : )
Page 1 of 1 (12 items)