Sign in
|
Join
Search
help.net
Musing on .Net
Home
Contact
About
RSS
Atom
Comments RSS
Recent Posts
The .Net Coffee Break Show is back! Thursday 18th of June with Dino Esposito
How to protect yourself against the latest SQL injection
Hundreds of websites under attack and Microsoft are you doing something?
Warning, new nasty worm on the loose, be very careful
Modifying the HTTP Response Using Filters
Tags
.NET
.NET AJAX
.NET AJAX JQuery Community news
.NET Atlas
.NET C#
.net community news
.NET Linq
.NET Linq SQL
.NET SQL Server
Accessibility HTML css
Agile
Ajax
ASp net
Asp net ajax
asp net gridview
ASP.NET
ASP.NET VB
ASP.NET AJAX
ASP.NET AJAX JQuery
ASP.NET MVC
ASP.NET MVC LINQ
ASP.NET MVC MVP
ASP.NET sql Server
Atlas
Avalon
Barcode
C#
Community News
Community News Mobile
community News Silverlight
Community News Silverlight .Net
Community News SQL LinQ
Component
CSS-HTML
Dscribe CMS Project
Expression Studio
General
General Software Development
General Software Development HTML
Gizmos
HTML .Net
Humour
IIS
Javascript
JQuery
LINQ
LINQ .NET Visual Studio
linq asp.net mvc
Mobile
Onenote
Orcas
PocketPC
Project dScribe
Science Unleashed
Scispy
Scoilnet
Silverlight
Silverlight .NET
Silverlight WPF
SQL Server
SQL Server 2005
SQL Server 2008
Usability
Utilities
VB.NET
Vista
Vista .Net Visual Studio 2008 Orcas
Visual Arts
Visual Studio 2005
WCF
Web Development
Web Services
Whidbey
WIC
Windows
Windows .NET
Windows Mobile
Windows Mobile iPhone
Windows Vista
WPF
WPF LINQ
WWF
XAML
XML .Net
News
Open source CMS
Technorati
My blog
Irish blogs
Navigation
Home
Blogs
.Net useful
yourhtmlsource
Search Design
FuzzySoftware
ASP Today
123 Aspx
Code Project
Dotnetjunkies
Blogs I read
Fabrice Marguerie
Roy Osehrove
James Avery
Robert McLaws
Sam Gentile
Datagrid Girl
Gizmo
Alex Lowe
Scott Watermasysk
Mike Deem
PocketPC
Mobigeeks
SQL
Sql Blog
Usability
Design Not Found
Creative Tech Writer
Noise Between Stations</textarea>
InfoDesign
Archives
June 2009 (1)
December 2008 (13)
November 2008 (1)
October 2008 (2)
September 2008 (19)
July 2008 (2)
June 2008 (3)
May 2008 (8)
April 2008 (21)
March 2008 (9)
February 2008 (19)
January 2008 (18)
December 2007 (27)
November 2007 (23)
October 2007 (23)
September 2007 (21)
August 2007 (14)
July 2007 (27)
June 2007 (21)
May 2007 (49)
April 2007 (18)
March 2007 (10)
February 2007 (23)
January 2007 (20)
December 2006 (12)
November 2006 (25)
October 2006 (24)
September 2006 (46)
August 2006 (4)
July 2006 (16)
June 2006 (15)
May 2006 (19)
April 2006 (24)
March 2006 (36)
February 2006 (25)
January 2006 (67)
December 2005 (38)
November 2005 (32)
October 2005 (81)
September 2005 (58)
August 2005 (27)
July 2005 (38)
June 2005 (25)
May 2005 (18)
April 2005 (25)
March 2005 (8)
February 2005 (7)
January 2005 (21)
December 2004 (8)
November 2004 (37)
October 2004 (19)
September 2004 (29)
August 2004 (12)
July 2004 (62)
June 2004 (68)
May 2004 (74)
April 2004 (55)
March 2004 (59)
February 2004 (72)
January 2004 (93)
December 2003 (111)
November 2003 (165)
October 2003 (105)
September 2003 (40)
August 2003 (108)
July 2003 (98)
June 2003 (102)
May 2003 (122)
April 2003 (56)
March 2003 (60)
February 2003 (100)
First AJAX Instant Messenger
ajax im
("asynchronous javascript and xml instant messenger") is a browser-based instant messaging client. It uses the XMLHTTPRequest object in JavaScript to send and receive commands to and from the server. No refreshing of the page is ever needed for this "web application" to work, as everything is updated in real-time via JavaScript.
Pretty basic at the moment but good idea anyway to demonstrate the feature. Strange enough works only with Firefox and Safari and not Internet Explorer ?? (They reject the blame on IE for some Javascript incompatibility; I don't understand really why but I am sure it's easy to fix)
Download
(zip file)
Posted:
Sep 05 2005, 10:22 PM
by
help.net
| with
4 comment(s)
Filed under:
General
,
CSS-HTML
Comments
Michael
said:
That's actually funny, considering that IE, back before AJAX had a name, was the first to implement client-side HTTP requests with the MSXML library. Mozilla copied the functionality with the XMLHttpRequest object, mirroring Microsoft's API. Now, because Firefox is the trendy one, "it's IE's fault."
HA!
#
September 5, 2005 7:13 PM
Justin King
said:
Obviously haven't tried
http://webmessenger.msn.com/
This has been using Ajax technology for some time.
#
September 5, 2005 8:14 PM
Michael Schwarz
said:
MSN Web Messenger:
- old AJAX style with refreshing an IFRAME every 5 seconds
-> slow response
-> 480 bytes
- event triggered response
- missing caching support
AJAX IM:
- returns full XML response every second
- full user status on every request (not events)
-> 278 bytes for 4 users in boddy list
- non-XML response after sending message
- missing caching support
- special chars are not working, like the German öäüÖÄÜ (missing UTF support)
#
September 6, 2005 4:51 AM
EndTwist
said:
I wasn't blaming the problems on Internet Explorer's ability to handle XMLHTTPRequest, I was blaming it on IE's ability to handle some other JavaScript. I took a look at some of the code and got it properly working in IE6 now, so all is well.
#
September 6, 2005 4:30 PM