suhas walanjoo

Greenhorn
+ Follow
since Sep 12, 2003
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 suhas walanjoo

Hi,

I have a Java application running on JBoss 3.0.0 on Linux 7.3. When I run comman java -version

I get the following :

Java TM runtime Environement Standard Edition <build 1.4.1_01-b01
Java Hotspot <TM> Client VM Build 1.4.1_01-b01 <mixed mode>

From Sun Java site, I understand that for long running server tasks we need to use -server flag. When I try java -server command and check the version again, it still shows the client VM as above.

Can someone please clarify this issue (whether we really must have java - server option for JBoss/EJB based application). If yes, how d o we set it?? (I think a separate download as par tof JVM is not reuired.)

Regards,

Suhas Walanjoo
20 years ago
Hi,

I have a Java application running on JBoss 3.0.0 on Linux 7.3. When I run comman java -version

I get the following :

Java TM runtime Environement Standard Edition <build 1.4.1_01-b01
Java Hotspot <TM> Client VM Build 1.4.1_01-b01 <mixed mode>

From Sun Java site, I understand that for long running server tasks we need to use -server flag. When I try java -server command and check the version again, it still shows the client VM as above.

Can someone please clarify this issue (whether we really must have java - server option for JBoss/EJB based application). If yes, how d o we set it?? (I think a separate download as par tof JVM is not reuired.)

Regards,

Suhas Walanjoo
20 years ago
Hi,

I have a Java application running on JBoss 3.0.0 on Linux 7.3. When I run comman java -version

I get the following :

Java TM runtime Environement Standard Edition <build 1.4.1_01-b01
Java Hotspot <TM> Client VM Build 1.4.1_01-b01 <mixed mode>

From Sun Java site, I understand that for long running server tasks we need to use -server flag. When I try java -server command and check the version again, it still shows the client VM as above.

Can someone please clarify this issue (whether we really must have java - server option for JBoss/EJB based application). If yes, how d o we set it?? (I think a separate download as par tof JVM is not reuired.)

Regards,

Suhas Walanjoo
20 years ago
Dear all,
I have deployed ejbs on Jboss application server and I am calling the ejb's from web server(tomcat) which
is on different machine.
I have done the configurations for JNDI look up.
env.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");
env.put("java.naming.provider.url", "comp194:1099");
env.put("java.naming.rmi.security.manager", "yes");
Context ctx = new InitialContext(env);
When the servlet is called it throws exception
java.security.AccessControlException: access denied (java.io.FilePermission
C:\tomcat-4.1\webapps\dxdamsweb1.0\WEB-INF\classes\jndi.properties read)
I tried modifying catalina.policy file for the permission still it is giving me those errors.
Can someone please help me. If you do know the answer or want to commmunicate with me please write
at suhasv1@yahoo.com
Regards,
Suhas Walanjoo