Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

problems with Ajax 2

Status
Not open for further replies.

glg1

Programmer
Nov 19, 2005
65
US
Hi all,
I'm new to the Ajax world. I just received the book "Foundations of Ajax", by Asleson and Schutta. It seems like a very readable and informative work, however, I am unable to reproduce the ajax activites, despite hand inputting and then getting the code from the Apress site. In the text, the authors briefly mention that the examples do not use a dynamic server to process the response and provide a real time response. -- I don't really know what that means - will this not work as I've configured - it seems to me that the placement and the directory should allow this to function...

For example, the following code and xml is placed in the same folder on my machine. When I run the html - it comes up fine in FF1.5, but I don't get the response that is suggested - a table with the activites. I get no response, no errors in the javascript console either...

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">[/URL]
 <html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml">[/URL]
<head>
<title>Using responseText with innerHTML</title>
    
<script type="text/javascript">
var xmlHttp;

function createXMLHttpRequest() {
    if (window.ActiveXObject) {
        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
    } 
    else if (window.XMLHttpRequest) {
        xmlHttp = new XMLHttpRequest();
    }
}
    
function startRequest() {
    createXMLHttpRequest();
    xmlHttp.onreadystatechange = handleStateChange;
    xmlHttp.open("GET", "innerHTML.xml", true);
    xmlHttp.send(null);
}
    
function handleStateChange() {
    if(xmlHttp.readyState == 4) {
        if(xmlHttp.status == 200) {
            document.getElementById("results").innerHTML = xmlHttp.responseText;
        }
    }
}
</script>
</head>

<body>
    <form action="#">
        <input type="button" value="Search for Today's Activities" onclick="startRequest();"/>
    </form>
    <div id="results"></div>
</body>
</html>



and the xml file (innerHTML.xml)that is accessed by the ajax (html).

<table border="1">
<tbody>
<tr>
<th>Activity Name</th>
<th>Location</th>
<th>Time</th>
</tr>
<tr>
<td>Waterskiing</td>
<td>Dock #1</td>
<td>9:00 AM</td>
</tr>
<tr>
<td>Volleyball</td>
<td>East Court</td>
<td>2:00 PM</td>
</tr>
<tr>
<td>Hiking</td>
<td>Trail 3</td>
<td>3:30 PM</td>
</tr>
</tbody>
</table>

I am probably missing something silly, like needing to have the xml on a server... any thoughts?

Thanks a bunch,
Glg1
 
In this statement:
Code:
xmlHttp.open("GET", "innerHTML.xml", true);
are you sure you want quotes around "innerHTML.xml"?

I believe you should be using the variable name:
Code:
xmlHttp.open("GET", innerHTML.xml, true);

Tracy Dryden

Meddle not in the affairs of dragons,
For you are crunchy, and good with mustard. [dragon]
 
tsdragon said:
In this statement:
Code:
xmlHttp.open("GET", "innerHTML.xml", true);
are you sure you want quotes around "innerHTML.xml"?

I believe you should be using the variable name:
Code:
xmlHttp.open("GET", innerHTML.xml, true);

The OP isn't using a variable name, innerHTML.xml is the filename of the XML file.
glg1 said:
and the xml file (innerHTML.xml)that is accessed by the ajax (html).

<table border="1">
<tbody>
etc

I am probably missing something silly, like needing to have the xml on a server...
GLG1 is quite correct - it needs to be running on a server. It opens an HTTP connection; it won't open it across a local file system. This is normal behavious for an HTTPRequest object.

I tested the code sample above (on FF1.5) - it works fine when served by a web server.

---
Marcus
better questions get better answers - faq581-3339
accessible web design - zioncore.com
 
Thanks marcus,
I'll throw it on our server and see what happens.

Cheers,GLG1
 
manarth wrote
>it needs to be running on a server
That is incorrect.

The only thing you need a server is .status. Hence if you modify this line, it would show up. It won't show up on local file system only because the conditional is met always with a false. You have to modify this line,
>[tt] if(xmlHttp.status == 200) {[/tt]
to read like this.
[tt] //for local file system as well
if(xmlHttp.status == 200 [blue]|| xmlHttp.status == 0[/blue]) {[/tt]
 
Way to go tsuji. Works great. Could you explain the status 200 and 0 for us. Anyways, a star for you. Thanks again.
GLG1
 
manarth: you're quite correct - I can't believe I actually posted that! Apparently I didn't read that very carefully before replying. I can't even use the excuse that it was late - it wasn't THAT late.

Tracy Dryden

Meddle not in the affairs of dragons,
For you are crunchy, and good with mustard. [dragon]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top