<?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>idError &#187; JAVA-JSP</title>
	<atom:link href="http://iderror.com/category/errors/java/java-jsp/feed/" rel="self" type="application/rss+xml" />
	<link>http://iderror.com</link>
	<description>You have errors, we have solutions!</description>
	<lastBuildDate>Sun, 22 Mar 2009 21:18:56 +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>IllegalStateException while using JSP</title>
		<link>http://iderror.com/errors/java/java-jsp/illegalstateexception-while-using-jsp/</link>
		<comments>http://iderror.com/errors/java/java-jsp/illegalstateexception-while-using-jsp/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 10:28:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-JSP]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=8027</guid>
		<description><![CDATA[Applies to:NA Description:Signals that a method has been invoked at an illegal or inappropriate time. In other words, the Java environment or Java application is not in an appropriate state for the requested operation.  Cause:a. The most common cause of this exception is a servlet or JSP attempting to write to the output stream [...]]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>NA<br/><br/> <b>Description:</b><br/>Signals that a method has been invoked at an illegal or inappropriate time. In other words, the Java environment or Java application is not in an appropriate state for the requested operation. <br/><br/> <b>Cause:</b><br/>a. The most common cause of this exception is a servlet or JSP attempting to write to the output stream after the response has been committed.<br />
b. Another way this can happen is by attempting to redirect from within the middle of a JSP page: </p>
<p>&#8230;</p>
<div>hello world</div>
<p><%<br />
 if ("not logged in")<br />
        response.sendRedirect("login.jsp");<br />
%></p>
<div>more stuff</div>
<p>&#8230;</p>
<p>c. Another common place where an IllegalStateException is likely to occur is in a JSP that attempts to stream binary data. JSPs are primarily designed to format output as HTML. With HTML, white space characters are ignored. It is not uncommon for JSP compilers to inject their own white space charaters to the beginning and/or end of the output stream. Line breaks in the developer&#8217;s code can also be interpreted as white space in the output stream. These white space characters can interfer with the generated servlet&#8217;s ability to create and stream the binary outputdata, resulting in the IllegalStateException. <br/><br/> </p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-jsp/illegalstateexception-while-using-jsp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Java Bean not found</title>
		<link>http://iderror.com/errors/java/java-jsp/java-bean-not-found/</link>
		<comments>http://iderror.com/errors/java/java-jsp/java-bean-not-found/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 10:28:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-JSP]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=8028</guid>
		<description><![CDATA[Applies to:NA Description:A common problem which occurs when the class loader cannot find beans that the pages reference.That usually results in an error message like &#8220;Class xxx cannot be resolved to a type&#8221; Cause:The class loader could not find beans that the pages referenced. 
]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>NA<br/><br/> <b>Description:</b><br/>A common problem which occurs when the class loader cannot find beans that the pages reference.That usually results in an error message like &#8220;Class xxx cannot be resolved to a type&#8221;<br/><br/> <b>Cause:</b><br/>The class loader could not find beans that the pages referenced.<br/><br/> </p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-jsp/java-bean-not-found/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>EL Or JSTL Not Working As Expected</title>
		<link>http://iderror.com/errors/java/java-jsp/el-or-jstl-not-working-as-expected/</link>
		<comments>http://iderror.com/errors/java/java-jsp/el-or-jstl-not-working-as-expected/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 10:28:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-JSP]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=8029</guid>
		<description><![CDATA[Applies to:NA Description:Occurs while using EL or JSTL in JSP. Cause:Configuration mismatch between the version of JSP that you are using, the version of the JSTL that you employ, and how you have declared your web application in the deployment descriptor (web.xml).  
]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>NA<br/><br/> <b>Description:</b><br/>Occurs while using EL or JSTL in JSP.<br/><br/> <b>Cause:</b><br/>Configuration mismatch between the version of JSP that you are using, the version of the JSTL that you employ, and how you have declared your web application in the deployment descriptor (web.xml). <br/><br/> </p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-jsp/el-or-jstl-not-working-as-expected/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Resource Url Problems</title>
		<link>http://iderror.com/errors/java/java-jsp/resource-url-problems/</link>
		<comments>http://iderror.com/errors/java/java-jsp/resource-url-problems/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 10:28:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-JSP]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=8030</guid>
		<description><![CDATA[Applies to:NA Description:A common issue is the problem where the external resources for a page, to include images, style sheets and script files, do not load.  Cause:his problem is frequently caused by using page-relative URLs to these resources.
Within a static web site, the URL to HTML files is formed from the file path to [...]]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>NA<br/><br/> <b>Description:</b><br/>A common issue is the problem where the external resources for a page, to include images, style sheets and script files, do not load. <br/><br/> <b>Cause:</b><br/>his problem is frequently caused by using page-relative URLs to these resources.<br />
Within a static web site, the URL to HTML files is formed from the file path to that page. Within a dynamic web application, this is no longer the case; the URLs are usually formed from mappings within the deployment descriptor (web.xml).</p>
<p>Thus, a URL such as</p>
<p>http://some.server.com/command/doSomething</p>
<p>does not reference any particular folder on the file system. Rather, it is referencing a servlet mapped within the deployment descriptor.<br />
When you forward to a JSP from this servlet, the URL remains the same and the browser has no way of knowing that the URL does not reference a folder. And it certainly has no way of knowing in which folder the JSP resides.<br />
Thus, if you use page-relative URLs in the JSP, the browser tries to use the servlet mapping to resolve the path to the file, and of course, that fails. <br/><br/> </p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-jsp/resource-url-problems/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>UnsatisfiedLinkError: no jchli in java.library.path</title>
		<link>http://iderror.com/errors/java/java-jsp/unsatisfiedlinkerror-no-jchli-in-javalibrarypath/</link>
		<comments>http://iderror.com/errors/java/java-jsp/unsatisfiedlinkerror-no-jchli-in-javalibrarypath/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-JSP]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=365</guid>
		<description><![CDATA[Applies to: Description:Error while trying to convert an application into JSP that is using the shared library libjchli.so. Cause:libjchli.so is not loaded
]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/><br/><br/> <b>Description:</b><br/>Error while trying to convert an application into JSP that is using the shared library libjchli.so.<br/><br/> <b>Cause:</b><br/>libjchli.so is not loaded<br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-jsp/unsatisfiedlinkerror-no-jchli-in-javalibrarypath/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Attempt to clear a buffer that is already been flushed</title>
		<link>http://iderror.com/errors/java/java-jsp/attempt-to-clear-a-buffer-that-is-already-been-flushed/</link>
		<comments>http://iderror.com/errors/java/java-jsp/attempt-to-clear-a-buffer-that-is-already-been-flushed/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-JSP]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=373</guid>
		<description><![CDATA[Applies to:Tomcat 3.2.2 Description:An internal server error while trying to run an application built in JavaBeans and JSP. Cause:A clearBuffer() method is called when the buffer has already been flushed.
]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>Tomcat 3.2.2<br/><br/> <b>Description:</b><br/>An internal server error while trying to run an application built in JavaBeans and JSP.<br/><br/> <b>Cause:</b><br/>A clearBuffer() method is called when the buffer has already been flushed.<br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-jsp/attempt-to-clear-a-buffer-that-is-already-been-flushed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>405: HTTP method POST is not supported by this URL</title>
		<link>http://iderror.com/errors/java/java-jsp/405-http-method-post-is-not-supported-by-this-url/</link>
		<comments>http://iderror.com/errors/java/java-jsp/405-http-method-post-is-not-supported-by-this-url/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-JSP]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=374</guid>
		<description><![CDATA[Applies to: Description:An included servlet error while trying to use HTML files using POST methods. Cause:A bug in the servlet engine.
]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/><br/><br/> <b>Description:</b><br/>An included servlet error while trying to use HTML files using POST methods.<br/><br/> <b>Cause:</b><br/>A bug in the servlet engine.<br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-jsp/405-http-method-post-is-not-supported-by-this-url/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>405 Method Not Allowed</title>
		<link>http://iderror.com/errors/java/java-jsp/405-method-not-allowed/</link>
		<comments>http://iderror.com/errors/java/java-jsp/405-method-not-allowed/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-JSP]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=375</guid>
		<description><![CDATA[Applies to:Apache
Tomcat Description:Error while trying to POST to a JSP page. Cause:Servlet container is not started
]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>Apache<br />
Tomcat<br/><br/> <b>Description:</b><br/>Error while trying to POST to a JSP page.<br/><br/> <b>Cause:</b><br/>Servlet container is not started<br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-jsp/405-method-not-allowed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>headTable.style has no properties in Firefox</title>
		<link>http://iderror.com/errors/java/java-jsp/headtablestyle-has-no-properties-in-firefox/</link>
		<comments>http://iderror.com/errors/java/java-jsp/headtablestyle-has-no-properties-in-firefox/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-JSP]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=376</guid>
		<description><![CDATA[Applies to:Mozilla v1.0 Description:Error while running JSP in Mozilla. Cause:
]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>Mozilla v1.0<br/><br/> <b>Description:</b><br/>Error while running JSP in Mozilla.<br/><br/> <b>Cause:</b><br/><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-jsp/headtablestyle-has-no-properties-in-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ParseException: Seen file include.jsp already, maybe this is a recursive include</title>
		<link>http://iderror.com/errors/java/java-jsp/parseexception-seen-file-includejsp-already-maybe-this-is-a-recursive-include/</link>
		<comments>http://iderror.com/errors/java/java-jsp/parseexception-seen-file-includejsp-already-maybe-this-is-a-recursive-include/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 14:20:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JAVA-JSP]]></category>

		<guid isPermaLink="false">http://localhost/idError/?p=377</guid>
		<description><![CDATA[Applies to:Websphere Application Server 3.5.3
 Description:Error while trying to include a JSP into another JSP using the include directive. Cause:A bug in Tomcat WAS 3.5.3 when including two JSPs with each other.
]]></description>
			<content:encoded><![CDATA[<p><b>Applies to:</b><br/>Websphere Application Server 3.5.3<br />
<br/><br/> <b>Description:</b><br/>Error while trying to include a JSP into another JSP using the include directive.<br/><br/> <b>Cause:</b><br/>A bug in Tomcat WAS 3.5.3 when including two JSPs with each other.<br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://iderror.com/errors/java/java-jsp/parseexception-seen-file-includejsp-already-maybe-this-is-a-recursive-include/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
