2008年12月25日
SNS,全称Social Networking Services,即社会性网络服务,专指旨在帮助人们建立社会性网络的互联网应用服务。1967年,哈佛大学的心理学教授Stanley Milgram(1934~1984)创立了六度分割理论,简单地说:“你和任何一个陌生人之间所间隔的人不会超过六个,也就是说,最多通过六个人你就能够认识任何一个陌生人。”按照六度分隔理论,每个个体的社交圈都不断放大,最后成为一个大型网络。这是社会性网络(Social Networking)的早期理解。后来有人根据这种理论,创立了面向社会性网络的互联网服务,通过“熟人的熟人”来进行网络社交拓展,比如ArtComb,Friendster,Wallop,adoreme 等。 但“熟人的熟人”,只是社交拓展的一种方式,而并非社交拓展的全部。因此,现在一般所谓的SNS,则其含义已经远不止“熟人的熟人”这个层面。比如根据相同话题进行凝聚(如贴吧)、根据学习经历进行凝聚(如Facebook)、根据周末出游的相同地点进行凝聚等,都被纳入“SNS”的范畴。 SNS源自英文缩写阅读全文>
发表于 @ 2008年12月25日 09:33:00|评论(loading...)|举报|收藏
2008年12月12日
SSO英文全称Single Sign On,单点登录。SSO是在多个应用系统中,用户只需要登录一次就可以访问所有相互信任的应用系统。它包括可以将这次主要的登录映射到其他应用中用于同一个用户的登录的机制。它是目前比较流行的企业业务整合的解决方案之一。
SSO技术实现机制
当用户第一次访问应用系统1的时候,因为还没有登录,会被引导到认证系统中进行登录;根据用户提供的登录信息,认证系统进行身份效验,如果通过效验,应该返回给用户一个认证的凭据--ticket;用户再访问别的应用的时候就会将这个ticket带上,作为自己认证的凭据,应用系统接受到请求之后会把ticket送到认证系统进行效验,检查ticket的合法性。如果通过效验,用户就可以在不用再次登录的情况下访问应用系统2和应用系统3了。
要实现SSO,需要以下主要的功能:
1、所有应用系统共享一个身份认证系统。
统一的认证系统是SSO的前提之一。认证系统的主要功能是将用户的登录信息和用户信息库相比较,对用户进行登录认证;认证成功后,认证系统应该生成统一的认证标志(ticket),阅读全文>
发表于 @ 2008年12月12日 10:55:00|评论(loading...)|举报|收藏
WebSphere 是 IBM 的集成软件平台。它包含了编写、运行和监视全天候的工业强度的随需应变 Web 应用程序和跨平台、跨产品解决方案所需要的整个中间件基础设施,如服务器、服务和工具。WebSphere 提供了可靠、灵活和健壮的集成软件。
WebSphere Application Server 是该基础设施的基础,其他所有产品都在它之上运行。WebSphere Process Server 基于 WebSphere Application Server 和 WebSphere Enterprise Service Bus,它为面向服务的体系结构 (SOA) 的模块化应用程序提供了基础,并支持应用业务规则,以驱动支持业务流程的应用程序。高性能环境还使用 WebSphere Extended Deployment 作为其基本基础设施的一部分。其他 WebSphere 产品提供了广泛的其他服务,如下所述。
WebSphere 是一个模块化的平台,基于业界支持的开放标准。您可以使用受信任和持久的接口,将现有资产插入 WebSphere,并且可以随着需要的阅读全文>
发表于 @ 2008年12月12日 10:43:00|评论(loading...)|举报|收藏
随着计算机网络和分布式应用的不断发展,远程消息传递越来越成为应用系统中不可缺少的组成部分。商业消息中间件的出现保证了消息传输的可靠性,高效率和安全性,同时也减少了系统的开发周期。目前应用最多的消息中间件产品为IBM MQSeries。本文就针对MQ的基本操作与配置进行详细的阐述,希望对读者有所帮助。
一.MQ基本操作
MQ中有几个很重要的组件:队列管理器(QueueManager)、队列(Queue)和通道(Channel)。其基本的操作方法如下:
创建队列管理器
crtmqm ?q QMgrName
-q是指创建缺省的队列管理器
删除队列管理器
dltmqm QmgrName
启动队列管理器
strmqm QmgrName
如果是启动默认的队列管理器,可以不带其名字
停止队列管理器
endmqm QmgrName 受控停止
阅读全文>
发表于 @ 2008年12月12日 10:41:00|评论(loading...)|举报|收藏
消息队列(MQ)是一种应用程序对应用程序的通信方法。应用程序通过写和检索出入列队的针对应用程序的数据(消息)来通信,而无需专用连接来链接它们。消息传递指的是程序之间通过在消息中发送数据进行通信,而不是通过直接调用彼此来通信,直接调用通常是用于诸如远程过程调用的技术。排队指的是应用程序通过队列来通信。队列的使用除去了接收和发送应用程序同时执行的要求。
IBM WebSphere MQ 产品支持应用程序通过不同组件如处理器、子系统、操作系统以及通信协议的网络彼此进行通信。例如,IBM WebSphere MQ 支持 35 种以上的不同操作系统。
IBM WebSphere MQ 支持两种不同的应用程序编程接口:Java 消息服务(JMS)和消息队列接口(MQI)。在 IBM WebSphere MQ 服务器上,JMS 绑定方式被映射到 MQI。如图 3 所示,应用程序直接与其本地队列管理器通过使用 MQI 进行对话,MQI 是一组要求队列管理器提供服务的调用。MQI 的引人之处是它只提供 13 次调用。这意味着对于应用程序编程员它是一种非常易于使阅读全文>
发表于 @ 2008年12月12日 10:38:00|评论(loading...)|举报|收藏
2008年11月25日
Our contacts in the computer industry speak highly of your new computer, the SuperWang. We would like to make an inquiry about it.
That's fine. We have some catalogs that give full details of the SuperWang computer. I'll send them to you today.
If you don't mind, could you also send us some information about your other products? We might be interested in them as well.
Certainly. And if you have any other questions, please feel free to contact me anytime.
Thank you. As soon as we have any fur阅读全文>
发表于 @ 2008年11月25日 10:31:00|评论(loading...)|举报|收藏
2008年11月24日
爱情和赌博一样,红了眼的都拿器官下注。
——北京女病人阅读全文>
发表于 @ 2008年11月24日 09:17:00|评论(loading...)|举报|收藏
A: Can't we find a price that's within my company's reach? Negotiations have been going on too long.
B: Agreed. But we need to find a price that is good for both sides.
A: To be honest, if you keep holding off for a lower price we won't be able to make a deal, because we won't be able to make a profit.
B: OK. You say your cost price is 100 for each unit, and you want a 20% profit. That's 120 per unit. Would you accept a 7% profit if we doubled the order?
A: That would mean a price of 107阅读全文>
发表于 @ 2008年11月24日 09:15:00|评论(loading...)|举报|收藏
2008年11月21日
无产阶级永远只能获得最少的真相。
——草剃素子阅读全文>
发表于 @ 2008年11月21日 09:17:00|评论(loading...)|举报|收藏
A: You know, I think it's smart to stay with the same low price. Your customers will be pleased.
B: We think that the basis price should stay low. It's wrong to raise prices just because market demand is going up fast.
A: Right. With such competitive prices, your regular customers will buy only from you, and I'm sure you'll get a lot of new customers.
B: I'm just afraid we might start a price war. The bigger companies might lower their prices to try to take our customers away, and close us 阅读全文>
发表于 @ 2008年11月21日 09:14:00|评论(loading...)|举报|收藏
2008年11月20日
我们走得太快,灵魂都跟不上了……
——网友阅读全文>
发表于 @ 2008年11月20日 09:52:00|评论(loading...)|举报|收藏
A: I really think this price is too high. A price has to be based on costs and the profit you want.
B: I know. But pricing has to be based on what customers want too, which differs from place to place and time to time.
A: Yes, experience shows the same product is priced differently in different markets. But why so much higher in this market?
B: There are many rich people in this area, so a skimming price is OK -- and even needed, because they think only a high price means a good product.
A: 阅读全文>
发表于 @ 2008年11月20日 09:49:00|评论(loading...)|举报|收藏
2008年11月19日
人们日常所犯最大的错误,是对陌生人太客气,而对亲密的人太苛刻,把这个坏习惯改过来,天下太平。
——亦舒,阅读全文>
发表于 @ 2008年11月19日 09:31:00|评论(loading...)|举报|收藏
Robert: Even with volume sales, our costs for the Exec-U-Ciser won't go down much.
Dan: Just what are you proposing?
Robert: We could take a cut on the price. But 25% would slash our profit margin. We suggest a compromise - 10%.
Dan: That's a big change from 25! 10 is beyond my negotiating limit. Any other ideas?
Robert: I don't think I can change it right now. Why don't we talk again tomorrow?
Dan: Sure. I must talk to my office anyway. I hope we can find some common ground on this. (next 阅读全文>
发表于 @ 2008年11月19日 09:29:00|评论(loading...)|举报|收藏
2008年11月18日
Dan: I'd like to get the ball rolling by talking about prices.
Robert: Shoot. I'd be happy to answer any questions you may have.
Dan: Your products are very good. But I'm a little worried about the prices you're asking.
Robert: You think we should be asking for more?
Dan: That's not exactly what I had in mind. I know your research costs are high, but what I'd like is a 25% discount.
Robert: That seems to be a little high, Mr. Smith. I don't know how we can make a profit with those numb阅读全文>
发表于 @ 2008年11月18日 13:44:00|评论(loading...)|举报|收藏