[JBoss-user] [Installation Configuration] - JNDI configuration

2004-07-08 Thread meissa
I need to configure a global jndi variable variable that all my applications could 
access without having to duplicate the definition neither in the web.xml not the the 
jboss-web.xml. 
Can someone tell me if this feature is availlable in jboss.

thanks in advance

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3841328#3841328

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3841328


---
This SF.Net email sponsored by Black Hat Briefings  Training.
Attend Black Hat Briefings  Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: JNDI configuration

2004-07-08 Thread meissa
Thanks for you suggestion. But I would like to avoid hard coding it.
I was thinking that there was an existing Mbean that's doing the task just like the 
External Context Mbean and so ...

any other suggestion ?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3841333#3841333

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3841333


---
This SF.Net email sponsored by Black Hat Briefings  Training.
Attend Black Hat Briefings  Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: URGENT- Classloader issue

2004-06-16 Thread meissa
you can fix this by setting the UseJBossWebLoader of the jboss-service
of the jboss-web-tomcat.sar like this.

false

let me know if it does'nt work.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3838947#3838947

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3838947


---
This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference
Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer
Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA
REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Where should I config the data source ?

2004-06-14 Thread meissa
in the deploy dir of your config set.
As an example you can see hsqldb-ds.xml in the deploy directory of the default config 
set.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3838612#3838612

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3838612


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Where should I config the data source ?

2004-06-14 Thread meissa
Go to the /doc/examples/jca directory of you jboss installation. There are
example configurations for many databases.
You'll probably find the config file that suit to you database.
The hsqldb-ds.xml is an example for hypersonic database.
You must put the file file in your deploy dir after adjusting required parameter.

Of course, the driver class needs to be loaded onto jboss classpath. The lib directory 
of your config set is a good place.



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3838617#3838617

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3838617


---
This SF.Net email is sponsored by the new InstallShield X.
From Windows to Linux, servers to mobile, InstallShield X is the
one installation-authoring solution that does it all. Learn more and
evaluate today! http://www.installshield.com/Dev2Dev/0504
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: how to deploy application outside deploy directory

2004-06-09 Thread meissa
you can do that by editing the jboss-service.xml file of your config set and
customize the URL attribute of the URLDeploymentScanner.

here is an example:


 deploy/,/D:/yourDirectory/
  

everything deployable in the new directory will be deployed and also hot deployed.

you can also supply an url.

Meissa



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3838082#3838082

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3838082


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: changing default http port to 8090

2004-06-09 Thread meissa
you can change the default http port by editing the jboss-service.xml which is the 
MBean service descriptor of the embedded Tomcat.
this file is available in the \META-INF directory of the exploded sar directory of the 
configuration set you use

You can than change the port number of you connector in the coonector attribute.

Meissa

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3838086#3838086

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3838086


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: how to deploy application outside deploy directory

2004-06-09 Thread meissa
send me the URL attribute of your URLDeploymentScanner and the directory where you 
want to deploy. I'll give you the right synthaxe.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3838115#3838115

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3838115


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - starting jboss as root on linux

2004-06-09 Thread meissa
I'm running jboss on linux by the root user. The jboss faq recommends to create a 
jboss user without any details.
Can someone tells me relevant reasons not to run jboss as root.

any suggestions is greetly appreciated.


meissa


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3838126#3838126

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3838126


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation Configuration] - Re: Order of deployment

2004-06-09 Thread meissa
if you deploy you entity beans and your mysql jar in the same directory called 
deployDir (for example),
you must create a subdirectory called deployDir.last where you'll move your entity 
beans ears.



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3838134#3838134

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3838134


---
This SF.Net email is sponsored by: GNOME Foundation
Hackers Unite!  GUADEC: The world's #1 Open Source Desktop Event.
GNOME Users and Developers European Conference, 28-30th June in Norway
http://2004/guadec.org
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user