+ Reply to Thread
Results 1 to 4 of 4

Thread: TechTip: Access XML Web Services with JavaScript

  1. #1

    Default TechTip: Access XML Web Services with JavaScript

    ** This thread discusses the article: TechTip: Access XML Web Services with JavaScript **
    ** This thread discusses the Content article: TechTip: Access XML Web Services with JavaScript0

  2. #2

    Default TechTip: Access XML Web Services with JavaScript

    ** This thread discusses the article: TechTip: Access XML Web Services with JavaScript **
    There is missing a semicolon at the end of the first line in the script - var xmlHttp, rateString Regards Jørn

  3. #3
    Guest.Visitor Guest

    Default TechTip: Access XML Web Services with JavaScript

    ** This thread discusses the article: TechTip: Access XML Web Services with JavaScript **
    Good Catch. The odd part is that it doesn't cause an issue on IE6, which is why the example shown worked for generating the screenshots.

  4. #4
    Guest.Visitor Guest

    Default TechTip: Access XML Web Services with JavaScript

    ** This thread discusses the article: TechTip: Access XML Web Services with JavaScript **
    Mike. Good article. Should you use a more recent version of the XML HTTP Request object? They are faster than older versions, probably have bugs worked out too. Example: http://www.wrox.com/WileyCDA/Section/id-291289.html And a browser might cache an AJAX request with the GET method (heck, POST might be cached too technically) so you might want to stick a unique query string onto the end of the URL every time like this: var noCacheDate = new Date(); var url = "http://www.somewhere.com?time=" + noCacheDate.getTime(); Chris

+ Reply to Thread

Similar Threads

  1. TechTip: Soup Up iSeries Access, Part II
    By klmorris3 in forum General
    Replies: 9
    Last Post: 03-03-2009, 02:57 AM
  2. TechTip: JavaScript Made Easy, Part II—Is Caps Lock On?
    By Guest.Visitor in forum Scripting
    Replies: 4
    Last Post: 10-28-2007, 04:19 PM
  3. IBM Client Access Macros and Citrix/Terminal Services
    By Guest.Visitor in forum General
    Replies: 0
    Last Post: 03-22-2007, 03:14 AM
  4. JavaScript: What, Why, and How
    By Guest.Visitor in forum Java
    Replies: 19
    Last Post: 10-15-2003, 01:33 PM
  5. JavaScript/Net.Data
    By Guest.Visitor in forum Internet
    Replies: 1
    Last Post: 03-30-2000, 06:10 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts