<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Implementing Ajax in Java web application using JQuery</title>
	<atom:link href="http://veerasundar.com/blog/2008/12/implementing-ajax-in-java-web-application-using-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://veerasundar.com/blog/2008/12/implementing-ajax-in-java-web-application-using-jquery/</link>
	<description>Java / Web developer working at PayPal, India.</description>
	<lastBuildDate>Wed, 08 Sep 2010 07:07:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Veera</title>
		<link>http://veerasundar.com/blog/2008/12/implementing-ajax-in-java-web-application-using-jquery/comment-page-1/#comment-2314</link>
		<dc:creator>Veera</dc:creator>
		<pubDate>Thu, 26 Nov 2009 22:27:40 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=184#comment-2314</guid>
		<description>great!</description>
		<content:encoded><![CDATA[<p>great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jorkua</title>
		<link>http://veerasundar.com/blog/2008/12/implementing-ajax-in-java-web-application-using-jquery/comment-page-1/#comment-2313</link>
		<dc:creator>jorkua</dc:creator>
		<pubDate>Thu, 26 Nov 2009 10:07:37 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=184#comment-2313</guid>
		<description>I resolved it... &lt;br&gt;&lt;br&gt;$.post(&quot;CostoProdPorCuentaServlet&quot;, {method:$metodo,cuenta:$accountant,nivel:$level}, function(data) { &lt;br&gt;$(&quot;#datos1&quot;).html(data);&lt;br&gt;	},&quot;html&quot;);&lt;br&gt;&lt;br&gt;thanks..!!</description>
		<content:encoded><![CDATA[<p>I resolved it&#8230; </p>
<p>$.post(&#8220;CostoProdPorCuentaServlet&#8221;, {method:$metodo,cuenta:$accountant,nivel:$level}, function(data) { <br />$(&#8220;#datos1&#8243;).html(data);<br />	},&#8221;html&#8221;);</p>
<p>thanks..!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jorkua</title>
		<link>http://veerasundar.com/blog/2008/12/implementing-ajax-in-java-web-application-using-jquery/comment-page-1/#comment-2312</link>
		<dc:creator>jorkua</dc:creator>
		<pubDate>Thu, 26 Nov 2009 05:58:58 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=184#comment-2312</guid>
		<description>Yes, i suppossed that..!! (there&#039;s a plugin named ajaxify).&lt;br&gt;&lt;br&gt;The problem was that in the example are missing the xml tags. &lt;br&gt;&lt;br&gt;You have out.println(&quot;&quot; + report + &quot;&quot;); and must to be out.println(&quot;&lt;WeatherServlet&gt;&lt;report&gt;&quot; + report + &quot;&lt;/report&gt;&lt;/WeatherServlet&gt;&quot;);&lt;br&gt;&lt;br&gt;Can you help me with the &quot;callback fuction parameter&quot;, instead of XML I wanted it in HTML, I have the next code:&lt;br&gt;&lt;br&gt;JSP (Only the .post function)&lt;br&gt;---------------------------------------&lt;br&gt;$.post(&quot;CostoProdPorCuentaServlet&quot;, &lt;br&gt;{&lt;br&gt;method:$metodo,&lt;br&gt;cuenta:$accountant,&lt;br&gt;nivel:$level&lt;br&gt;}, &lt;br&gt;function(data) {&lt;br&gt;$(&quot;#datos1&quot;).html(report.text());&lt;br&gt;	},&lt;br&gt;&quot;html&quot;);&lt;br&gt;---------------------------------------&lt;br&gt;&lt;br&gt;On the servlet, i&#039;ve changed the response.setContentType(&quot;text/xml&quot;); to response.setContentType(&quot;text/html&quot;); I think that the problem is in the way that i am catching the value in the callbackfuction.&lt;br&gt;&lt;br&gt;Thanks.. !!</description>
		<content:encoded><![CDATA[<p>Yes, i suppossed that..!! (there&#39;s a plugin named ajaxify).</p>
<p>The problem was that in the example are missing the xml tags. </p>
<p>You have out.println(&#8220;&#8221; + report + &#8220;&#8221;); and must to be out.println(&#8220;&lt;WeatherServlet&gt;&lt;report&gt;&#8221; + report + &#8220;&lt;/report&gt;&lt;/WeatherServlet&gt;&#8221;);</p>
<p>Can you help me with the &#8220;callback fuction parameter&#8221;, instead of XML I wanted it in HTML, I have the next code:</p>
<p>JSP (Only the .post function)<br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />$.post(&#8220;CostoProdPorCuentaServlet&#8221;, <br />{<br />method:$metodo,<br />cuenta:$accountant,<br />nivel:$level<br />}, <br />function(data) {<br />$(&#8220;#datos1&#8243;).html(report.text());<br />	},<br />&#8220;html&#8221;);<br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>On the servlet, i&#39;ve changed the response.setContentType(&#8220;text/xml&#8221;); to response.setContentType(&#8220;text/html&#8221;); I think that the problem is in the way that i am catching the value in the callbackfuction.</p>
<p>Thanks.. !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Veera</title>
		<link>http://veerasundar.com/blog/2008/12/implementing-ajax-in-java-web-application-using-jquery/comment-page-1/#comment-2311</link>
		<dc:creator>Veera</dc:creator>
		<pubDate>Thu, 26 Nov 2009 03:50:20 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=184#comment-2311</guid>
		<description>Hi Jorkua,&lt;br&gt;&lt;br&gt;If I understood your question correctly, there&#039;s no plugin called &#039;ajaxify&#039; - its the package name for my Java classes.&lt;br&gt;&lt;br&gt;And as you said you are getting the response from the Servlet and make sure that you have a HTML DIV with an id as &#039;weatherReport&#039;, if you are following the naming conventions as given in the above example. Because JQuery looks for this ID name for updating the server&#039;s response.&lt;br&gt;&lt;br&gt;do let me know if u have any more question. I&#039;m happy to answer those. :)</description>
		<content:encoded><![CDATA[<p>Hi Jorkua,</p>
<p>If I understood your question correctly, there&#39;s no plugin called &#39;ajaxify&#39; &#8211; its the package name for my Java classes.</p>
<p>And as you said you are getting the response from the Servlet and make sure that you have a HTML DIV with an id as &#39;weatherReport&#39;, if you are following the naming conventions as given in the above example. Because JQuery looks for this ID name for updating the server&#39;s response.</p>
<p>do let me know if u have any more question. I&#39;m happy to answer those. <img src='http://veerasundar.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jorkua</title>
		<link>http://veerasundar.com/blog/2008/12/implementing-ajax-in-java-web-application-using-jquery/comment-page-1/#comment-2310</link>
		<dc:creator>jorkua</dc:creator>
		<pubDate>Thu, 26 Nov 2009 02:33:18 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=184#comment-2310</guid>
		<description>What is the importance to use the ajaxify plugin (&lt;servlet-class&gt;ajaxify.WeatherServlet&lt;/servlet-class&gt;). ???&lt;br&gt;&lt;br&gt;Actually, I can´t get the response in the web browser, via firebug I know that servlet is returning the hoped data, but it doesn&#039;t appear on the web browser.</description>
		<content:encoded><![CDATA[<p>What is the importance to use the ajaxify plugin (&lt;servlet-class&gt;ajaxify.WeatherServlet&lt;/servlet-class&gt;). ???</p>
<p>Actually, I can´t get the response in the web browser, via firebug I know that servlet is returning the hoped data, but it doesn&#39;t appear on the web browser.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Veera</title>
		<link>http://veerasundar.com/blog/2008/12/implementing-ajax-in-java-web-application-using-jquery/comment-page-1/#comment-2309</link>
		<dc:creator>Veera</dc:creator>
		<pubDate>Tue, 24 Nov 2009 12:19:42 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=184#comment-2309</guid>
		<description>off course, JQuery can be implemented with all the above you said and the implementation method is same as what I explained in this post. In fact, JSF comes with pre-built JQuery support in it. So, in JSF alone, the usage will be little different.</description>
		<content:encoded><![CDATA[<p>off course, JQuery can be implemented with all the above you said and the implementation method is same as what I explained in this post. In fact, JSF comes with pre-built JQuery support in it. So, in JSF alone, the usage will be little different.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rajendra</title>
		<link>http://veerasundar.com/blog/2008/12/implementing-ajax-in-java-web-application-using-jquery/comment-page-1/#comment-2308</link>
		<dc:creator>rajendra</dc:creator>
		<pubDate>Tue, 24 Nov 2009 06:38:10 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=184#comment-2308</guid>
		<description>Hi,&lt;br&gt;This is  Nice!! can we implement Jquery Along with any other technology like JSP/Struts/JSF? if so, can you provide me an example on how to do these.&lt;br&gt;&lt;br&gt;thanks raj</description>
		<content:encoded><![CDATA[<p>Hi,<br />This is  Nice!! can we implement Jquery Along with any other technology like JSP/Struts/JSF? if so, can you provide me an example on how to do these.</p>
<p>thanks raj</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dhuraikkannu</title>
		<link>http://veerasundar.com/blog/2008/12/implementing-ajax-in-java-web-application-using-jquery/comment-page-1/#comment-2192</link>
		<dc:creator>Dhuraikkannu</dc:creator>
		<pubDate>Fri, 09 Oct 2009 08:50:30 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=184#comment-2192</guid>
		<description>I am having one doubt in jquery regarding drag and drop.
http://www.webresourcesdepot.com/dynamic-dragn-drop-with-jquery-and-php/
From this link, I got drag and drop code in PHP. I tried that in Servlet but I am not knowing, how to retrieve array values in Servlet Any suggestions for this?</description>
		<content:encoded><![CDATA[<p>I am having one doubt in jquery regarding drag and drop.<br />
<a href="http://www.webresourcesdepot.com/dynamic-dragn-drop-with-jquery-and-php/" rel="nofollow">http://www.webresourcesdepot.com/dynamic-dragn-drop-with-jquery-and-php/</a><br />
From this link, I got drag and drop code in PHP. I tried that in Servlet but I am not knowing, how to retrieve array values in Servlet Any suggestions for this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rajeev sharma</title>
		<link>http://veerasundar.com/blog/2008/12/implementing-ajax-in-java-web-application-using-jquery/comment-page-1/#comment-2125</link>
		<dc:creator>rajeev sharma</dc:creator>
		<pubDate>Mon, 07 Sep 2009 09:34:45 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=184#comment-2125</guid>
		<description>Actually I was trying this in Weblogic Portal.
so there i found this problem.

but in normal webapp it is working fine.
thanks....</description>
		<content:encoded><![CDATA[<p>Actually I was trying this in Weblogic Portal.<br />
so there i found this problem.</p>
<p>but in normal webapp it is working fine.<br />
thanks&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajeev Sharma</title>
		<link>http://veerasundar.com/blog/2008/12/implementing-ajax-in-java-web-application-using-jquery/comment-page-1/#comment-2124</link>
		<dc:creator>Rajeev Sharma</dc:creator>
		<pubDate>Mon, 07 Sep 2009 08:43:43 +0000</pubDate>
		<guid isPermaLink="false">http://veerasundar.com/blog/?p=184#comment-2124</guid>
		<description>I have tried this sample code .but when clicking the button the jsp page is not getting submitted.
I have put alerts to debug, so alerts are invoked just before post line : i.e
 $.post(&quot;WeatherServlet&quot;, {cityName:$cityName}, function(xml) {

Please tell me why the jsp is not getting submitted.
Waiting for your reply....</description>
		<content:encoded><![CDATA[<p>I have tried this sample code .but when clicking the button the jsp page is not getting submitted.<br />
I have put alerts to debug, so alerts are invoked just before post line : i.e<br />
 $.post(&#8220;WeatherServlet&#8221;, {cityName:$cityName}, function(xml) {</p>
<p>Please tell me why the jsp is not getting submitted.<br />
Waiting for your reply&#8230;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
