Skrishna Chaithanya

Greenhorn
+ Follow
since May 27, 2009
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 Skrishna Chaithanya

HI,
I developed a project using struts and hibernate. All are work fine in my system. I created a war file using MyEclipse IDE and I deployed it in other system.
There I got the problem. It is showing the message like: http404 Servletaction is not available.
But all jsp's and html files all are working fine. There is a problem with action classes.
But the same war file is working fine in my system where I developed the project.

Please help me out. I stuck with this problem from 2 days.



Thanks in advance.
14 years ago
Hello everybody,

When I am using jstl in my web application I am getting the above exception.
Here is my jsp code:

String user=request.getRemoteUser();
<c:forEach var="questions" items="${quesList}">
<tr><td class="postedques">${questions.description}</td></tr>
<tr><td height="5"></td></tr>
<tr><td class="postedans"><p align="justify">
</c:forEach>
<c:out value="${user}" default="guest"/>


Here quesList is an Object array which contains Tblquestion objects and I want to call getDescription() on this object.


Can anybody help me out why I am getting that exception.
Thanks in advance.
14 years ago
JSP
Hello everybody,
I am a newbie for struts. I have developed a sample application using struts and tiles. And now I want to hide the original url's and in the place of that I want to show my own url's.

I have done this partially using urlrewritefilter. But still I have some problems. Sometimes it is showing requested resource not available message.

How to do friendly url's in better way. Anybody help me please.

Thanks in advance.
14 years ago