prakash pai

Greenhorn
+ Follow
since Apr 06, 2007
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by prakash pai

The problem got resolved
U need to make an entry in http-web-site.xml

Thanks!!
18 years ago
Hi,
When I try to run my application it throws the following error.
07/04/06 21:33:09 testapp: JspServlet: unable to dispatch to requested page: Exception racle.jsp.parse.JspParseException: Line # 2, <%@ taglib uri="testappstags.tld" prefix="ReIM" %>
Error: Unable to load taghandler class: testapps.tld

Can anyone help me here.

Thanks.
18 years ago
The problem got resolved
U need to make an entry in http-web-site.xml

But now when I run the application it gives the following error:

07/04/06 21:33:09 testapp: JspServlet: unable to dispatch to requested page: Exception racle.jsp.parse.JspParseException: Line # 2, <%@ taglib uri="testappstags.tld" prefix="ReIM" %>
Error: Unable to load taghandler class: testapps.tld
18 years ago
Thanks for the link!!
But we do have the same war application deployed using OC4J in a unix server. I am trying to do this in my windows machine.
18 years ago
Hi,
I am using OC4J as my application server.
When I try to run my .WAR application it says page not found. The OC4J container has initialized properly.

Previously when I placed the war file in the application directory, it didnot deploy. Then I had to make an entry in applixation.xml.

I am wondering if a similar entry needs to be done in some other file.

The same application is running in Tomcat.

Plzz help!!
18 years ago
Hi,
I am using OC4J as my application server.
When I try to run my application it says page not found. The OC4J container has initialized properly.

Previously when I placed the war file in the application directory, it didnot deploy. Then I had to make an entry in applixation.xml.

I am wondering if a similar entry needs to be done in some other file.

The same application is running in Tomcat.

Plzz help!!
18 years ago
I have installed Tomcat 3.1 and followed the instruction as suggested by jakarta.apache.org.
I am trying to start tomcat using 'startup' script after setting all environment variables. But it looks like that the server is not getting started since i am not able to get anything if i type http://localhost:8080/ on browser.
How do u know whether the script ran successfully and server is running. In my case it opens a new dos window and close it immedialtely. I cannot see what is happening in new window.
Could somebody help me in configuring tomcat.
Thanks in advance
24 years ago
can anybody send me JLS link.

Thanks in advance.
Could some one please clarify me:
Why char c = 100; is true while
int i =100; char c = i; is false.
Similarly c= c+ i; is false but c+=i; is true.
Thanks in advance for ur help.
What is true about inner classes?
A) inner class can only be instantiated in its outer class.
B) Inner class be protected or private
C) Anonymous inner class can be both an explicit subclass and implements an interface
D) Anonymous inner class declare and instantiated at same place.
E) An instance of anonymous inner class can only be created in its outer class.
I marked D and E. But mock test gives B and D.
Could some one please explain why B is correct and not E.
Thanks in advance