<?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 for ViralPatel.net</title>
	<atom:link href="http://viralpatel.net/blogs/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://viralpatel.net/blogs</link>
	<description>Tutorials, Java, J2EE, Struts, AJAX, JavaScript, CSS, Web 2.0, MySQL, Articles</description>
	<lastBuildDate>Wed, 22 May 2013 18:52:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Tutorial:Create Spring 3 MVC Hibernate 3 Example using Maven in Eclipse by payal</title>
		<link>http://viralpatel.net/blogs/spring3-mvc-hibernate-maven-tutorial-eclipse-example/comment-page-6/#comment-45372</link>
		<dc:creator>payal</dc:creator>
		<pubDate>Wed, 22 May 2013 18:52:31 +0000</pubDate>
		<guid isPermaLink="false">http://viralpatel.net/blogs/?p=2052#comment-45372</guid>
		<description><![CDATA[I completed and deployed the application in weblogic server, but I am getting the Error: 403 Forbidden when I try to run the app. Can anyone guide what I am doing wrong ????

I would be so thankful !!!]]></description>
		<content:encoded><![CDATA[<p>I completed and deployed the application in weblogic server, but I am getting the Error: 403 Forbidden when I try to run the app. Can anyone guide what I am doing wrong ????</p>
<p>I would be so thankful !!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FreeMarker Servlet Tutorial with Example by Ronald</title>
		<link>http://viralpatel.net/blogs/freemarker-servlet-tutorial-example/comment-page-1/#comment-45370</link>
		<dc:creator>Ronald</dc:creator>
		<pubDate>Wed, 22 May 2013 18:50:07 +0000</pubDate>
		<guid isPermaLink="false">http://viralpatel.net/blogs/?p=2833#comment-45370</guid>
		<description><![CDATA[Hi Densil, For your query

[code language=&quot;html&quot;] Thanks for your tutorial. I was wondering how to add an Image in the FTl and where to store the image ?. I am bit confused with the relative /absolute path which is referenced by FTL and later by Java. Can you provide a short example based on the above project structure ?. thanks
[/code]

FTL is just a template and a mere html file see the template carefully

[code language=&quot;html&quot;]
&lt;html&gt;
    &lt;head&gt;&lt;/head&gt;
&lt;/html&gt;
[/code]
just like this 
[code language=&quot;html&quot;]

         &lt;div class=&quot;logoDiv&quot;&gt;&lt;img src=&quot;logo.png&quot; class=&quot;logo&quot;/&gt; &lt;/div&gt;
[/code]
so you can use your normal html tag to load the image,, its a relative path not the absolute path. since u r placing in a web container you would use the image in the context folder ..
like
---/rootContext
       +---------/WEB-INF
                              +---------/lib
                                              +---------freemarker.jar
                                              +---------.jar
       +---------/images [all the images]
       +---------/templates [ all the templates]

thats all, make sure your classpath entries are perfect.

Enjoy scripting

Regards,
Ronald]]></description>
		<content:encoded><![CDATA[<p>Hi Densil, For your query</p>
<pre class="brush: xml; title: ; notranslate"> Thanks for your tutorial. I was wondering how to add an Image in the FTl and where to store the image ?. I am bit confused with the relative /absolute path which is referenced by FTL and later by Java. Can you provide a short example based on the above project structure ?. thanks
</pre>
<p>FTL is just a template and a mere html file see the template carefully</p>
<pre class="brush: xml; title: ; notranslate">
&lt;html&gt;
    &lt;head&gt;&lt;/head&gt;
&lt;/html&gt;
</pre>
<p>just like this </p>
<pre class="brush: xml; title: ; notranslate">

         &lt;div class=&quot;logoDiv&quot;&gt;&lt;img src=&quot;logo.png&quot; class=&quot;logo&quot;/&gt; &lt;/div&gt;
</pre>
<p>so you can use your normal html tag to load the image,, its a relative path not the absolute path. since u r placing in a web container you would use the image in the context folder ..<br />
like<br />
&#8212;/rootContext<br />
       +&#8212;&#8212;&#8212;/WEB-INF<br />
                              +&#8212;&#8212;&#8212;/lib<br />
                                              +&#8212;&#8212;&#8212;freemarker.jar<br />
                                              +&#8212;&#8212;&#8212;.jar<br />
       +&#8212;&#8212;&#8212;/images [all the images]<br />
       +&#8212;&#8212;&#8212;/templates [ all the templates]</p>
<p>thats all, make sure your classpath entries are perfect.</p>
<p>Enjoy scripting</p>
<p>Regards,<br />
Ronald</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on FreeMarker Servlet Tutorial with Example by Ronald</title>
		<link>http://viralpatel.net/blogs/freemarker-servlet-tutorial-example/comment-page-1/#comment-45361</link>
		<dc:creator>Ronald</dc:creator>
		<pubDate>Wed, 22 May 2013 18:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://viralpatel.net/blogs/?p=2833#comment-45361</guid>
		<description><![CDATA[Nigau, yes you can embed the jetty server , u can use the similar way you use the normal servlet container.

For Example
----------------------------------------------------
[code language=&quot;java&quot;]
jetty = new Server(9090);

        WebAppContext theWebApp = new WebAppContext();
        theWebApp.setContextPath(&quot;/&quot;);
        theWebApp.setBaseResource(Resource.newClassPathResource(&quot;/webapp&quot;));
        theWebApp.setDescriptor(&quot;WEB-INF/web.xml&quot;);
        theWebApp.setClassLoader(getClass().getClassLoader());
        theWebApp.addServlet(new ServletHolder(new HelloServlet(backend)), &quot;/hello&quot;);
        
        jetty.setHandler(theWebApp);

jetty.start();
[/code]

Please note if you Eclipse set the Jetty in your classpath and create all the required resources(javascript) in the webapp folder. Since the freemarker template is loaded by the servlet we dont need to specify any markups in the web.xml Place all the *.ftl in the webapp folder... 

Regards,
Ronald]]></description>
		<content:encoded><![CDATA[<p>Nigau, yes you can embed the jetty server , u can use the similar way you use the normal servlet container.</p>
<p>For Example<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<pre class="brush: java; title: ; notranslate">
jetty = new Server(9090);

        WebAppContext theWebApp = new WebAppContext();
        theWebApp.setContextPath(&quot;/&quot;);
        theWebApp.setBaseResource(Resource.newClassPathResource(&quot;/webapp&quot;));
        theWebApp.setDescriptor(&quot;WEB-INF/web.xml&quot;);
        theWebApp.setClassLoader(getClass().getClassLoader());
        theWebApp.addServlet(new ServletHolder(new HelloServlet(backend)), &quot;/hello&quot;);
        
        jetty.setHandler(theWebApp);

jetty.start();
</pre>
<p>Please note if you Eclipse set the Jetty in your classpath and create all the required resources(javascript) in the webapp folder. Since the freemarker template is loaded by the servlet we dont need to specify any markups in the web.xml Place all the *.ftl in the webapp folder&#8230; </p>
<p>Regards,<br />
Ronald</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tutorial:Create Spring 3 MVC Hibernate 3 Example using Maven in Eclipse by Payal</title>
		<link>http://viralpatel.net/blogs/spring3-mvc-hibernate-maven-tutorial-eclipse-example/comment-page-6/#comment-45301</link>
		<dc:creator>Payal</dc:creator>
		<pubDate>Wed, 22 May 2013 16:26:32 +0000</pubDate>
		<guid isPermaLink="false">http://viralpatel.net/blogs/?p=2052#comment-45301</guid>
		<description><![CDATA[Hi Vijay,

I have tried everything listed in here in the past 3 days now , including the dependencies as youhave said in pom.xml but I am getting all exceptions and the project does not work.I am using weblogic and eclipse.

Since you got this working...Can you pls send your project as zipped folder so I can see what I am doing wrong, since admin wont reply ??

My email id is here . I would appreciate.

Thanks
Payal]]></description>
		<content:encoded><![CDATA[<p>Hi Vijay,</p>
<p>I have tried everything listed in here in the past 3 days now , including the dependencies as youhave said in pom.xml but I am getting all exceptions and the project does not work.I am using weblogic and eclipse.</p>
<p>Since you got this working&#8230;Can you pls send your project as zipped folder so I can see what I am doing wrong, since admin wont reply ??</p>
<p>My email id is here . I would appreciate.</p>
<p>Thanks<br />
Payal</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax Style File Uploading using Hidden iFrame by Krishna</title>
		<link>http://viralpatel.net/blogs/ajax-style-file-uploading-using-hidden-iframe/comment-page-1/#comment-45257</link>
		<dc:creator>Krishna</dc:creator>
		<pubDate>Wed, 22 May 2013 15:30:36 +0000</pubDate>
		<guid isPermaLink="false">http://localhost/wordpress/?p=122#comment-45257</guid>
		<description><![CDATA[Excellent boss you saved me]]></description>
		<content:encoded><![CDATA[<p>Excellent boss you saved me</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 21 JavaScript Tips and Tricks for JavaScript Developers by Chethan</title>
		<link>http://viralpatel.net/blogs/javascript-tips-tricks/comment-page-1/#comment-45250</link>
		<dc:creator>Chethan</dc:creator>
		<pubDate>Wed, 22 May 2013 13:46:02 +0000</pubDate>
		<guid isPermaLink="false">http://viralpatel.net/blogs/?p=3056#comment-45250</guid>
		<description><![CDATA[wow..great...this was very useful...but u have missed about functions ,objects ...anyhow it was a gud tutorial..]]></description>
		<content:encoded><![CDATA[<p>wow..great&#8230;this was very useful&#8230;but u have missed about functions ,objects &#8230;anyhow it was a gud tutorial..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tutorial:Saving/Retreving BLOB object in Spring 3 MVC and Hibernate by Shruthi</title>
		<link>http://viralpatel.net/blogs/tutorial-save-get-blob-object-spring-3-mvc-hibernate/comment-page-1/#comment-45235</link>
		<dc:creator>Shruthi</dc:creator>
		<pubDate>Wed, 22 May 2013 12:03:52 +0000</pubDate>
		<guid isPermaLink="false">http://viralpatel.net/blogs/?p=2129#comment-45235</guid>
		<description><![CDATA[Hi Viral,

Nice to see your website with so many solutions. I would like to thank you for helping us! I am very much new to this Java/J2EE world.. Please help me..

My query is, I need to do the same application with normal MVC app with Aceess 2010 as a database. Please do let me know if this is possible and would be greatly appreciated if you provide the hint or code like how to do it.....

Thanks in advance
Shruthi]]></description>
		<content:encoded><![CDATA[<p>Hi Viral,</p>
<p>Nice to see your website with so many solutions. I would like to thank you for helping us! I am very much new to this Java/J2EE world.. Please help me..</p>
<p>My query is, I need to do the same application with normal MVC app with Aceess 2010 as a database. Please do let me know if this is possible and would be greatly appreciated if you provide the hint or code like how to do it&#8230;..</p>
<p>Thanks in advance<br />
Shruthi</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Analyze website using online Website Analyzer Tools by Paul</title>
		<link>http://viralpatel.net/blogs/analyze-website-using-online-website-analyzer-tools/comment-page-1/#comment-45234</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Wed, 22 May 2013 12:00:05 +0000</pubDate>
		<guid isPermaLink="false">http://viralpatel.net/blogs/?p=1210#comment-45234</guid>
		<description><![CDATA[Nice info, thanks for the share!
There are also some good desktop solutions for on-site optimization. 
For instance, WebSite Auditor desktop tool finds out what structural elements can be fixed on site and helps to optimize numerous on-page factors. 
Very often such software has free versions, so I personally do experiment and play around with online and desktop solutions.]]></description>
		<content:encoded><![CDATA[<p>Nice info, thanks for the share!<br />
There are also some good desktop solutions for on-site optimization.<br />
For instance, WebSite Auditor desktop tool finds out what structural elements can be fixed on site and helps to optimize numerous on-page factors.<br />
Very often such software has free versions, so I personally do experiment and play around with online and desktop solutions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Database Connection Pooling in Tomcat using Eclipse by Mansoor</title>
		<link>http://viralpatel.net/blogs/database-connection-pooling-tomcat-eclipse-db/comment-page-1/#comment-45229</link>
		<dc:creator>Mansoor</dc:creator>
		<pubDate>Wed, 22 May 2013 11:37:43 +0000</pubDate>
		<guid isPermaLink="false">http://viralpatel.net/blogs/?p=1792#comment-45229</guid>
		<description><![CDATA[Explained and demonstrated well...all the very best..]]></description>
		<content:encoded><![CDATA[<p>Explained and demonstrated well&#8230;all the very best..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hibernate One To One Annotation Mapping Tutorial by SAI</title>
		<link>http://viralpatel.net/blogs/hibernate-one-to-one-mapping-tutorial-using-annotation/comment-page-1/#comment-45225</link>
		<dc:creator>SAI</dc:creator>
		<pubDate>Wed, 22 May 2013 11:33:44 +0000</pubDate>
		<guid isPermaLink="false">http://viralpatel.net/blogs/2214#comment-45225</guid>
		<description><![CDATA[nice tutorial]]></description>
		<content:encoded><![CDATA[<p>nice tutorial</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using memcached
Database Caching 1/20 queries in 0.029 seconds using memcached
Object Caching 405/458 objects using memcached

 Served from: viralpatel.net @ 2013-05-23 02:12:17 by W3 Total Cache -->