<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>GrassField &#187; internet</title>
	<atom:link href="http://blog.grassfield.org/category/uncategorized/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.grassfield.org</link>
	<description>Classroom notes on Java SE, EE &#38; ME</description>
	<lastBuildDate>Fri, 02 Jul 2010 06:29:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Coordinates of elements in DIV &#8211; Firefox and IE</title>
		<link>http://blog.grassfield.org/2007/07/12/coordinates-of-elements-in-div-firefox-and-ie/</link>
		<comments>http://blog.grassfield.org/2007/07/12/coordinates-of-elements-in-div-firefox-and-ie/#comments</comments>
		<pubDate>Thu, 12 Jul 2007 18:26:13 +0000</pubDate>
		<dc:creator>Pandian R</dc:creator>
				<category><![CDATA[IE]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://blog.grassfield.org/?p=54</guid>
		<description><![CDATA[]]></description>
		<wfw:commentRss>http://blog.grassfield.org/2007/07/12/coordinates-of-elements-in-div-firefox-and-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Data Area Passed to the System Call is Too Small</title>
		<link>http://blog.grassfield.org/2007/06/06/the-data-area-passed-to-the-system-call-is-too-small/</link>
		<comments>http://blog.grassfield.org/2007/06/06/the-data-area-passed-to-the-system-call-is-too-small/#comments</comments>
		<pubDate>Wed, 06 Jun 2007 18:20:00 +0000</pubDate>
		<dc:creator>Pandian R</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://grassfield.org/blog/?p=49</guid>
		<description><![CDATA[I got the following error in Firefox, while opening a new window with specified parameters, &#8220;the data area passed to the system call is too small&#8221;. there is some limitation in the length of the query string that is being passed (GET) request. automatically it gets screwed and the error is simply written in the [...]]]></description>
		<wfw:commentRss>http://blog.grassfield.org/2007/06/06/the-data-area-passed-to-the-system-call-is-too-small/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ADSL Broadband configuration with Mandriva Linux 2006</title>
		<link>http://blog.grassfield.org/2007/04/28/adsl-broadband-configuration-with-mandriva-linux-2006/</link>
		<comments>http://blog.grassfield.org/2007/04/28/adsl-broadband-configuration-with-mandriva-linux-2006/#comments</comments>
		<pubDate>Sat, 28 Apr 2007 12:27:00 +0000</pubDate>
		<dc:creator>Pandian R</dc:creator>
				<category><![CDATA[Mandriva]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://grassfield.org/blog/?p=36</guid>
		<description><![CDATA[Hi,I wish to document this for a long time, since many home linux users are facing trouble here in Chennai, while configuring broadband connection. I have configured the major service providers of India, Airtel and VSNL without any problem with Mandriva. here are some screenshots.
I am sorry, the images are in descending order   [...]]]></description>
		<wfw:commentRss>http://blog.grassfield.org/2007/04/28/adsl-broadband-configuration-with-mandriva-linux-2006/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AJAX and window.location.href</title>
		<link>http://blog.grassfield.org/2007/01/26/ajax-and-windowlocationhref/</link>
		<comments>http://blog.grassfield.org/2007/01/26/ajax-and-windowlocationhref/#comments</comments>
		<pubDate>Fri, 26 Jan 2007 07:11:00 +0000</pubDate>
		<dc:creator>Pandian R</dc:creator>
				<category><![CDATA[IE]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://grassfield.org/blog/?p=34</guid>
		<description><![CDATA[see there is a html line like this
&#60;a href=&#8221;javascript:void(0);&#8221; onClick=&#8221;javascript:deleteGroup();&#8221;&#62;Delete&#60;/a&#62;
the delete group function is written as
function deleteGroup()
{
selectAll(null);
if (groupNames==&#8221;" &#124;&#124; groupNames==&#8221;,&#8221;)
{
alert (&#8220;No Groups selected&#8221;);
return;
}
var a = confirm(&#8220;Are you sure you want to delete the selected groups? This change is permanent and this cannot be recovered!&#8221;);
if(a)
{
alert(groupNames);
window.location.href=&#8221;/final/admin/Egconfiggroupp.jsp?deleteGroups=&#8221;+groupNames+&#8221;&#38;mode=delete&#8221;;
return;
}
}
It is working fine in Firefox but not in IE. Actually the [...]]]></description>
		<wfw:commentRss>http://blog.grassfield.org/2007/01/26/ajax-and-windowlocationhref/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox and Ajax: Permission denied to call method XMLHttpRequest.open</title>
		<link>http://blog.grassfield.org/2007/01/26/firefox-and-ajax-permission-denied-to-call-method-xmlhttprequestopen/</link>
		<comments>http://blog.grassfield.org/2007/01/26/firefox-and-ajax-permission-denied-to-call-method-xmlhttprequestopen/#comments</comments>
		<pubDate>Thu, 25 Jan 2007 21:30:00 +0000</pubDate>
		<dc:creator>Pandian R</dc:creator>
				<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://grassfield.org/blog/?p=32</guid>
		<description><![CDATA[
Hi,
I was trying to load an xml document from remote server using a html file saved in my hdd. it was working fine in IE, but not with firefox. Firefox says the permission is denied! later i found that Firefox dont allow remote connections to be opened by a local file. http:// or similar kind [...]]]></description>
		<wfw:commentRss>http://blog.grassfield.org/2007/01/26/firefox-and-ajax-permission-denied-to-call-method-xmlhttprequestopen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GWT &#8211; 1 : Re Entry into GWT</title>
		<link>http://blog.grassfield.org/2007/01/25/gwt-1-re-entry-into-gwt/</link>
		<comments>http://blog.grassfield.org/2007/01/25/gwt-1-re-entry-into-gwt/#comments</comments>
		<pubDate>Wed, 24 Jan 2007 21:18:00 +0000</pubDate>
		<dc:creator>Pandian R</dc:creator>
				<category><![CDATA[GWT]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://grassfield.org/blog/?p=29</guid>
		<description><![CDATA[I got into GWT (Google Web ToolKit), and I found it is very useful to make future rich web applications. then somehow I cudnt continue it and left as such. Since I had very less time to roll in the web changes, I dint give much importance to gwt in our product. somewhat, I got [...]]]></description>
		<wfw:commentRss>http://blog.grassfield.org/2007/01/25/gwt-1-re-entry-into-gwt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>https &#8211; Servlet &#8211; Attachment &#8211; IE not working</title>
		<link>http://blog.grassfield.org/2007/01/13/https-servlet-attachment-ie-not-working/</link>
		<comments>http://blog.grassfield.org/2007/01/13/https-servlet-attachment-ie-not-working/#comments</comments>
		<pubDate>Sat, 13 Jan 2007 17:52:00 +0000</pubDate>
		<dc:creator>Pandian R</dc:creator>
				<category><![CDATA[IE]]></category>
		<category><![CDATA[servlet]]></category>
		<category><![CDATA[tomcat]]></category>

		<guid isPermaLink="false">http://grassfield.org/blog/?p=12</guid>
		<description><![CDATA[Hi, I have a servlet which will send me PDF stream. It  is working good in IE and Firefox. When operating in secured mode (https), IE couldnt download the attachment. it stops in halfway. There were no exceptions thrown at the servlet end. Atlast, we found the line 
response.setHeader(&#8220;Pragma&#8221;, &#8220;no-cache&#8221;);
is the culprit. when we [...]]]></description>
		<wfw:commentRss>http://blog.grassfield.org/2007/01/13/https-servlet-attachment-ie-not-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
