<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
   <title>Chidambaram&apos;s Blog</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/" />
   <link rel="self" type="application/atom+xml" href="http://learningremix.net/w2007integ/ckandaswa/atom.xml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10</id>
   <updated>2007-04-12T21:37:27Z</updated>
   
   <generator uri="http://www.sixapart.com/movabletype/">Movable Type 3.33</generator>

<entry>
   <title>Response to Mike&apos;s blog: In need of Javascript assistance</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/2007/04/response_to_mikes_blog_in_need_of_javascript_assistance.shtml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10.1618</id>
   
   <published>2007-04-12T21:22:10Z</published>
   <updated>2007-04-12T21:37:27Z</updated>
   
   <summary>Mike, Reading your blog post, I did not quite understand what your problems were in parsing the xml. But, I am posting a small chunk of code that I used to parse my xml file. May be you can make...</summary>
   <author>
      <name>Chidambaram</name>
      
   </author>
   
   
   <content type="html" xml:lang="en" xml:base="http://learningremix.net/w2007integ/ckandaswa/">
      <![CDATA[Mike,
Reading your blog post, I did not quite understand what your problems were in parsing the xml. But, I am posting a small chunk of code that I used to parse my xml file. May be you can make use of this.

Basically, it strips off the <strong>Title </strong>elements from the xml (rerturned by your ISBN call) and creates an element node to display it in the HTML page. You can repeat this process for other elements that you have. Note that the DOM methods are  case sensitive. So, double check the tag names you pass to these methods. Hope this helps.

<strong>// NOTE : you should have a div with an id <strong>resultArea </strong>in your html file
var resultTree = document.getElementById('resultArea');

// retrieve the title element
var titles=xmlDoc.getElementsByTagName('Title');	
var title = titles[o].childNodes[0].nodeValue;

// create an element node 				
tempElementNode = document.createElement("h4");

// createa text node with the value extracted from title element
tempTextNode = document.createTextNode("Title : " + title);

// add the text node to the element node previously created
tempElementNode.appendChild(tempTextNode);

// add the resulting element to the result area ..so that
// the title is displayed in the screen
// NOTE : you should have a div with an id <strong>resultArea </strong>in your html file
resultTree.appendChild(tempElementNode);</strong>]]>
      
   </content>
</entry>
<entry>
   <title>Response to Mike&apos;s blog: In need of Javascript assistance</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/2007/04/response_to_mikes_blog_in_need_of_javascript_assistance.shtml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10.1619</id>
   
   <published>2007-04-12T21:22:10Z</published>
   <updated>2007-04-12T21:39:07Z</updated>
   
   <summary>Mike, Reading your blog post, I did not quite understand what your problems were in parsing the xml. But, I am posting a small chunk of code that I used to parse my xml file. May be you can make...</summary>
   <author>
      <name>Chidambaram</name>
      
   </author>
   
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=chidam">chidam</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=chidam">chidam</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=dom">DOM</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=dom">DOM</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=help">help</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=help">help</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=html">HTML</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=html">HTML</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=is696">is696</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=is696">is696</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=javascript">javascript</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=javascript">javascript</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=miniprojects">miniprojects</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=miniprojects">miniprojects</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=parser">parser</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=parser">parser</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=parsing">parsing</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=parsing">parsing</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=xml">xml</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=xml">xml</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://learningremix.net/w2007integ/ckandaswa/">
      <![CDATA[Mike,
Reading your blog post, I did not quite understand what your problems were in parsing the xml. But, I am posting a small chunk of code that I used to parse my xml file. May be you can make use of this.

Basically, it strips off the <strong>Title </strong>elements from the xml (rerturned by your ISBN call) and creates an element node to display it in the HTML page. You can repeat this process for other elements that you have. Note that the DOM methods are  case sensitive. So, double check the tag names you pass to these methods. Hope this helps.

<strong>// NOTE : you should have a div with an id <strong>resultArea </strong>in your html file
var resultTree = document.getElementById('resultArea');

// retrieve the title element
var titles=xmlDoc.getElementsByTagName('Title');	
var title = titles[o].childNodes[0].nodeValue;

// create an element node 				
tempElementNode = document.createElement("h4");

// createa text node with the value extracted from title element
tempTextNode = document.createTextNode("Title : " + title);

// add the text node to the element node previously created
tempElementNode.appendChild(tempTextNode);

// add the resulting element to the result area ..so that
// the title is displayed in the screen
// NOTE : you should have a div with an id <strong>resultArea </strong>in your html file
resultTree.appendChild(tempElementNode);</strong>]]>
      
   </content>
</entry>
<entry>
   <title>Page not found error in MCubed</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/2007/04/page_not_found_error_in_mcubed.shtml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10.1526</id>
   
   <published>2007-04-05T20:13:47Z</published>
   <updated>2007-04-05T20:16:28Z</updated>
   
   <summary>Matthew, I was trying your new layout updates to MCubed, but getting page cannot be found error for all the links at the top, except for the search. Can you please fix it and post it again ?...</summary>
   <author>
      <name>Chidambaram</name>
      
   </author>
   
   
   <content type="html" xml:lang="en" xml:base="http://learningremix.net/w2007integ/ckandaswa/">
      <![CDATA[Matthew,
I was trying your <a href="http://people.emich.edu/mpinter/is449/project/iterationtest/search.html">new layout updates to MCubed</a>, but getting <strong>page cannot be found </strong>error for all the links at the top, except for the search. Can you please fix it and post it again ?]]>
      
   </content>
</entry>
<entry>
   <title>Response to Andre: DOM problem in IE 6.0</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/2007/04/response_to_andre_dom_problem_in_ie_60.shtml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10.1503</id>
   
   <published>2007-04-05T16:09:34Z</published>
   <updated>2007-04-05T16:36:32Z</updated>
   
   <summary>Andre, I took the code you had and dropped it in to a function and it worked perfectly in IE. I even tried changing the width and height, which worked as well. Two things I had to change to make...</summary>
   <author>
      <name>Chidambaram</name>
      
   </author>
   
   
   <content type="html" xml:lang="en" xml:base="http://learningremix.net/w2007integ/ckandaswa/">
      <![CDATA[Andre, I took the code you had and dropped it in to a function and it worked perfectly in IE. I even tried changing the width and height, which worked as well. Two things I had to change to make it work locally are ...setting the value of the <strong>image </strong>attribute and have some <strong>div </strong>inside the body with some content (<strong>div </strong>without content does not work ..because you are accessing the <strong>firstChild</strong> attribute) .....that set aside, not sure what your image variable has.....can you post little more code ?  

//creating new image node
var new_pic = document.createElement("img");
//creating new attribute nodes
var height = document.createAttribute("height");
var width = document.createAttribute("width");
var src = document.createAttribute("src");
//Define values for attribute nodes
<strong>height.nodeValue = "500";
width.nodeValue = "500";</strong>//image contains link to the picture
//src.nodeValue = image;
<strong>src.nodeValue = "code.JPG";</strong>  
//assigning attribute nodes to the image node
new_pic.setAttributeNode(src);
new_pic.setAttributeNode(width);
new_pic.setAttributeNode(height);
//replacing old node in HTML
document.getElementById("artwork").replaceChild(new_pic, document.getElementById("artwork").firstChild);]]>
      
   </content>
</entry>
<entry>
   <title>Response to Tom&apos;s comments</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/2007/04/response_to_toms_comments.shtml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10.1458</id>
   
   <published>2007-04-02T21:46:25Z</published>
   <updated>2007-04-02T22:17:13Z</updated>
   
   <summary>Tom, I read the comment (repeated below) you wrote about my earlier response. Thanks Chidambaram! The problem is that no session is attached to the logout.php. You could even call the logout PHP without being logged in-- How should Facebook...</summary>
   <author>
      <name>Chidambaram</name>
      
   </author>
   
   
   <content type="html" xml:lang="en" xml:base="http://learningremix.net/w2007integ/ckandaswa/">
      <![CDATA[Tom,
I read the comment (repeated below) you wrote about my<a href="http://learningremix.net/w2007integ/ckandaswa/2007/04/response_to_myb_-_logout_procedures_and_its_problems.shtml"> earlier response</a>.

<blockquote>Thanks Chidambaram! The problem is that no session is attached to the
logout.php. You could even call the logout PHP without being logged in--
How should <a href="http://www.facebook.com/">Facebook </a>know that it comes from you when the call originates
from the server and not from your browser... And we somehow need to tell
<a href="http://www.facebook.com/">Facebook </a>that we are logged out... If you only invalidate the session
object on the client side this will not be enough?</blockquote>

If you call <a href="http://www.facebook.com/logout.php">facebook's logout php </a> it'll <strong>get the session information from the request object </strong>that you are implicitly sending (by posting to their logout page) and <a href="http://www.facebook.com/">facebook </a>invalidates the session as part of the logout process.

In general, a logout process will never require a userid / username. All that server cares about is the session. Even if you want to persist some user data to the database or something ...you get the user info from the session...and not as a parameter. Try this ...open your browser and login to <a href="http://www.facebook.com/">facebook</a>....open another browser and again login to <a href="http://www.facebook.com/">facebook</a>. These are two different sessions. Even if you logoff from one of these, the other will still function. That means regardless of who the logged in user is, the <a href="http://www.facebook.com/">facebook </a>server  just kills the session tied to that browser and nothing more.

You still need to invalidate your <a href="http://people.emich.edu/jwendelk/MapYourBuddies/I2/">MYB </a>session in your PHP (not in your client) after calling <a href="http://www.facebook.com/">facebook's </a>logout page]]>
      
   </content>
</entry>
<entry>
   <title>Response to Aparna&apos;s post</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/2007/04/response_to_aparnas_post.shtml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10.1457</id>
   
   <published>2007-04-02T19:23:33Z</published>
   <updated>2007-04-02T19:35:33Z</updated>
   
   <summary>From what I know and what I found from googling this ...you are right about Microsoft.XMLHTTP being the &quot;generic&quot; version and Msxml2.XMLHTTP being the version specific version. They refer to different versions of xml parsers installed in the client. It...</summary>
   <author>
      <name>Chidambaram</name>
      
   </author>
   
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=ajax">Ajax</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=ajax">Ajax</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=xhr">XHR</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=xhr">XHR</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://learningremix.net/w2007integ/ckandaswa/">
      <![CDATA[From what I know and what I found from googling this ...you are right about <strong>Microsoft.XMLHTTP </strong>being the "generic" version and <strong>Msxml2.XMLHTTP </strong>being the version specific version. They refer to different versions of xml parsers installed in the client. It seems, the suggestion is to use <strong>Msxml2</strong> and also in IE7 you can use <strong>Window.XMLHttpRequest</strong> which creates the request in a version independent manner. 

You can read the <a href="http://blogs.msdn.com/xmlteam/archive/2006/10/23/using-the-right-version-of-msxml-in-internet-explorer.aspx">discussion in the msdn blog </a>for more insight.


]]>
      
   </content>
</entry>
<entry>
   <title>Response to MapYourBuddies - And the big logout challenge !!</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/2007/04/response_to_mapyourbuddies_and_the_big_logout_challenge.shtml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10.1455</id>
   
   <published>2007-04-02T15:17:13Z</published>
   <updated>2007-04-02T15:37:10Z</updated>
   
   <summary>Joern, I believe there is a problem with the code you posted in your blog (alternate solution to the logout issues you are having) The doit() function is in the wrong place. It should be in the logout.html file ...since...</summary>
   <author>
      <name>Chidambaram</name>
      
   </author>
   
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=iteration3">Iteration3</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=iteration3">Iteration3</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=mapyourbuddies">MapYourBuddies</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=mapyourbuddies">MapYourBuddies</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=progress">progress</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=progress">progress</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=teamproject">teamproject</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=teamproject">teamproject</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://learningremix.net/w2007integ/ckandaswa/">
      <![CDATA[Joern,
I believe there is a problem with the code you <a href="http://learningremix.net/w2007integ/jwendelk/2007/04/mapyourbuddies_and_the_big_logout_challenge_2.shtml">posted in your blog</a> (alternate solution to the<a href="http://learningremix.net/w2007integ/tschnitz/2007/03/logout_procedure_and_its_problems.shtml"> logout issues you are having)</a>

The <strong>doit() </strong>function is in the wrong place. It should be in the <strong>logout.html </strong>file ...since <strong>logout.html </strong>cannot access the <strong>doit()</strong> function (which is in the parent window) its not closing the popup. Infact, you don't need <strong>doit() </strong>funcition at all. There is a <strong>onSubmit </strong>event handler that you can use. 

Add the following handler to the<strong> logout.html </strong>file (in the <strong>form </strong>element tag) and update us if you see a change.

<strong>onSubmit="setTimeout('window.close()',2000)"</strong>

Hope this helps !!]]>
      
   </content>
</entry>
<entry>
   <title>Response to MYB - Logout procedures and its problems</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/2007/04/response_to_myb_-_logout_procedures_and_its_problems.shtml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10.1450</id>
   
   <published>2007-04-02T02:07:32Z</published>
   <updated>2007-04-02T04:45:17Z</updated>
   
   <summary>Tom, I read the blog you posted initially about the logout problems you guys have. Here are my comments about what you said in your blog. This is only my theory ..I never tried this myself though. After some Googling...</summary>
   <author>
      <name>Chidambaram</name>
      
   </author>
   
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=facebookcom">facebookcom</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=facebookcom">facebookcom</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=mapyourbuddies">MapYourBuddies</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=mapyourbuddies">MapYourBuddies</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=progress">progress</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=progress">progress</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=project">project</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=project">project</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=teamproject">teamproject</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=teamproject">teamproject</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://learningremix.net/w2007integ/ckandaswa/">
      <![CDATA[Tom, I read the <a href="http://learningremix.net/w2007integ/tschnitz/2007/03/logout_procedure_and_its_problems.shtml">blog you posted initially </a>about the logout problems you guys have. Here are my comments about what you said in your blog. This is only my theory ..I never tried this myself though.

<blockquote>After some Googling for simulating a POST with PHP it still didn’t work. Why? How would <a href="http://www.facebook.com/">Facebook </a>know which user clicked to log out if the request for it comes from a people.emich.edu server? There is no user variable which can be attached to the logout string</blockquote>

I still think simulating a POST (to <a href="http://www.facebook.com/">facebook </a>logout page) within your PHP should work. Because you are creating the facebook session within your <a href="http://people.emich.edu/jwendelk/MapYourBuddies/I2/">MYB </a>session, <a href="http://www.facebook.com/">facebook </a>session is implicitly "owned" by MYB session. Every request you make to <a href="http://www.facebook.com/">facebook </a>after a "login" is in the context of this session. 

In general, when a user logs out...the session is invalidated and cannot be used anymore. There is no user variable attached to logout requests because, a session is always tied to one and only one user.

<blockquote>How would <a href="http://www.facebook.com/">Facebook </a>know which user clicked to log out if the request for it comes from a <a href="http://people.emich.edu/">people.emich.edu </a>server? There is no user variable which can be attached to the logout string. Suppose 10 people are logged in simultaneously at <a href="http://people.emich.edu/jwendelk/MapYourBuddies/I2/">MapYourBuddies </a>and one wants to log out; how can <a href="http://www.facebook.com/">Facebook </a>perform the logout from the server side without any reference to the user? </blockquote>

If 10 users are logged in to <a href="http://people.emich.edu/jwendelk/MapYourBuddies/I2/">MYB </a>...there are 10 <a href="http://people.emich.edu/jwendelk/MapYourBuddies/I2/">MYB </a>session holding a reference to 1 facebook session <strong>each</strong> (remember ?..you woud've called facebook login 10 times). So, your <a href="http://people.emich.edu/jwendelk/MapYourBuddies/I2/">MYB </a>sessions are always mapped 1 to 1 with facebook session. Since <a href="http://www.facebook.com/">facebook </a>uses session_cookies (<a href="http://www.facebook.com/policy.php">mentioned in their privacy policy</a>) to keep track of the session, you don't have to differentiate between the users when posting to facebook logout page. All they need to know is ..the session to invalidate.]]>
      
   </content>
</entry>
<entry>
   <title>Response to Srikanth&apos;s comment, while reviewing MapYourBuddies</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/2007/03/response_to_srikanths_comment_while_reviewing_mapyourbuddies.shtml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10.1423</id>
   
   <published>2007-03-30T20:52:56Z</published>
   <updated>2007-03-30T21:37:51Z</updated>
   
   <summary>Srikanth, You mentioned the following 2 things in your review of MapYourBuddies. While I can&apos;t speak for that group, here is my insights on why this might be the case. Here are the 2 comments you made. 1. Once login...</summary>
   <author>
      <name>Chidambaram</name>
      
   </author>
   
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=error">error</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=error">error</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=mapyourbuddies">mapyourbuddies</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=mapyourbuddies">mapyourbuddies</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=refresh">refresh</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=refresh">refresh</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=reviews">reviews</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=reviews">reviews</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=session">session</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=session">session</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://learningremix.net/w2007integ/ckandaswa/">
      <![CDATA[Srikanth,
You mentioned the following 2 things in <a href="http://learningremix.net/w2007integ/sleburu/2007/03/mapyourbuddies_iteration_2_review_from_srikanth.shtml">your review of MapYourBuddies</a>. While I can't speak for that group, here is my insights on why this might be the case. Here are the 2 comments you made.

<strong>1. Once login if i refresh the page,it doesnot loads the page.i.e refresh doesnot work</strong>

The login process in MYB creates a session in facebook (after you type in the password) and returns a token, which inturn is used to retrieve the session key. While a session key can be used for subsequent requests (within the same session), the <strong>token can be used only once</strong>. This is one of the general concept in a web application. When a page is refreshed using F5 or refresh button, we are re-submiting the same information to the server again. If you notice the URL parameter (in <a href="http://people.emich.edu/jwendelk/MapYourBuddies/I2/">MYB</a>), the token is being submitted to the PHP again and it gives a invalid parameter message

<blockquote>http://people.emich.edu/jwendelk/MapYourBuddies/I2/main.php?<strong>auth_token=b55f3cd7671d5220a75c4645a93c5b4b</strong></blockquote>

If you remove the <strong>auth_token </strong>parameter and hit enter, you'll be getting the main page again and then you can choose <strong>Start MayYourBuddies </strong> button ....it'll not ask you for login credentials again (because the session still exists) ....which is the expected behaviour. Hope this helps.

MYB team ....You can prevent this error by checking for the <strong>auth_token </strong> parameter in the incoming request (in your php) and either redirect the user to your home page automatically or pull values from facebook using the session key previously created (skip the login stuff) ...Just a thought.

<strong>2. Once i exit from my login still it continues to be on my login if i press back option</strong>

When you use back button, browsers are not always required to send the previous request back to the server (some browsers differ though). In this case, I suspect, the page you are seeing is coming from your browser cache.  <a href="http://people.emich.edu/jwendelk/MapYourBuddies/I2/">MYB </a>team, I am not sure whether you are invalidating the session when the user logs out.... Its always a good idea to use  <strong>session_destroy() </strong> in your php when user logs out. This will clear the session and also free-up your server memory !!  

Sorry if I am stepping on your turf  !!!  And Sorry for the long post folks !!! :-))]]>
      
   </content>
</entry>
<entry>
   <title>Response to Rosie</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/2007/03/response_to_rosie.shtml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10.1410</id>
   
   <published>2007-03-29T20:22:07Z</published>
   <updated>2007-03-29T21:17:19Z</updated>
   
   <summary>Rosie, Its hard to debug the issue you are having from the code you posted. My suggestion is, not to do a trial and error method to make a code work or fix a bug (especially true with javascript). You...</summary>
   <author>
      <name>Chidambaram</name>
      
   </author>
   
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=error">error</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=error">error</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=help">help</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=help">help</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://learningremix.net/w2007integ/ckandaswa/">
      <![CDATA[Rosie,
Its hard to debug the<a href="http://learningremix.net/w2007integ/riveter1578/2007/03/a_little_java_script_help.shtml"> issue you are having </a>from <a href="http://learningremix.net/w2007integ/riveter1578/2007/03/response_to_reponse_about_javascript_help.shtml">the code you posted</a>.

My suggestion is, not to do a trial and error method to make a code work or fix a bug (especially true with javascript). You may be lucky one in 10 times, but the rest 9 times you'll end up spending hours debugging your issue and may introduce bugs along the way.Take a clean slate approach and have only the minimum lines of code you need.

You don't need that <strong><a href="http://learningremix.net/w2007integ/riveter1578/2007/03/response_to_reponse_about_javascript_help.shtml">for-loop </a></strong>until you need to process every occurance of that <em><strong>description</strong></em>, <em><strong>high </strong></em>or <em><strong>low </strong></em>tags. To start with, extract values only from the first occurance (use index 0 in that array you get after you call <strong>getElementsByTagName</strong>) and make sure it works. Use alerts to pin-point the error. Such a step-by-step approach will keep the focus in the right direction and you also learn along the way

Sorry for not being very specific ....its hard to see few lines of code and tell what the error is. It may not be related to the code you posted at all. Syntactically it appears fine. Post a link in the blog to the xml file you are trying to process. I'll look at it later using <a href="http://www.mozilla.com/en-US/">firefox</a>. 

]]>
      
   </content>
</entry>
<entry>
   <title>Response to Rosie&apos;s blog - a little javascript help</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/2007/03/response_to_rosies_blog_a_little_javascript_help.shtml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10.1385</id>
   
   <published>2007-03-29T15:04:52Z</published>
   <updated>2007-03-29T15:41:32Z</updated>
   
   <summary>Rosie, I read your blog post about the javvascript error. I don&apos;t have Firefox in the PC I am currently using, so I could not look at the error. But, syntax of the for loop (given below) that you have.....is...</summary>
   <author>
      <name>Chidambaram</name>
      
   </author>
   
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=help">help</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=help">help</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=javascript">javascript</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=javascript">javascript</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://learningremix.net/w2007integ/ckandaswa/">
      <![CDATA[Rosie,
I read <a href="http://learningremix.net/w2007integ/riveter1578/2007/03/a_little_java_script_help.shtml">your blog post about the javvascript error</a>. I don't have Firefox in the PC I am currently using, so I could not look at the error. But, syntax of the for loop (given below) that you have.....is not quite right. And there are many other syntax errors too. You are trying to concatenate the for loop to the string created previously. which is incorrect.

<blockquote>
document.getElementById("response").innerHTML = "<b>" + forecasts[0].getAttribute('type') +"Forecast for " + 
	city[0].childNodes[0].nodeValue + ", " + state[0].childNodes[0].nodeValue + 
	" " + zip[0].childNodes[0].nodeValue + "</b><br> retrieved " + 	forecasts[0].getAttribute('date') + "<br><br>" +	
	(<strong>RIGHT HERE - THIS SHOULD BE A SEPARATE STATEMENT</strong>)
	for(i=0;i<description.length;i++) {
		description[i].childNodes[0].nodeValue + "<br>" + 
		prediction[i].childNodes[0].nodeValue + "<br>" + 
		highTemp[i].childNodes[0].nodeValue + +" " + highTemp[i].getAttribute('units') + "<br>" +
		lowTemp[i].childNodes[0].nodeValue + +" " + lowTemp[i].getAttribute('units') + "<br>" +
	}
	
	+ "<br> End of Forecast.");</blockquote>

Try this instead,  (please compare this and see whats different).....(small portion of the code on the right side is missing, but you get the point anyway !! ...I could'nt include the code inside the blog due to javascript restrictions)



<img alt="code.JPG" src="http://learningremix.net/w2007integ/ckandaswa/code.JPG" width="708" height="384" />
]]>
      
   </content>
</entry>
<entry>
   <title>TeamExtreme iteration2 review by Chidambaram</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/2007/03/teamextreme_iteration2_review_by_chidambaram.shtml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10.1296</id>
   
   <published>2007-03-28T02:58:15Z</published>
   <updated>2007-03-28T03:02:19Z</updated>
   
   <summary> I am reviewing Team extreme&apos;s iteration 2 that was announced in the blog recently. Strengths 1. Extremely good design and professional appeal 2. Easy-to-use interface 3. Good number of apis are mashed up 4. Integration with headllines and stuff...</summary>
   <author>
      <name>Chidambaram</name>
      
   </author>
   
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=is696">is696</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=is696">is696</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=iteration2review">Iteration2Review</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=iteration2review">Iteration2Review</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=teamextremereviewed">TeamExtremeReviewed</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=teamextremereviewed">TeamExtremeReviewed</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://learningremix.net/w2007integ/ckandaswa/">
      <![CDATA[
I am reviewing <a href="http://people.emich.edu/mchiang4/is449/3.html">Team extreme's iteration 2</a> that <a href="http://learningremix.net/w2007integ/mchiang4/2007/03/team_extreme_iteration_2.shtml">was announced</a> in the blog recently.

<strong>Strengths</strong>

1. Extremely good design and professional appeal

2. Easy-to-use interface

3. Good number of apis are mashed up

4. Integration with headllines and stuff on the right side is pretty good.

(and many more ....greate improvement from iteration1)

<strong>Weakness / Things to improve / Suggestions</strong>

Well,............. I don't have any ....My suggestion (like Prof. said in the class), you have to submit this site to <a href="http://www.programmableweb.com/">programmable web </a>and get some visibility to you work. Good luck !! 

 
]]>
      
   </content>
</entry>
<entry>
   <title>Response to Ratna&apos;s post - Google, the best place to work</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/2007/03/response_to_ratnas_post_-_google_the_best_place_to_work.shtml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10.1287</id>
   
   <published>2007-03-27T21:13:45Z</published>
   <updated>2007-03-27T21:17:07Z</updated>
   
   <summary>Well, we don&apos;t want to end up like this either :-))...</summary>
   <author>
      <name>Chidambaram</name>
      
   </author>
   
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=ajax">ajax</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=ajax">ajax</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=bestplacetowork">best place to work</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=bestplacetowork">best place to work</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=google">google</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=google">google</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://learningremix.net/w2007integ/ckandaswa/">
      <![CDATA[Well, we don't want to end up like <a href="http://slashdot.org/article.pl?sid=07/03/22/124234&tid=217">this </a>either :-))]]>
      
   </content>
</entry>
<entry>
   <title>Yes we are out there - something more to brag about !!! :-))</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/2007/03/yes_we_are_out_there_something_more_to_brag_about.shtml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10.1282</id>
   
   <published>2007-03-27T19:53:46Z</published>
   <updated>2007-03-27T19:57:26Z</updated>
   
   <summary>Check this out .....search for Ajax Vs Project management in google ....and guess whats number 1 out of 1.25 million hits .....its US !!! Check this out here...</summary>
   <author>
      <name>Chidambaram</name>
      
   </author>
   
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=bloglist">bloglist</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=bloglist">bloglist</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   <category term="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=links">links</a>]]>" label="<![CDATA[<a rel="tag" href="http://learningremix.net/cgi-sys/cgiwrap/fpgibson/learningremix.net/mt-w2007integ/plugins/tags/app.cgi?blog_id=10&amp;tags=links">links</a>]]>" scheme="http://www.sixapart.com/ns/types#tag" />
   
   <content type="html" xml:lang="en" xml:base="http://learningremix.net/w2007integ/ckandaswa/">
      <![CDATA[Check this out .....search for Ajax Vs Project management in google ....and guess whats number 1 out of 1.25 million hits .....its US !!!  

<a href="http://www.google.com/search?hl=en&q=Ajax+vs+Project+management">Check this out here</a>


<img alt="googlesearch.GIF" src="http://learningremix.net/w2007integ/ckandaswa/2007/03/27/googlesearch.GIF" width="640" height="384" />
]]>
      
   </content>
</entry>
<entry>
   <title>Response to Linda&apos;s blog - HashNMash Iteration 3 goals</title>
   <link rel="alternate" type="text/html" href="http://learningremix.net/w2007integ/ckandaswa/2007/03/response_to_lindas_blog_-_hashnmash_iteration_3_goals.shtml" />
   <id>tag:learningremix.net,2007:/w2007integ/ckandaswa//10.1278</id>
   
   <published>2007-03-27T19:18:54Z</published>
   <updated>2007-03-27T19:28:57Z</updated>
   
   <summary>Linda, I read the summary of your iteration 3 goals (I could&apos;nt link this to your blog, due to a bug with movable type - getting a not found error) and I followed the link to your iteration 2 page...</summary>
   <author>
      <name>Chidambaram</name>
      
   </author>
   
   
   <content type="html" xml:lang="en" xml:base="http://learningremix.net/w2007integ/ckandaswa/">
      <![CDATA[Linda,
I read the summary of your iteration 3 goals (I could'nt link this to your blog, due to a bug with movable type - getting a not found error) and I followed the link to your <a href="http://people.emich.edu/rschwartz/696/pwp/iteration2/pwp.html">iteration 2 page</a> and since I have IE (only) in this PC... it crashed (as noted already in few of the reviews)

Out of curiosity, I took your html (<em><strong>events2.html</strong></em>) and removed the first body tag that you had (you had 2 body tags) and tested it locally. It works !!!  Just so you know.

ps - Someone mentioned in the blog earlier about your site using 2 body tags, but could'nt find it now...]]>
      
   </content>
</entry>

</feed>
