Sandeep Prabhakar

Ranch Hand
+ Follow
since Dec 22, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Sandeep Prabhakar

Thanks folks.
Got it working

Cheers,
Sandeep
Hey,
I think that was the problem.
I am using Net Beans and when I try to include core tag libs, I get an error saying "could not resolve the uri"
Ranchers, please help me how to resolve this issue.

Cheers,
Sandeep
Can you try setting IsApplicationInProductionMode=false.
I am getting the alert message even when IsApplicationInProductionMode=false.

Also,
When I just print the value in IsApplicationInProductionMode using the statement
${initParam.IsApplicationInProductionMode}
, the correct value is getting displayed

Cheers,
Sandeep
[ November 21, 2006: Message edited by: Sandeep Prabhakar ]
Even
<c:if test="${initParam.IsApplicationInProductionMode == 'false'}" >

does not work.
Even this does not work

The web.xml entry for this context parameter is

<context-param>
<param-name>IsApplicationInProductionMode</param-name>
<param-value>true</param-value>
</context-param>
I guess it treats IsApplicationInProductionMode as String.
Hi Ranchers,
I am not able to get the <c:if> .. </c:if> tag working.
I have a Context Parameter called IsApplicationInProductionMode.
The idea of having this is to display debugging info or not. If IsApplicationInProductionMode has the value of 'false', I want to display some debugging info.

In one of the error page that catches all Exceptions thrown, I have the following code

<c:if test="${initParam.IsApplicationInProductionMode eq 'false'}" >
Exception on the Server - ${pageContext.exception}
</c:if>

Now the problem is - irrespective of the value in IsApplicationInProductionMode, the debugging info is always displayed.
Ranchers, please let me know if I am missing some thing here.

Cheers,
Sandeep
[ November 21, 2006: Message edited by: Sandeep Prabhakar ]
Hey Ranchers,
I want tomcat to be configured with Eclipse. Please provide me pointers for the same.

Cheers,
Sandeep
Congrats.

Can you please email your notes to sandeep.mp@gmail.com?

Cheers,
Sandeep
Hey Ranchers,
Took the exam today and passed it with 94%.
I would like to thank Kathy and Bert for writing HFEJB.
I would also like to thank all the ranchers who helped me to clarify various concepts.

Cheers,
Sandeep
[ July 03, 2006: Message edited by: Sandeep MP ]
Hey,
The option "The client will get a javax.ejb.EJBException but it can continue with the same transaction" does not mean that the client transaction is rolledback. I feel that it's a way of informing the client that something bad has happened during the execution of method A. Now it's upto the client to decide if it should continue the transaction it owns or not.

Ranchers,
Please correct me if I am wrong.

HTH,
Sandeep
Hey Ranchers,
Can an Entity Bean survive a Container Crash?

Cheers,
Sandeep