Siddalinga Murthy

Greenhorn
+ Follow
since Sep 17, 2001
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 Siddalinga Murthy

Use the attribute nocache="true" in the controller tag of your struts-config.xml
<controller....nocache="true"../>
19 years ago
JSP
Thanx naveen,
Actually i looked at that but the swap spaae is also good enough.
Now its actually solved by increasing the number of processes in the solaris system.
I changed that and restarted the server.Now its working fine
22 years ago
Hi madhav
This error is not coming iun the browser
This error is displayed in the log file of the weblogic server.
In the browseer it doesn't display anything.It says page cannot displayed
22 years ago
Hi,
I am facing a problem while uploading a jsp to the document root and accessing it from browser.
I tried to put a new jsp in the document root directory and tried to get it in the browser
It gave the following error
/site/tms-weblogic/weblogic/myserver/classfiles/jsp_servlet/_FirstJsp.java failed: java.io.IOException: Not enough space
at java.lang.UNIXProcess.forkAndExec(Native Method)
at java.lang.UNIXProcess.<init>(UNIXProcess.java:62)
at java.lang.Runtime.execInternal(Native Method)
at java.lang.Runtime.execInternal(Compiled Code)
at java.lang.Runtime.exec(Compiled Code)
at java.lang.Runtime.exec(Compiled Code)
at weblogic.utils.Executable.exec(Compiled Code)
at weblogic.utils.Executable.exec(Compiled Code)
at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(Compiled Code)
at weblogic.utils.compiler.CompilerInvoker.compile(Compiled Code)
at weblogic.servlet.jsp.JspStub.compilePage(Compiled Code)
at weblogic.servlet.jsp.JspStub.prepareServlet(Compiled Code)
at weblogic.servlet.internal.ServletStubImpl.getServlet(Compiled Code)
at weblogic.servlet.internal.ServletStubImpl.invokeServlet(Compiled Code)
at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled Code)
at weblogic.servlet.internal.ServletContextImpl.invokeServlet(Compiled Code)
at weblogic.servlet.internal.ServletContextManager.invokeServlet(Compiled Code)
at weblogic.socket.MuxableSocketHTTP.invokeServlet(Compiled Code)
at weblogic.socket.MuxableSocketHTTP.execute(Compiled Code)
at weblogic.kernel.ExecuteThread.run(Compiled Code)
I have enough space in hard disc as well as in RAM
Can anybody help me out.
One more thing i am doing it in solaris
22 years ago

Hi,
I am doing the following in a jsp.I am storing a connection pool in the servletcontext and taking it back if its already initiated.
But when i restart the server it works When i make any changes in the jsp like commenting also This is throwing up the exception classcastException.
Can anybody help me out in this matter
This is happening in bea weblogic5.1
ConnectionPool OurConnectionPool=new ConnectionPool();
Object objConnServlet=getServletConfig().getServletContext().getAttribute("abc");

if (objConnServlet==null)
{
ourConnectionPool.initialize();
getServletConfig().getServletContext().setAttribute("abc",ourConnectionPool);
}
else
{
ourConnectionPool=(ConnectionPool)objConnServlet;
}
22 years ago
Thanks ajith actually this is the first time i am posting a topic.I did not look at the categories
22 years ago

I have iplanet 4.1 webserver
I am using session in my application.
If the client's date is ahead of the server,the server is creating a new session for every request.I mean even if the user moves to the other screen,its not retaining the earlier session.I am using session to store user's information like username and password,etc
22 years ago
Hey
I have weblogic 5.1
Whenever i restart the server and try to access some jsps from the browser its giving the error which is
java.lang.ClassCircularityError:

Please help me to get rid of this problem
22 years ago
import java.sql.Connection;
import java.sql.Statement;
import java.sql.DriverManager;
import java.sql.ResultSet;
try
{
Class.forName("oracle.jdbc.driver.OracleDriver");
java.sql.Connection JDBCconnection= DriverManager.getConnection(DBConstants.DB_URL, DBConstants.DB_User, DBConstants.DB_Password);
}
Statement statement1=JDBCconnection.createStatement();
ResultSet rs=statement1.executeQuery("SQL QUERY")
rs.next();
22 years ago
The classpath does not include the class which you are trying to run.i.e,
If you are in c:\ and compiled in the same directory and your classpath is ../jdk1.2/bin
Then it won't find the class and give the error
22 years ago