English 中文(简体)
steps to setting up jabber
原标题:
  • 时间:2009-11-13 15:46:58
  •  标签:
  • asp.net
  • xmpp

Ok I tried going to jabbers site, and it looks like cisco has acquired them.

Is jabber a server or a client? is it open source?

From what I guess, the steps are:

  1. install the jabber server on your server
  2. for a web application, creating a interface that will insert/select messages from the jabber server. I m guessing communication will be in some xml format?
问题回答

Jabber is the same thing as XMPP. The canonical place to find out about jabber is www.xmpp.org. They host all the documentation about the protocol. If you just want to use it, jabber.org hosts a free jabber server you can connect to, and is a great place to try it out. Psi (psi-im.org) is a good free client to try out the system.

The jabber protocol is a bit like smtp for instant messaging (IM). Servers federate (talk to each other) and the protocol is plain text, and defined in several RFCs. There are both client and server pieces of the protocol.

As you discovered, jabber.com (Jabber, Inc) was purchsed by Cisco. Jabber, Inc sold a proprietary jabber server (XCP) with great scalability that used the defined RFC protocols. There are several other servers out there, some free, some not. They all can communicate, which is the cool thing. Or not communicate, which is also cool.

I recommend trying out jabber clients, finding an active chat room (called MUC, multi user chat) and see where that takes you. If you re a developer you can use XMPP for any presence enabled thing. It s very extensible.

Oh, if you ve used gtalk, you ve used jabber. It s popular, open, and not tied to any one particular company.





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签