The Artima Developer Community
Sponsored Link

Java Buzz Forum
XML HTTP Request object (and named parameters)

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
dion

Posts: 5028
Nickname: dion
Registered: Feb, 2003

Dion Almaer is the Editor-in-Chief for TheServerSide.com, and is an enterprise Java evangelist
XML HTTP Request object (and named parameters) Posted: Nov 14, 2004 1:05 PM
Reply to this message Reply

This post originated from an RSS feed registered with Java Buzz by dion.
Original Post: XML HTTP Request object (and named parameters)
Feed Title: techno.blog(Dion)
Feed URL: http://feeds.feedburner.com/dion
Feed Description: blogging about life the universe and everything tech
Latest Java Buzz Posts
Latest Java Buzz Posts by dion
Latest Posts From techno.blog(Dion)

Advertisement
Sometimes it can be a little painful, or I should say, restricting working with browsers as a client UI. Features like XML HTTP Request definitely help out. It is great to be able to shoot off a message on the background and not have to rerender pages all of the time. Before XMLHttpRequest, we had to do various hacks. Maybe involving opening tiny windows, using Applets, or whatever sneaky tool we can think off. If you have an app that needs to poke back to the server check it out. Reading code such as: xmlhttp.open("GET", "test.txt", true); again makes me love Named Parameters: xmlhttp.open(httpmethod:"GET", url:"test.txt", asyncFlag: true); It would help my readability at least.

Read: XML HTTP Request object (and named parameters)

Topic: (apparently (am I Lisp)) Previous Topic   Next Topic Topic: Intel Releases First Flash Software Development Kit For Cellular Device Makers

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use