Please unsubscribe me from your mailing list.

Regards


-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
Sent: 06 June 2001 12:46
To: [EMAIL PROTECTED]
Subject: JBoss-user digest, Vol 1 #678 - 10 msgs


Send JBoss-user mailing list submissions to
        [EMAIL PROTECTED]

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.sourceforge.net/lists/listinfo/jboss-user
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of JBoss-user digest..."


Today's Topics:

   1. RE: Re: [JBoss-dev] Serious Bug?  EntityBean out of
       synch with database. (Richard Conway)
   2. MBean ([EMAIL PROTECTED])
   3. Re: Using a new JDBC datasource (Georg Rehfeld)
   4. Re: getting problems with datasources (Burkhard Vogel)
   5. SV: [JBoss-user] MBean (Lennart Petersson)
   6. Glitch in JBoss-2.2.2_Tomcat-3.2.2 distribution (Binoy)
   7. AW: [JBoss-user] getting problems with datasources (Sternagel Annegret
(PN-SYS/DAS))
   8. Cannot start JBoss+Tomcat :( (Lachezar Dobrev)
   9. relative paths in WAR for jboss-tomcat deploy directory (Lionel Siau)

--__--__--

Message: 1
From: Richard Conway <[EMAIL PROTECTED]>
To: "'[EMAIL PROTECTED]'"
         <[EMAIL PROTECTED]>
Subject: RE: [JBoss-user] Re: [JBoss-dev] Serious Bug?  EntityBean out of 
        synch with database.
Date: Wed, 6 Jun 2001 10:50:45 +0100 
Reply-To: [EMAIL PROTECTED]


This sounds exactly like the problem we are experiencing intermittently.

The web tier asks for the details for a particular company, and is returned
the data for a different company. Once the problem occurs it seems to latch
for a period of time - sometimes, if left the situation resolves itself,
other times a JBoss restart has been required.

Each company is identified by an id which forms part of the beans primary
key. When the problem occurs there will be a particular company whose
details are returned incorrectly, whilst accesses to other companies is
delivered correctly. Returning to the problematic company again returns the
wrong details.

In all cases the data in the database is fine and the web tier is asking for
the right primary key. It's as if Jboss is sometimes confused and returns
what it thinks is the right bean for the find() request, i.e. JBoss' EJB
cache has lost sync of which EJB is for which primary key.

The problem seems more likely to occur when the system is supporting
numerous concurrent users.

We are using JBoss 2.0 FINAL with BMP.
Solaris 2.6 [Java HotSpot(TM) Client VM (build 1.3.0, mixed mode)]

I had assumed that this was a bug in our code - something I was planning on
looking at immediately. However, if other people have the same problem then
maybe the fault lies elsewhere.

Richard.

-----Original Message-----
From: danch [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 06, 2001 4:01 AM
To: [EMAIL PROTECTED]
Subject: [JBoss-user] Re: [JBoss-dev] Serious Bug? EntityBean out of
synch with database.


This sounds _very_ like the problem Andre Vermeulen has reported. Just 
to confirm, you are using CMP, correct? Also, can you verify that 
ejbFindByPrimaryKey _does_ work?

Bill Burke wrote:

> All, Please help,
> 
>  
> 
> We experienced some very strange behaviour.  A queried EntityBean via a 
> findBy column method had the wrong data within it.  It actually had the 
> data from a different EntityBean.  Querying the database directly showed 
> that the database had the correct data within it.  Even stranger, this 
> problem went away after a few minutes.
> 
>  
> 
> My guess is that the EntityBean instance somehow got populated with bad 
> data and after a few minutes, got passivated( or whatever) out of the 
> bean cache.  What I don't get is that I'm using commit option 'B' for 
> entity beans.  Shouldn't the EntityBean be re-loaded from the database 
> at the start of any transaction?
> 
>  
> 
> Machine stats:
> 
>  
> 
> dual CPU 800Mgz Intel running RedHat 6.2
> 
> JBoss 2.2.1
> 
> Sun's jdk1.3.0.0.2
> 
> commit option 'B'
> 
>  
> 
> I know this is a JBoss-User question/problem, but I view this as a 
> really serious problem that needs close scrutiny.
> 
>  
> 
> Thanks,
> 
>  
> 
> Bill
> 
>  



_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



--__--__--

Message: 2
To: [EMAIL PROTECTED]
Cc: 
From: [EMAIL PROTECTED]
Date: Wed, 06 Jun 2001 09:52:19 GMT
Subject: [JBoss-user] MBean
Reply-To: [EMAIL PROTECTED]

Sorry for such polution on this mailing list. I'm a young boy coming to
real world and trying to take on the wave of Java.
So i think i understood what are beans in java and ejb's. I've downloaded
the JBoss-2.2 for enterprise use.

Here is my question, because i see them every where i want to get
informations on jboss, even on the 8082 listening port used by jboss :

--> Could somebody please explain me what are MBeans and what they do in
jboss  ?



--__--__--

Message: 3
From: "Georg Rehfeld" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: Re: [JBoss-user] Using a new JDBC datasource
Date: Wed, 6 Jun 2001 12:02:53 +0200
Reply-To: [EMAIL PROTECTED]

Hi Justin,

> javax.ejb.EJBException
> org.jboss.ejb.plugins.BMPPersistenceManager.storeEntity
>    (BMPPersistenceManager.java:352)
> org.jboss.ejb.plugins.EntitySynchronizationInterceptor
>    $InstanceSynchronization.beforeCompletion
>    (EntitySynchroniztionInterceptor.java:370)

The code at BMPPersistenceManager.java:352 calls your beans
ejbStore() method, catches a RuntimeException thrown from it
and repackages it inside an EJBException, so the real cause
can't be seen without retrieving it from the EJBException with
getCausedByException(). But in your stacktrace there is no good
place for you to catch the EJBException and retrieve the real
cause (all methods are container internal). Maybe it would help
to put your complete ejbStore() methods code into a try/catch
block where you catch Exception, print a stack trace and rethrow
the Exception, so you can see what's really going wrong?

If you wonder at ejbStore() beeing called after a getter method
please read comments in http://www.jboss.org/documentation/HTML/ch06s08.html
under the label <commit-option>.

regards
Georg
 ___   ___
| + | |__    Georg Rehfeld      Woltmanstr. 12     20097 Hamburg
|_|_\ |___   [EMAIL PROTECTED]           +49 (40) 23 53 27 10

PS: I believe, the container should have handling for extracting
the real cause from an EJBException somewhere.




--__--__--

Message: 4
From: "Burkhard Vogel" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: Re: [JBoss-user] getting problems with datasources
Date: Wed, 6 Jun 2001 12:04:10 +0200
Reply-To: [EMAIL PROTECTED]

Hi,
regarding the timer, try FLUX of simscomputing.com
----- Original Message -----
From: "K.V. Vinay Menon" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, June 06, 2001 11:02 AM
Subject: Re: [JBoss-user] getting problems with datasources


> the namespace is not accessible outside the container.
>
>
> ----- Original Message -----
> From: "durgaprasad gannamani" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, June 06, 2001 9:27 AM
> Subject: [JBoss-user] getting problems with datasources
>
>
> i have been working with weblogic since almost 1 year.recently i have
ported
> my application into JBOSS server.But i am getting DataSource problems
> frequently. i have created connection pool as described in documentation.
> and
> it will work EJBs.
>    but when i tried to lookup a particular JNDI name it's saying name not
> bound.for example i have created connection pool commercepool.i am able to
> lookup this from ejb using "java:/commercepool".But if i lookup this from
> any
> java client it's saying name not bound.
>    can anyone mail me about this problem.
>
> and also main problem is i need a timer that should be fired every 5 min
and
> do some checkings.how to implement it..
>
> regards....
> Durgaprasad Gannamani
>
>
> ____________________________________________________________________
> Get free email and a permanent address at http://www.netaddress.com/?N=1
>
> _______________________________________________
> JBoss-user mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-user
>
>
> _______________________________________________
> JBoss-user mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-user



--__--__--

Message: 5
From: "Lennart Petersson" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: SV: [JBoss-user] MBean
Date: Wed, 6 Jun 2001 12:34:50 +0200
Reply-To: [EMAIL PROTECTED]

In JBoss doc, look here: =
http://www.jboss.org/documentation/HTML/ch08s17.html

And more generally, on SUN's site: =
http://java.sun.com/products/JavaManagement/

/L



--__--__--

Message: 6
From: "Binoy" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Date: Wed, 6 Jun 2001 16:23:15 +0530
Subject: [JBoss-user] Glitch in JBoss-2.2.2_Tomcat-3.2.2 distribution
Reply-To: [EMAIL PROTECTED]

Hi brethren,
I recently DL'ed the new distribution of JBoss-2.2.2_Tomcat-3.2.2
I have a problem with my new distribution of JBoss-2.2.2_Tomcat-3.2.2 ....
the .ear file which deploys comfortably on JBoss-2.2.1_Tomcat-3.2.1 throws
some kind of stack when deployed on the newer version
Here is the stack Trace :
/***************************************************************************
**********************************/
[J2EE Deployer Default] Starting module tomcat-test.war
[Auto deploy] deploy, ctxPath=/jboss,
warUrl=file:/F:/JBoss-2.2.2_Tomcat-3.2.2/jboss/tmp/deploy/Default/tomcat-tes
t.ear/web1001/
[Auto deploy] java.lang.NullPointerException
[Auto deploy]  at
org.jboss.tomcat.TomcatEntry.addRawContext(TomcatEntry.java:107)
[Auto deploy]  at
org.jboss.tomcat.EmbeddedTomcatServiceSX.performDeploy(EmbeddedTomcatService
SX.java:106)
[Auto deploy]  at
org.jboss.web.AbstractWebContainer.deploy(AbstractWebContainer.java:178)
[Auto deploy]  at java.lang.reflect.Method.invoke(Native Method)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
[Auto deploy]  at
org.jboss.deployment.J2eeDeployer.startApplication(J2eeDeployer.java:431)
[Auto deploy]  at
org.jboss.deployment.J2eeDeployer.deploy(J2eeDeployer.java:178)
[Auto deploy]  at java.lang.reflect.Method.invoke(Native Method)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
[Auto deploy]  at org.jboss.ejb.AutoDeployer.deploy(AutoDeployer.java:358)
[Auto deploy]  at org.jboss.ejb.AutoDeployer.run(AutoDeployer.java:221)
[Auto deploy]  at
org.jboss.ejb.AutoDeployer.startService(AutoDeployer.java:332)
[Auto deploy]  at
org.jboss.util.ServiceMBeanSupport.start(ServiceMBeanSupport.java:93)
[Auto deploy]  at java.lang.reflect.Method.invoke(Native Method)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
[Auto deploy]  at
org.jboss.util.ServiceControl.start(ServiceControl.java:97)
[Auto deploy]  at java.lang.reflect.Method.invoke(Native Method)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
[Auto deploy]  at org.jboss.Main.<init>(Main.java:217)
[Auto deploy]  at org.jboss.Main$1.run(Main.java:121)
[Auto deploy]  at java.security.AccessController.doPrivileged(Native Method)
[Auto deploy]  at org.jboss.Main.main(Main.java:117)
[Auto deploy] java.lang.NullPointerException
[Auto deploy]  at
org.jboss.tomcat.EmbeddedTomcatServiceSX.performDeploy(EmbeddedTomcatService
SX.java:107)
[Auto deploy]  at
org.jboss.web.AbstractWebContainer.deploy(AbstractWebContainer.java:178)
[Auto deploy]  at java.lang.reflect.Method.invoke(Native Method)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
[Auto deploy]  at
org.jboss.deployment.J2eeDeployer.startApplication(J2eeDeployer.java:431)
[Auto deploy]  at
org.jboss.deployment.J2eeDeployer.deploy(J2eeDeployer.java:178)
[Auto deploy]  at java.lang.reflect.Method.invoke(Native Method)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
[Auto deploy]  at org.jboss.ejb.AutoDeployer.deploy(AutoDeployer.java:358)
[Auto deploy]  at org.jboss.ejb.AutoDeployer.run(AutoDeployer.java:221)
[Auto deploy]  at
org.jboss.ejb.AutoDeployer.startService(AutoDeployer.java:332)
[Auto deploy]  at
org.jboss.util.ServiceMBeanSupport.start(ServiceMBeanSupport.java:93)
[Auto deploy]  at java.lang.reflect.Method.invoke(Native Method)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
[Auto deploy]  at
org.jboss.util.ServiceControl.start(ServiceControl.java:97)
[Auto deploy]  at java.lang.reflect.Method.invoke(Native Method)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
[Auto deploy]  at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
[Auto deploy]  at org.jboss.Main.<init>(Main.java:217)
[Auto deploy]  at org.jboss.Main$1.run(Main.java:121)
[Auto deploy]  at java.security.AccessController.doPrivileged(Native Method)
[Auto deploy]  at org.jboss.Main.main(Main.java:117)
[J2EE Deployer Default] Starting tomcat-test.war failed!
/***************************************************************************
***********************************/
Is any one working on it ?
Regards,
Binoy



--__--__--

Message: 7
From: "Sternagel Annegret (PN-SYS/DAS)" <[EMAIL PROTECTED]>
To: "'[EMAIL PROTECTED]'"
         <[EMAIL PROTECTED]>
Subject: AW: [JBoss-user] getting problems with datasources
Date: Wed, 6 Jun 2001 13:21:50 +0200 
Reply-To: [EMAIL PROTECTED]

Or use a Timer MBean, look at

http://www.jboss.org/documentation/HTML/ch11s74.html
(How to us the Timer MBean)

Annegret


> ----------
> Von:  Burkhard Vogel[SMTP:[EMAIL PROTECTED]]
> Antwort an:   [EMAIL PROTECTED]
> Gesendet:     Mittwoch, 6. Juni 2001 12:04
> An:   [EMAIL PROTECTED]
> Betreff:      Re: [JBoss-user] getting problems with datasources
> 
> Hi,
> regarding the timer, try FLUX of simscomputing.com
> ----- Original Message -----
> From: "K.V. Vinay Menon" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, June 06, 2001 11:02 AM
> Subject: Re: [JBoss-user] getting problems with datasources
> 
> 
> > the namespace is not accessible outside the container.
> >
> >
> > ----- Original Message -----
> > From: "durgaprasad gannamani" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Wednesday, June 06, 2001 9:27 AM
> > Subject: [JBoss-user] getting problems with datasources
> >
> >
> > i have been working with weblogic since almost 1 year.recently i have
> ported
> > my application into JBOSS server.But i am getting DataSource problems
> > frequently. i have created connection pool as described in
> documentation.
> > and
> > it will work EJBs.
> >    but when i tried to lookup a particular JNDI name it's saying name
> not
> > bound.for example i have created connection pool commercepool.i am able
> to
> > lookup this from ejb using "java:/commercepool".But if i lookup this
> from
> > any
> > java client it's saying name not bound.
> >    can anyone mail me about this problem.
> >
> > and also main problem is i need a timer that should be fired every 5 min
> and
> > do some checkings.how to implement it..
> >
> > regards....
> > Durgaprasad Gannamani
> >
> >
> > ____________________________________________________________________
> > Get free email and a permanent address at http://www.netaddress.com/?N=1
> >
> > _______________________________________________
> > JBoss-user mailing list
> > [EMAIL PROTECTED]
> > http://lists.sourceforge.net/lists/listinfo/jboss-user
> >
> >
> > _______________________________________________
> > JBoss-user mailing list
> > [EMAIL PROTECTED]
> > http://lists.sourceforge.net/lists/listinfo/jboss-user
> 
> 
> _______________________________________________
> JBoss-user mailing list
> [EMAIL PROTECTED]
> http://lists.sourceforge.net/lists/listinfo/jboss-user
> 


--__--__--

Message: 8
From: "Lachezar Dobrev" <[EMAIL PROTECTED]>
To: "JBoss Mailing-list" <[EMAIL PROTECTED]>
Date: Wed, 6 Jun 2001 14:33:07 +0300
Organization: LSN Software and telecommunication systems
Subject: [JBoss-user] Cannot start JBoss+Tomcat :(
Reply-To: [EMAIL PROTECTED]

This is a multi-part message in MIME format.

------=_NextPart_000_006D_01C0EE95.9A815980
Content-Type: multipart/alternative;
        boundary="----=_NextPart_001_006E_01C0EE95.9A815980"


------=_NextPart_001_006E_01C0EE95.9A815980
Content-Type: text/plain;
        charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

   Hello... I'm still newbie, but I think I have a problem starting =
JBoss + Tomcat.
   I have attached the log, but still:
   When I start RUN.BAT I get a number of messages... Most of them look =
like they should look like this:
[Blah blah Initializing]
[Blah blah Initialized]
   Looks OK, but! NOTHING between these two messages... An I think there =
should be...
   Running the tomcat results in (of cource) an exception for not =
finding JBoss interceptor classes... Adding them to the ClassPath starts =
the Tomcat on it's own... However... When running JBoss+Tomcat I get:

[Container factory] Initializing
[Container factory] Initialized
[EmbeddedTomcat] Initializing
[EmbeddedTomcat] Initialized
[JBossMQ] Initializing
[JBossMQ] Initialized

   Nothing between the tags :((((((((((((((((((((((((((
   Am i doing something WRONG?


   Looking forward to hearing from all of U: Lachezar.

------=_NextPart_001_006E_01C0EE95.9A815980
Content-Type: text/html;
        charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 5.50.4134.600" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV><FONT face=3DCourier size=3D2>&nbsp;&nbsp; Hello... I'm still =
newbie, but I=20
think I have a problem starting JBoss + Tomcat.</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2>&nbsp;&nbsp; I have attached the log, =
but=20
still:</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2>&nbsp;&nbsp; When I start RUN.BAT I =
get a number=20
of messages... Most of them look like they should look like =
this:</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2>[Blah blah Initializing]</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2>[Blah blah Initialized]</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2>&nbsp;&nbsp; Looks OK, but! NOTHING =
between these=20
two messages... An I think there should be...</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2>&nbsp;&nbsp; Running the tomcat =
results in (of=20
cource) an exception for not finding JBoss interceptor classes... Adding =
them to=20
the ClassPath starts the Tomcat on it's own... However... When running=20
JBoss+Tomcat I get:</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DCourier size=3D2>[Container factory] =
Initializing<BR>[Container=20
factory] Initialized<BR>[EmbeddedTomcat] =
Initializing<BR>[EmbeddedTomcat]=20
Initialized<BR>[JBossMQ] Initializing<BR>[JBossMQ] =
Initialized</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DCourier size=3D2>&nbsp;&nbsp; Nothing between the tags =

:((((((((((((((((((((((((((</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2>&nbsp;&nbsp; Am i doing something=20
WRONG?</FONT></DIV>
<DIV><FONT face=3DCourier size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DCourier size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DCourier size=3D2>&nbsp;&nbsp; Looking forward to =
hearing from all=20
of U: Lachezar.</FONT></DIV></BODY></HTML>

------=_NextPart_001_006E_01C0EE95.9A815980--

------=_NextPart_000_006D_01C0EE95.9A815980
Content-Type: application/octet-stream;
        name="jboss.log"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
        filename="jboss.log"

[Service Control] Initializing 25 MBeans
[Webserver] Initializing
[Webserver] Initialized
[Naming] Initializing
[Naming] Initialized
[JNDIView] Initializing
[JNDIView] Initialized
[Transaction manager] Initializing
[Transaction manager] Initialized
[JAAS Security Manager] Initializing
[JAAS Security Manager] Initialized
[JDBC provider] Initializing
[JDBC provider] Loaded JDBC-driver:org.hsql.jdbcDriver
[JDBC provider] Loaded JDBC-driver:org.enhydra.instantdb.jdbc.idbDriver
[JDBC provider] Initialized
[Hypersonic] Initializing
[Hypersonic] Initialized
[InstantDB] Initializing
[InstantDB] Initialized
[DefaultDS] Initializing
[DefaultDS] Initialized
[Container factory] Initializing
[Container factory] Initialized
[EmbeddedTomcat] Initializing
[EmbeddedTomcat] Initialized
[JBossMQ] Initializing
[JBossMQ] Initialized
[DefaultJMSProvider] Initializing
[DefaultJMSProvider] Initialized
[StdJMSPool] Initializing
[StdJMSPool] Initialized
[J2EE Deployer Default] Initializing
[J2EE Deployer Default] Initialized
[Auto deploy] Initializing
[Auto deploy] Initialized
[RARDeployer] Initializing
[RARDeployer] Initialized
[ConnectionManagerFactoryLoader] Initializing
[MinervaNoTransCMFactory] Initialized
[ConnectionManagerFactoryLoader] Initializing
[MinervaSharedLocalCMFactory] Initialized
[ConnectionManagerFactoryLoader] Initializing
[MinervaXACMFactory] Initialized
[ConnectionFactoryLoader] Initializing
[BlackBoxDS] Initialized
[JMX RMI Adaptor] Initializing
[JMX RMI Adaptor] Initialized
[JMX RMI Connector] Initializing
[JMX RMI Connector] Initialized
[Mail Service] Initializing
[Mail Service] Initialized
[Service Control] Initialized 25 services
[Service Control] Starting 25 MBeans
[Webserver] Starting
[Webserver] Codebase set to http://Sijaiko:10100/
[Webserver] Started webserver on port 10100
[Webserver] Started
[Naming] Starting
[Naming] Naming started on port 1099
[Naming] Started
[JNDIView] Starting
[JNDIView] Started
[Transaction manager] Starting
[Transaction manager] Started
[JAAS Security Manager] Starting
[JAAS Security Manager] JAAS.startService, cachePolicy=3Dnull
[JAAS Security Manager] JAAS.startService, =
SecurityProxyFactory=3Dorg.jboss.security.SubjectSecurityProxyFactory@33f=
8f6
[JAAS Security Manager] Started
[JDBC provider] Starting
[JDBC provider] Started
[Hypersonic] Starting
[Hypersonic] Server is running
[Hypersonic] Database started
[Hypersonic] Press [Ctrl]+[C] to abort
[Hypersonic] Started
[InstantDB] Starting
[InstantDB] XA Connection pool InstantDB bound to java:/InstantDB
Enhydra InstantDB - Version 3.26
[InstantDB] The Initial Developer of the Original Code is Lutris =
Technologies Inc.
Portions created by Lutris are Copyright (C) 1997-2001 Lutris =
Technologies, Inc.
All Rights Reserved.
[InstantDB] Started
[DefaultDS] Starting
[DefaultDS] XA Connection pool DefaultDS bound to java:/DefaultDS
------=_NextPart_000_006D_01C0EE95.9A815980--




--__--__--

Message: 9
From: "Lionel Siau" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Date: Wed, 6 Jun 2001 07:46:16 +0800
Subject: [JBoss-user] relative paths in WAR for jboss-tomcat deploy
directory
Reply-To: [EMAIL PROTECTED]

This is a multi-part message in MIME format.

------=_NextPart_000_01EA_01C0EE5C.C433E0B0
Content-Type: text/plain;
        charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Hi guys,


I finally managed to download and build a stable release ( nightly =
stable release) for Jive. It builds a war just fine and deploys =
perfectly in Tomcat webapps. I'm now trying to deploy in JBOSS-TOMCAT =
but it is complaining it can't find the jive.properties in the /admin =
becoz the deploy dir is dynamic and temporary.

how do I do it 'relatively' so that the WAR is portable? It is now =
path=3D..//classes//jive.properties which is wrong.

I've tried all sort of combinations and escape characters but it doesn't =
work. :(



Lionel

------=_NextPart_000_01EA_01C0EE5C.C433E0B0
Content-Type: text/html;
        charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 5.50.4611.1300" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>Hi guys,</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>I finally managed to download and build =
a stable=20
release ( nightly stable release) for Jive. It builds a war just fine =
and=20
deploys perfectly in Tomcat webapps. I'm now trying to deploy in =
JBOSS-TOMCAT=20
but it is complaining it can't find the jive.properties in the /admin =
becoz the=20
deploy dir is dynamic and temporary.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>how do I do it 'relatively' so that the =
WAR is=20
portable? It is now path=3D..//classes//jive.properties which is=20
wrong.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>I've tried all sort of combinations and =
escape=20
characters but it doesn't work. :(</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>Lionel</FONT></DIV></BODY></HTML>

------=_NextPart_000_01EA_01C0EE5C.C433E0B0--




--__--__--

_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user


End of JBoss-user Digest

_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to