Parth Krishnan

Greenhorn
+ Follow
since Apr 19, 2009
Parth likes ...
Eclipse IDE Firefox Browser Windows Vista
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 Parth Krishnan

1. Open the folder tomcat\conf on your computer

2. Now with a text editor you have to open and modify server.xml. Here you have to identify the following line (line 184) and you modify it so that changes from:

<Http10Connector port="8080"
secure="false"
maxThreads="100"
maxSpareThreads="50"
minSpareThreads="10" />

to:

<Http10Connector port="9090"
secure="false"
maxThreads="100"
maxSpareThreads="50"
minSpareThreads="10" />


3. Startup the web server and access it now using:http://localhost:9090/.......

It may be useful to you...
cool.....

14 years ago
Are you using any IDE such as MyEclipse?
14 years ago

Hi Friends,
Can any one please explain Difference between JBOSS and Weblogic server ?
14 years ago
i got one hint - "tools.jar" which is in jdk can be used to find the number of class'. but i dont know how.
14 years ago
How to find how many classes in JDK programatically?
14 years ago
How to access private data member of SUPER class from its SUB class?
14 years ago