mamidi venkat

Ranch Hand
+ Follow
since Jul 03, 2007
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 mamidi venkat

Hello Everyone,

iam getting the below error in the tomcat server while tomcat server startup

java.lang.ClassNotFoundException: com.ibm.ws.webservices.multiprotocol.GeneratedService

please suggest what am i missing , let me know which jar file i need to place to rectify this error ?

thanks,
Mamidi
7 years ago
Hi,

We have web application running fine in production with 5 User in Tomcat 7, Now the user have increased from 5 to 200 users.

We need your idea/suggestions to improve the performance at tomcat 7 side however the application shouldn't crash if at a time 150 users login in to Application. What are the parameters we need to consider in Tomcat 7
when 150 user hits url at that moment.

Thanks,
Mamidi

8 years ago
Hello All,

we have deployed two different war files (example A War file, and B War File) in the same tomcat server and both are running fine , we try to connect A War file with the code of B War file code to get the results from War A
using the below code

URL url = new URL("http://localhost:7070/A/user/");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();

tomcat is taking long time to fetch the result after it has established the connection, But the end of the day also we didn't get result. Why tomcat is too long time and doesnt give any results.

please let me know on this.

thanks,
Venkat
8 years ago
Hello All,

i have configured the Glassfish server in my local machine,

after configuration JVM Options with below line

"Djava.security.auth.login.config=PATH_TO_GROPS_CONFIG_DIRECTORY/login.conf"

and trying to login to admin portal http://localhost:4848,iam getting the Authenticalion failed why it so.

this is happening every time when iam creating new domain, how to overcome this issue ?

regards,
Venkat
10 years ago
Hi ALL,

I wanted to know request object will take more heap or session will take heap memory
becaused iam java heap memory problem.


prasad
14 years ago
Hi Jai

Thank for the update

I would like know here we have an envirnment windows 2003 ,sqlserver 2000 with jboss running in the production server
suddenly jboss was struck we are unable to login the application so, we had to restart the jboss server

we didn't get any errors on the jboss console when we have checked in the server log file we have found the
this debug statement. So i wanted know here is with debug statement and jboss struck any relation is there just wanted
to know.i was just confused here.

prasad
14 years ago
Hi All,


Iam getting the below error for every 8 mins in the jboss server log file

DEBUG [org.jboss.resource.connectionmanager.IdleRemover] run: IdleRemover notifying pools, interval: 450000

can any tell why the error is coming and what could be the reason behind this .Is this harmfull to my application in future ?
please let me know.


prasad
14 years ago
Hi

i would like to know that suppose we got the connection object and created the statement object also
and we have closed the connection but we havn't close the statement object it automatically close the statement
or we need to close the statement explicitly

i heard that statement object will close automatically when we close the connection is it true ?

prasad
Hi,

I want to clarify this whether java is Pure Object Oriented or not?
primitve datatype which is not object.
16 years ago
Hi,

why threads are called as execution contexts or lightweight processes and also how they manage to keep moving in and out of running state without ever loosing the correctness of execution.
16 years ago
Hi

As Java makes use of native threads for the execution of multiple threads
what is this native threads ?? can any one explain this
16 years ago
class Super{
private void Hello(){
System.out.println("Iam in Super()");
}
}
class Sub extends Super{
void Hello(){
System.out.println("Iam in Sub()");
}
}
public class Checking{
public static void main(String[] args)
{
Super s = new Sub();
Sub s1 = new Sub();

s.Hello();//iam getting error why ?
s1.Hello();this is Correct


}
}

here iam calling Super class ref s.hello()on Sub class Obj. Iam geting compile time error why ?What is the reason..
16 years ago
class Super{
private void Hello(){
System.out.println("Iam in Super()");
}
}
class Sub extends Super{
private void Hello(){
System.out.println("Iam in Sub()");
}
}
public class Checking{
public static void main(String[] args)
{
Super s = new Sub();
Sub s1 = new Sub();

s.Hello();//iam getting error why ?
s1.Hello();this is Correct


}
}

here iam calling Super class ref s.hello()on Sub class Obj. Iam geting compile time error why ?What is the reason..
16 years ago
Hi All

What is the difference between Synchronized Block and Synchronized method with an example .confused with this.
Thanks for reply


My syntax is correct MY Q is can use If() in and Above the div tag
iam getting error div is not working if iam use'g if() there.how to slove this isuue


<%if(){%>
<div id='CitizenNo' style="display:block">

<table width="90%" border='0' align="center" cellspacing=0 cellpadding=0>


<TR>
<TD class="tColTitle1" style="width:200px" align="right" nowrap>Tape To Be Inserted (B)    : </td><td>
<select class="mediumCombo" name="Inserted" style='width:150px'>

<option value=''></option></select>
</TD>
</TR>


<TR><TD class="tColTitle1" style="width:200px" align="right" nowrap>Edit Bar Code (B)  : </td>
<td><input type="text" name="Barcode" value=""></td>
</TR>
<%}%>
</table>
</div>
16 years ago
JSP