Re: [JBoss-user] [Installation Configuration] - Does JBoss run on MS ME

2004-03-05 Thread konf
Hallo 
add to jboss\nin\run.bat path to your jdk directory (must be jdk, not only jre):
set JAVA_HOME=C:\j2sdk1.4.2_03

Jirka 


Cituji z emailu od johnybravo2002 [EMAIL PROTECTED]:

 Hey guys does anyone know if JBoss runs on MS Millenium Edition and how do
 you set the JAVA_HOME environment variable in ME other then from the
 console...
 





---
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=1470alloc_id=3638op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] a few questions about problem with InitialContext, scheduling and new version of jboss

2004-02-25 Thread konf
Hallo,
I am running Jboss 3.2.2 with sun java 1.4.2_03 in 32-bit version (on Solaris).
I have bean, which works as client of ejb. 
Inside, I call something as:
try{
 log.info(1);
 InitialContext ctx = new InitialContext();
 log.info(2);
...

but it crashes to NPE:
[some_client][INFO]1
[some_client][ERROR] NullPointerException ...

I was worked for weeks, but not now.
I was try to stop jboss, delete the /data, /work, /tmp and start again, but stil
does not work. Why? where can I look else?

This cliet is in /deploy directory in jar, as ejb jar package too.

And, another question - is possible to schedule business method on stateless
session ejb from scheduler-service.xml? Or I must always have a scheduled bean
or special scheduled mbean to call it?

The last question - when will be new jboss? I was red some messages here thant
3.2.3 is erroneous and will be released the new version early, but still there
is 3.2.3 ... Shortly, is 3.2.3 defective or not? 

Thanks, Jiri




---
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps  Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356alloc_id=3438op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] deploying ejb on jboss / cannot found home interface

2004-01-30 Thread konf
Thanks, this is work now.

But now, becouse I am new in ejb, looking for some example, where I ca see how
to connect entity bean from session. Everywhere in literature I see how to
connect Session bean via home interface, I read that is better to call entity
bean from session via local interface and why, but I cannot found how to do it.

How to do it?
Thanks,
Jiri




---
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


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

2003-12-17 Thread konf
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=1278alloc_id=3371op=click
___
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 konf
Thanks,
mailist arieve not works now, unfotunately.
So I was look at JbossBook (version for 3.2.1) and I found some example:
jboss-app
 loader-repositoryserver/test1:loader=test.ear/loader-repository
/jboss-app
for META-INF/jboss-app.xml

but I need separate repository for each wars in ear, something as 
jboss-app
 loader-repositoryserver1/test:loader=test1.war/loader-repository
 loader-repositoryserver2/test:loader=test2.war/loader-repository
/jboss-app

but I cannot do it by this way, becouse dtd is loader-repository?

How I can do it?

Cituji z emailu od Yasuda, Hiroyuki [EMAIL PROTECTED]:

 Jiri,
 
 It is one of popular question regarding to UnifiedClassLoader.
 You need to change loader-repository tag .ear by .ear.
 Please check jboss_3_2.dtd
 
 Regards,
 Hiro.
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] Behalf Of=20
  [EMAIL PROTECTED]
  Sent: Wednesday, December 17, 2003 7:46 PM
  To: [EMAIL PROTECTED]
  Subject: [JBoss-user] problem with unwanted sharing object=20
  between web applications
 =20
 =20
  Hallo,
  i have a few web aplikations (wars) which contains the same=20
  files and classes in
  same packages, with only diference in web.xml config file.=20
  And I have problem with unwanted sharing object between this=20
  applications.
  For example, I have
 =20
  some.ear
   -first.war=20
-WEB-INF/classes/testpackage.Config
-WEB-INF/web.xml with some servlet property named=20
  database_schema with value
  first, which is red and returned by Config class
   -second.war =20
  =20
 =20
-WEB-INF/classes/testpackage.Config
-WEB-INF/web.xml with some servlet property named=20
  database_schema with value
  second
   =20
   But both objects, Config from first.war and second.war,=20
  returns the same value
  - second
  =20
   Why? where is some configuration property which causes it?
  =20
   I have JBoss 3.2.2 with Tomcat, I tried to use 3.2.3 version=20
  with the same effect.
  =20
   Thanks for help,
   Jiri
 =20
 =20
 =20
 =20
  ---
  This SF.net email is sponsored by: IBM Linux Tutorials.
  Become an expert in LINUX or just sharpen your skills.  Sign=20
  up for IBM's
  Free Linux Tutorials.  Learn everything from the bash shell=20
  to sys admin.
  Click now! =
 http://ads.osdn.com/?ad_id=3D1278alloc_id=3D3371op=3Dclick
  ___
  JBoss-user mailing list
  [EMAIL PROTECTED]
  https://lists.sourceforge.net/lists/listinfo/jboss-user
 =20
 
 
 ---
 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=1278alloc_id=3371op=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_id=1278alloc_id=3371op=click
___
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 konf
So, does anybody knows how to do it, or there is only way, use one ear for each
one war? 
I thing it should be stupid, but, I do not see the way and not found something
in doc.

Jiri

Cituji z emailu od [EMAIL PROTECTED]:

 Thanks,
 mailist arieve not works now, unfotunately.
 So I was look at JbossBook (version for 3.2.1) and I found some example:
 jboss-app
  loader-repositoryserver/test1:loader=test.ear/loader-repository
 /jboss-app
 for META-INF/jboss-app.xml
 
 but I need separate repository for each wars in ear, something as 
 jboss-app
  loader-repositoryserver1/test:loader=test1.war/loader-repository
  loader-repositoryserver2/test:loader=test2.war/loader-repository
 /jboss-app
 
 but I cannot do it by this way, becouse dtd is loader-repository?
 
 How I can do it?
 
 Cituji z emailu od Yasuda, Hiroyuki [EMAIL PROTECTED]:
 
  Jiri,
  
  It is one of popular question regarding to UnifiedClassLoader.
  You need to change loader-repository tag .ear by .ear.
  Please check jboss_3_2.dtd
  
  Regards,
  Hiro.
  
   -Original Message-
   From: [EMAIL PROTECTED]
   [mailto:[EMAIL PROTECTED] Behalf Of=20
   [EMAIL PROTECTED]
   Sent: Wednesday, December 17, 2003 7:46 PM
   To: [EMAIL PROTECTED]
   Subject: [JBoss-user] problem with unwanted sharing object=20
   between web applications
  =20
  =20
   Hallo,
   i have a few web aplikations (wars) which contains the same=20
   files and classes in
   same packages, with only diference in web.xml config file.=20
   And I have problem with unwanted sharing object between this=20
   applications.
   For example, I have
  =20
   some.ear
-first.war=20
 -WEB-INF/classes/testpackage.Config
 -WEB-INF/web.xml with some servlet property named=20
   database_schema with value
   first, which is red and returned by Config class
-second.war =20
   =20
  =20
 -WEB-INF/classes/testpackage.Config
 -WEB-INF/web.xml with some servlet property named=20
   database_schema with value
   second
=20
But both objects, Config from first.war and second.war,=20
   returns the same value
   - second
   =20
Why? where is some configuration property which causes it?
   =20
I have JBoss 3.2.2 with Tomcat, I tried to use 3.2.3 version=20
   with the same effect.
   =20
Thanks for help,
Jiri
  =20
  =20
  =20
  =20
   ---
   This SF.net email is sponsored by: IBM Linux Tutorials.
   Become an expert in LINUX or just sharpen your skills.  Sign=20
   up for IBM's
   Free Linux Tutorials.  Learn everything from the bash shell=20
   to sys admin.
   Click now! =
  http://ads.osdn.com/?ad_id=3D1278alloc_id=3D3371op=3Dclick
   ___
   JBoss-user mailing list
   [EMAIL PROTECTED]
   https://lists.sourceforge.net/lists/listinfo/jboss-user
  =20
  
  
  ---
  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=1278alloc_id=3371op=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_id=1278alloc_id=3371op=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_id=1278alloc_id=3371op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] running jboss as non-root user

2003-11-25 Thread konf
Hallo,
I would like to run jboss as non-root user (at unix). It works when his servlet
container runs on port 8080, but if I swith to port 80, I must run it as root.

Is it intent or do I something wrong?

Thanks, Jiri



-
This mail sent through IMP: http://horde.org/imp/


---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] running jboss as non-root user

2003-11-25 Thread konf
Yes, you are right, I forgot it and I looked for some mistake in my
configuration ...
Thanks, Jiri

Cituji z emailu od Ricardo Argello [EMAIL PROTECTED]:

 Jiri,
 
 Only root can open process that listen to TCP/IP ports lower than 1024.


-
This mail sent through IMP: http://horde.org/imp/


---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] JBoss 3.2.3

2003-11-24 Thread konf
Hallo,
I founfd  JBoss 3.2.3 at SF.net.
Is it the production release or only release candidate? At jboss.org I se 3.2.2
only.

Thanks,
Jiri



-
This mail sent through IMP: http://horde.org/imp/


---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?  SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] log analyse

2003-11-12 Thread konf
Hallo,
what do you use for log analysing in JBoss? Is there something in java or
it is better to use webalizer?

Thanks, Jiri


---
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] using mail datasource

2003-11-04 Thread konf
Hallo,
for what I can use datasource defined in mail-service.xml? Can I use it
for sending mail or I must send mail by another way?

I tried to use it as :
Context initCtx = new InitialContext();
session = (Session)initCtx.lookup(java:/Mail);
mailMsg = new MimeMessage(session);
...
Transport transport = session.getTransport();
transport.sendMessage(mailMsg, addresses);

But it does not work.
It is not possible to use it for sending or I have some mistake? ...

Thanks, Jiri


---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] using mail datasource

2003-11-04 Thread konf
my mail-service is:
server
  classpath codebase=lib
 archives=mail.jar, activation.jar, mail-plugin.jar/

  mbean code=org.jboss.mail.MailService
 name=jboss:service=Mail
attribute name=JNDINamejava:/Mail/attribute
attribute name=User/attribute
attribute name=Password/attribute
attribute name=Configuration
   !-- Test --
   configuration
  !-- Change to your mail server prototocol --
  property name=mail.store.protocol value=pop3/
  property name=mail.transport.protocol value=smtp/

  !-- Change to the user who will receive mail  --
  property name=mail.user value=[EMAIL PROTECTED]/

  !-- Change to the mail server  --
  property name=mail.pop3.host value=172.26.0.21/

  !-- Change to the SMTP gateway server --
  property name=mail.smtp.host value=172.26.0.21/

  !-- Change to the address mail will be from  --
  property name=mail.from value=[EMAIL PROTECTED]/

  !-- Enable debugging output from the javamail classes --
  property name=mail.debug value=true/
   /configuration
/attribute
  /mbean

/server



 Your code seems ok. Have you updated the mail-service.xml to your
 environment
 (meaning host of the SMTP server if you want to send email)?

 Post the definition of your mail-service.xml

 Regards,

 Stephane

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, November 04, 2003 10:34 AM
 To: [EMAIL PROTECTED]
 Subject: [JBoss-user] using mail datasource


 Hallo,
 for what I can use datasource defined in mail-service.xml? Can I use it
 for sending mail or I must send mail by another way?

 I tried to use it as :
 Context initCtx = new InitialContext();
 session = (Session)initCtx.lookup(java:/Mail);
 mailMsg = new MimeMessage(session);
 ...
 Transport transport = session.getTransport();
 transport.sendMessage(mailMsg, addresses);

 But it does not work.
 It is not possible to use it for sending or I have some mistake? ...

 Thanks, Jiri


 ---
 This SF.net email is sponsored by: SF.net Giveback Program.
 Does SourceForge.net help you be more productive?  Does it
 help you create better code?   SHARE THE LOVE, and help us help
 YOU!  Click Here: http://sourceforge.net/donate/
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-user


 ---
 This SF.net email is sponsored by: SF.net Giveback Program.
 Does SourceForge.net help you be more productive?  Does it
 help you create better code?   SHARE THE LOVE, and help us help
 YOU!  Click Here: http://sourceforge.net/donate/
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-user




---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] using mail datasource

2003-11-04 Thread konf
And in log I have:
2003-11-04 11:08:40,109 INFO  [STDOUT] DEBUG: getProvider() returning
javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
Microsystems, Inc]
2003-11-04 11:08:40,109 ERROR [STDERR] java.lang.IllegalStateException:
Not connected
2003-11-04 11:08:40,109 ERROR [STDERR]  at
com.sun.mail.smtp.SMTPTransport.checkConnected(SMTPTransport.java:1029)
2003-11-04 11:08:40,109 ERROR [STDERR]  at
com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:288)
2003-11-04 11:08:40,109 ERROR [STDERR]  at
cz.iccc.isspd.utils.Mailer.send(Mailer.java:83)
2003-11-04 11:08:40,109 ERROR [STDERR]  at
cz.iccc.isspd.businessobjects.schedulable.DocumentValidityKeeper.mail(DocumentValidityKeeper.java:192)

my smtp's IP address is valid, and from another application (as mail
client) it accepts mails

Jirka

 my mail-service is:
 server
   classpath codebase=lib
  archives=mail.jar, activation.jar, mail-plugin.jar/

   mbean code=org.jboss.mail.MailService
  name=jboss:service=Mail
 attribute name=JNDINamejava:/Mail/attribute
 attribute name=User/attribute
 attribute name=Password/attribute
 attribute name=Configuration
!-- Test --
configuration
   !-- Change to your mail server prototocol --
   property name=mail.store.protocol value=pop3/
   property name=mail.transport.protocol value=smtp/

   !-- Change to the user who will receive mail  --
   property name=mail.user value=[EMAIL PROTECTED]/

   !-- Change to the mail server  --
   property name=mail.pop3.host value=172.26.0.21/

   !-- Change to the SMTP gateway server --
   property name=mail.smtp.host value=172.26.0.21/

   !-- Change to the address mail will be from  --
   property name=mail.from value=[EMAIL PROTECTED]/

   !-- Enable debugging output from the javamail classes --
   property name=mail.debug value=true/
/configuration
 /attribute
   /mbean

 /server




---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


RE: [JBoss-user] using mail datasource

2003-11-04 Thread konf
May this problem come form message:

2003-11-04 11:04:10,656 INFO  [org.jboss.deployment.MainDeployer] Starting
deployment of package:
file:/C:/jboss/server/default/deploy/mail-service.xml
2003-11-04 11:04:10,687 INFO  [STDOUT] DEBUG: JavaMail version 1.3
2003-11-04 11:04:10,687 INFO  [STDOUT] DEBUG:
java.io.FileNotFoundException: C:\j2sdk1.4.2_02\jre\lib\javamail.providers
(Systm neme nalzt uveden soubor)
2003-11-04 11:04:10,687 INFO  [STDOUT] DEBUG: !anyLoaded
2003-11-04 11:04:10,687 INFO  [STDOUT] DEBUG: not loading resource:
/META-INF/javamail.providers
2003-11-04 11:04:10,687 INFO  [STDOUT] DEBUG: successfully loaded
resource: /META-INF/javamail.default.providers
2003-11-04 11:04:10,687 INFO  [STDOUT] DEBUG: Tables of loaded providers
2003-11-04 11:04:10,687 INFO  [STDOUT] DEBUG: Providers Listed By Class
Name:
{com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
Microsystems, Inc],
com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun
Microsystems, Inc],
com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun
Microsystems, Inc]}
2003-11-04 11:04:10,703 INFO  [STDOUT] DEBUG: Providers Listed By
Protocol:
{imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun
Microsystems, Inc],
pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun
Microsystems, Inc],
smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
Microsystems, Inc]}
2003-11-04 11:04:10,703 INFO  [STDOUT] DEBUG: successfully loaded
resource: /META-INF/javamail.default.address.map
2003-11-04 11:04:10,703 INFO  [STDOUT] DEBUG: !anyLoaded
2003-11-04 11:04:10,703 INFO  [STDOUT] DEBUG: not loading resource:
/META-INF/javamail.address.map
2003-11-04 11:04:10,703 INFO  [STDOUT] DEBUG:
java.io.FileNotFoundException:
C:\j2sdk1.4.2_02\jre\lib\javamail.address.map (Systm neme nalzt
uveden soubor)
2003-11-04 11:04:10,718 INFO  [org.jboss.mail.MailService] Mail Service
bound to java:/Mail
2003-11-04 11:04:10,718 INFO  [org.jboss.mail.MailService] Started
jboss:service=Mail
2003-11-04 11:04:10,718 INFO  [org.jboss.deployment.MainDeployer] Deployed
package: file:/C:/jboss/server/default/deploy/mail-service.xml


? Jiri


---
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] jboss 3.2.2 / tomcat and virtual host

2003-10-23 Thread konf
Hallo,
I tried to configure virtual host as I read in Admin devel documentation.

But I cannot found file tomcat4-service.xml - to where I must put it?
Without it, I create onl war with WEB-INF/jboss-web.xml contained:
jboss-web
 context-root//context-root
 virtual-hostvirthost/virtual-host
/jboss-web

and jboss always shows this war as deafult.

To where I must put the tomcat4-service.xml or is there any other way?

Thanks, Jiri


---
This SF.net email is sponsored by: The SF.net Donation Program.
Do you like what SourceForge.net is doing for the Open
Source Community?  Make a contribution, and help us add new
features and functionality. Click here: http://sourceforge.net/donate/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] Re: secure web console

2003-10-20 Thread konf
Where I can define users for it?
In web.xml is that users with role JBossAdmin are allowed, but where they
are specified?

Thanks,
Jiri

 Right, but the descriptor paths are
 deploy/jmx-console.war/WEB-INF/jboss-web.xml
 and deploy/jmx-console.war/WEB-INF/web.xml and conf/login-config.xml

 --
 
 Scott Stark
 Chief Technology Officer
 JBoss Group, LLC
 

 Eric Jain wrote:
is there an easy trick to secure the webconsole with a password?


 This is how you could secure the jmx console:

 In jmxconsole.sar/META-INF/jboss-web.xml uncomment the security-domain
 element and set it to one of the application policies you have
 configured in your login-conf.xml.

 In web.xml, uncomment the security-constraint element, and change the
 role name to whatever you call your admin role.

 If you have set up HTTPS, and want to ensure that all access to the jmx
 console is encrypted, add a user-data-constraint/transport-guarantee
 INTEGRAL directive as a last element within the security-constraint
 element.

 --
 Eric Jain



 ---
 This sf.net email is sponsored by:ThinkGeek
 Welcome to geek heaven.
 http://thinkgeek.com/sf
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-user




---
This SF.net email sponsored by: Enterprise Linux Forum Conference  Expo
The Event For Linux Datacenter Solutions  Strategies in The Enterprise 
Linux in the Boardroom; in the Front Office;  in the Server Room 
http://www.enterpriselinuxforum.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


Re: [JBoss-user] Re: secure web console

2003-10-20 Thread konf
Or, bettre question - how I can secure it for zipped war? Must I unzip it,
change and zip again into war or is there another way?

 Where I can define users for it?
 In web.xml is that users with role JBossAdmin are allowed, but where they
 are specified?

 Thanks,
 Jiri

 Right, but the descriptor paths are
 deploy/jmx-console.war/WEB-INF/jboss-web.xml
 and deploy/jmx-console.war/WEB-INF/web.xml and conf/login-config.xml

 --
 
 Scott Stark
 Chief Technology Officer
 JBoss Group, LLC
 

 Eric Jain wrote:
is there an easy trick to secure the webconsole with a password?


 This is how you could secure the jmx console:

 In jmxconsole.sar/META-INF/jboss-web.xml uncomment the security-domain
 element and set it to one of the application policies you have
 configured in your login-conf.xml.

 In web.xml, uncomment the security-constraint element, and change the
 role name to whatever you call your admin role.

 If you have set up HTTPS, and want to ensure that all access to the jmx
 console is encrypted, add a user-data-constraint/transport-guarantee
 INTEGRAL directive as a last element within the security-constraint
 element.

 --
 Eric Jain



 ---
 This sf.net email is sponsored by:ThinkGeek
 Welcome to geek heaven.
 http://thinkgeek.com/sf
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-user




 ---
 This SF.net email sponsored by: Enterprise Linux Forum Conference  Expo
 The Event For Linux Datacenter Solutions  Strategies in The Enterprise
 Linux in the Boardroom; in the Front Office;  in the Server Room
 http://www.enterpriselinuxforum.com
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/jboss-user




---
This SF.net email sponsored by: Enterprise Linux Forum Conference  Expo
The Event For Linux Datacenter Solutions  Strategies in The Enterprise 
Linux in the Boardroom; in the Front Office;  in the Server Room 
http://www.enterpriselinuxforum.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user