RE: [JBoss-user] Expanding JBoss JVM memory

2004-03-23 Thread Yasuda, Hiroyuki
Jaime,

You should add -Xms parameter as well.
-Xms set initial memory allocation.
-Xmx set maximum memory allocation.
in order to make your jvm performance maximum,
you should use same memory size in -Xmx and -Xms.

e.g.
Set JAVA_OPTS= -Xms512m -Xmx512m
run JBoss.


YASUDA, Hiroyuki


> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] Behalf Of 
> JAIME GOMEZ
> Sent: Wednesday, March 24, 2004 7:18 AM
> To: [EMAIL PROTECTED]
> Subject: [JBoss-user] Expanding JBoss JVM memory
> 
> 
> How to increase the size of my JVM memory to 512M? I don't 
> sure if this
> procedure is correct
> 
> 1.- Set JAVA_OPTS = -Xmx512m
> 2.- Run JBoss 3.2.3
> 
> is it correct this configuration? I work with J2SDK1.4.2 , RedHat 7.2 
> and JBoss3.2.3
> 
> is it the same -Xmx512m and -Xmx512mb ?
> 
> 
> Jaime Gomez
> 
> 
> ---
> This SF.Net email is sponsored by: IBM Linux Tutorials
> Free Linux tutorial presented by Daniel Robbins, President and CEO of
> GenToo technologies. Learn everything from fundamentals to system
> administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user
> 


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] connecting apache22 with JBoss 3.2.x - what way choose?

2004-03-16 Thread Yasuda, Hiroyuki
Jiri,

> -Original Message-
> Subject: [JBoss-user] connecting apache22 with JBoss 3.2.x - 
> what way choose?
> 
> 
> Hallo,
> I'd like to connect apache2 with jboss 3.2.x
> 
> I was tried mod_jk2, but it seems very undocumented or 
> erroneous? For example 
> - I was download jk2 2.0.2 sources, unzip and there was do 
> docs. I see only 
> ent's build.xml, so I try ant, but it failed. Somewhere in 
> net I found some 
> help to edit utils/build.properties.sample, but there is no 
> utils direcotry 
> and no sample properties file.

goto ${connector_source_dir}/jk/native2 directory.
You can find configure script.

configure option when I executed was as follows:

%./configure \
--with-tomcat40=${TOMCAT_HOME} \
--with-tomcat41=${TOMCAT_HOME} \
--with-apache20=${APACHE_HOME} \
--with-apxs2=${APACHE_HOME}/bin/apxs

I think that the document http://www.amitysolutions.com.au/documents/JK2-technote.pdf 
is very useful to compile mod_jk2.


YASUDA, Hiroyuki   AManager of Technology / Platform Tech. Department
   Sony Global Solutions Incorporated, Tokyo, Japan.
   e-Mail: [EMAIL PROTECTED]



---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] JBoss Classloading problem

2004-02-09 Thread YASUDA, Hiroyuki
Stefan,

Stefan Schuster wrote:
Hi,

I have a stateless session bean, which uses a
class (ReplicationTriggerServiceServiceLocator).
My IDE (Eclipse) find the class and organizes the import,
the buildscript (ANT) includes in the jar, but JBoss
tells me :
13:07:27,284 WARN  [EJBDeployer] Verify failed; continuing
java.lang.NoClassDefFoundError:
de/fag/grobi/wsAdapter/replicationTrigger/Replic
ationTriggerServiceServiceLocator
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:1647)
at java.lang.Class.privateGetPublicMethods(Class.java:1770)
at java.lang.Class.getMethods(Class.java:824)
at
> ..

Can you show us command result of `jar tvf ` ?
What file includes that class?
--
-----
YASUDA, Hiroyuki
---
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] problem with unwanted sharing object between web applications

2003-12-17 Thread Yasuda, Hiroyuki
Jiri,

It is one of popular question regarding to UnifiedClassLoader.
You need to change  tag .ear by .ear.
Please check jboss_3_2.dtd

Regards,
Hiro.

> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] Behalf Of 
> [EMAIL PROTECTED]
> Sent: Wednesday, December 17, 2003 7:46 PM
> To: [EMAIL PROTECTED]
> Subject: [JBoss-user] problem with unwanted sharing object 
> between web applications
> 
> 
> Hallo,
> i have a few web aplikations (wars) which contains the same 
> files and classes in
> same packages, with only diference in web.xml config file. 
> And I have problem with unwanted sharing object between this 
> applications.
> For example, I have
> 
> some.ear
>  -first.war 
>   -WEB-INF/classes/testpackage.Config
>   -WEB-INF/web.xml with some servlet property named 
> "database_schema" with value
> "first", which is red and returned by Config class
>  -second.war  
>  
> 
>   -WEB-INF/classes/testpackage.Config
>   -WEB-INF/web.xml with some servlet property named 
> "database_schema" with value
> "second"
>   
>  But both objects, Config from first.war and second.war, 
> returns the same value
> - "second"
>  
>  Why? where is some configuration property which causes it?
>  
>  I have JBoss 3.2.2 with Tomcat, I tried to use 3.2.3 version 
> with the same effect.
>  
>  Thanks for help,
>  Jiri
> 
> 
> 
> 
> ---
> This SF.net email is sponsored by: IBM Linux Tutorials.
> Become an expert in LINUX or just sharpen your skills.  Sign 
> up for IBM's
> Free Linux Tutorials.  Learn everything from the bash shell 
> to sys admin.
> Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click
> ___
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user
> 


---
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id78&alloc_id371&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user