Shyam Ramath

Greenhorn
+ Follow
since Jun 24, 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
1
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 Shyam Ramath

Peter Johnson wrote:I know of no way to restart the servlet container without restarting all of JBoss AS.


thanks Peter .
12 years ago

Bear Bibeault wrote:Which app server?


JBoss or Tomcat
12 years ago

Bear Bibeault wrote:

Suhas Mandrawadkar wrote:True, But what about the scenario when the web app is deployed and yet not started to service requests ?


What about it? If there's no app, there's no context to worry about at all. There's no point to this observation.



Is there anyway to re-start the servlet container with out restarting the app server ?
12 years ago

William Brogden wrote:Yes you can have multiple JVMs running in a single computer - why would you expect a problem?

Just like any other program you would have to watch out for conflicting use of resources - for example you can't have two Tomcat instances using the same ports.

Bill



In a tomcat I have a web application deployed , from that application can I start a JVM ?. ie to execute a job I need a separate JVM .
I know we can start a process which will be a separate JVM . A thread with in the tomcat JVM ( which may be costly operation ) .
Is there any JVM which allows a Virtual machine with in the same Virtual machine . Hope you are clear
12 years ago

Bear Bibeault wrote:What on Earth do connections have to do with tracking logins?



I did not mean database connection .. a login tracker object which release a entry pass to the user ..make sense ?
12 years ago
Create a connection pool using a object and restrict the user accordingly . Once the user logs out free the object to the pool .
12 years ago
How many JVM can be started with in a Application server ? . Can I start a JVM with in a JVM ..

12 years ago

For accessing the checkbox values in servlet . You need to call the getParamatervalues("BaseOption") on the request object and this return a Sting[] .Now you have the checked values .

.

13 years ago
JSP
While compiling the webservices using

<taskdef name="jwsc" classname="weblogic.wsee.tools.anttasks.JwscTask"
classpath="c:\weblogic.jar" />


I'm getting an exception below . I'm using the 'weblogic.jar' from 9.2 version . Do I need to add any jar to the classpath ?

Could not create type jwsc due to java.lang.NoClassDefFoundError: weblogic/utils/classloaders/ClasspathClassLoader

Thanks,
-Shyam Ramath
13 years ago
What happen to a waiting thread if notify() is not called on the locked object anytime ( due to some deadlock ) . is there any mechanism to release the lock forcefully ?

-Shyam Ramath



I'm getting this exception while sending a message to a weblogic Q , using the code below . I tried different ways , the same is running perfectly in 9.2 .Do you guys know any workaround for this issue ?





13 years ago
You need to select the target server while creating the JMS Server

The Steps you need to follow while configuring the JMS Q in weblogic server ,

1) Create a JMS server (Select the Domain server while creating the server )
2) Create a JMS module (Select you JMS server for this module )
3) Create a Queue under this module

Try to send message to this Q .

-Shyam
14 years ago
Rob ,



there is no such method 'hasInt()' under Scanner .

14 years ago