This could just be the depends missing from the jboss-service.xml in the jboss-deployer-1.0.sar.. if you unzip it and replace it will:
<?xml version="1.0" encoding="UTF-8"?>
<!-- The J2EE application client deployer service
-->
<server>
<mbean code="org.servicemix.jboss.deployment.JBIDeployer"
name="org.servicemix:service=Deployer">
<depends optional-attribute-name="JBIContainer">
org.servicemix:service=JBIService
</depends>
</mbean>
<mbean code="org.servicemix.jboss.deployment.JBIService"
name="org.servicemix:service=JBIService">
<depends name="jboss:service=TransactionManager"/>
<attribute name="TransactionManager">java:/TransactionManager</attribute> -->
</mbean>
</server>
Hopefully the container will start, there was a couple of others things in the log to do with timeouts, however these could be to do with the EJB3 stuff. :)
Cheers
P
On 10/5/05, Mike Alen <[EMAIL PROTECTED]> wrote:
Hi!
Sorry, use http://mikealen.freehomepage.com instead.
/Mike
>From: "Mike Alen" <[EMAIL PROTECTED] >
>Reply-To: [email protected]
>To: [email protected]
>Subject: Re: [servicemix-user] Deploying ServiceMix in JBoss
>Date: Wed, 05 Oct 2005 12:13:58 +0000
>
>Hi!
>Heres the server.log from startup.
>
>It was too big to attach, even as a .zip.
>
>Download it from
>
> http://mikealen.freehomepage.com/server.zip
>
>Thanks in advance.
>/Mike
>
>>From: Philip Dodds <[EMAIL PROTECTED]>
>>Reply-To: Philip Dodds < [EMAIL PROTECTED]>
>>To: [email protected]
>>Subject: Re: [servicemix-user] Deploying ServiceMix in JBoss
>>Date: Mon, 3 Oct 2005 08:48:59 -0400
>>
>>Can you attach the server.log from the start-up?
>>
>>Cheers
>>
>>P
>>
>>On 10/3/05, Mike Alen < [EMAIL PROTECTED]> wrote:
>> >
>> > Hi!
>> >
>> > Philip, thank you for the answer! Unfortunatly I'm no closer to the
>> > solution.
>> >
>> > After extracting the .sar file below (in deploy/jboss-deployer-1.0.sar
>> > directory)
>> > and edited the META-INF/jboss-service.xml file the same exception were
>> > there.
>> >
>> > Thanks in advance for any ideas on how to solve this,
>> >
>> > /Mike
>> >
>> > >From: Philip Dodds < [EMAIL PROTECTED]>
>> > >Reply-To: Philip Dodds <[EMAIL PROTECTED]>
>> > >To: [email protected]
>> > >Subject: Re: [servicemix-user] Deploying ServiceMix in JBoss
>> > >Date: Thu, 29 Sep 2005 14:08:36 -0400
>> > >
>> > >Mike,
>> > >
>> > >Since I have been a bit behind I also built an copy of the deployer
>>with
>> > >the
>> > >ServiceMix 1.0 release bundled, available here:
>> > >
>> >
>> >http://dist.codehaus.org/servicemix/distributions/jboss-deployer-1.0.sar
>> > >
>> > >I'll update the web page as soon as I can get my access to work :)
>> > >
>> > >Cheers
>> > >
>> > >P
>> > >
>> > >On 9/29/05, Philip Dodds < [EMAIL PROTECTED]> wrote:
>> > > >
>> > > > Hi Mike,
>> > > >
>> > > > Seems a little strange, looks like the TransactionManager isn't
>>bound
>> > at
>> > > > java:/TransactionManager. The JBoss deployer assumes this location
>>I
>> > >haven't
>> > > > tried it on 4.0.3 though I can give that a go now.
>> > > >
>> > > > You can always override the JNDI location of the TransactionManager
>>by
>> > > > unzipping the SAR file and deploying it exploded, as in creating a
>> > >directory
>> > > > under deploy called jboss-deployer-1.0.sar with the contents of the
>> > SAR
>> > > > inside. You should find in there META-INF/jboss- service.xml, you
>> > should
>> > >be
>> > > > able to add the transaction manager as an attribute:
>> > > >
>> > > > <?xml version=" 1.0" encoding="UTF-8"?>
>> > > >
>> > > > <!-- The J2EE application client deployer service
>> > > > -->
>> > > > <server>
>> > > > <mbean code="org.servicemix.jboss.deployment.JBIDeployer"
>> > > > name="org.servicemix:service=Deployer">
>> > > > <depends optional-attribute-name="JBIContainer">
>> > > > org.servicemix:service=JBIService
>> > > > </depends>
>> > > > </mbean>
>> > > >
>> > > > <mbean code=" org.servicemix.jboss.deployment.JBIService"
>> > > > name="org.servicemix:service=JBIService">
>> > > > <attribute
>> > >name="TransactionManager">java:/TransactionManager</attribute>
>> > > > </mbean>
>> > > > </server>
>> > > >
>> > > > Cheers
>> > > >
>> > > > Philip
>> > > >
>> > > > On 9/29/05, Mike Alen <[EMAIL PROTECTED]> wrote:
>> > > > >
>> > > > > Hi!
>> > > > >
>> > > > > I'm trying to deploy servicemix in JBoss.
>> > > > >
>> > > > > I've done the following:
>> > > > > - Downloaded jboss-deployer-1.0-SNAPSHOT.sar from
>> > > > > http://www.servicemix.org/JBoss+Deployer
>> > > > > to jboss-4.0.3RC2\server\default\deploy directory.
>> > > > > - Renamed my servicemix.xml file to file-sm.xml and placed it in
>>the
>> > > > > jboss-4.0.3RC2\server\default\deploy directory.
>> > > > > - Changed property value to "false" for createMBeanServer in
>> > >file-sm.xml
>> > > > > .
>> > > > > - Started JBoss. On http://localhost:8080/jmx-console/ I see the
>> > > > > following
>> > > > > when having filter *servicemix*:
>> > > > > org.servicemix
>> > > > > service=Deployer
>> > > > > service=JBIService
>> > > > >
>> > > > > Problems:
>> > > > > - I have a NameNotFoundException and file-sm.xml is in
>> > > > > INIT_WAITING_DEPLOYER:
>> > > > > --------------------
>> > > > > 18:50:23,749 WARN [ServiceController] Problem starting service
>> > > > > org.servicemix:service=JBIService
>> > > > > javax.naming.NameNotFoundException : TransactionManager not bound
>> > > > > at org.jnp.server.NamingServer.getBinding(NamingServer.java:491)
>> > > > > at org.jnp.server.NamingServer.getBinding(NamingServer.java:499)
>> > > > > at org.jnp.server.NamingServer.getObject(NamingServer.java:505)
>> > > > > at org.jnp.server.NamingServer.lookup(NamingServer.java:278)
>> > > > > at
>>org.jnp.interfaces.NamingContext.lookup(NamingContext.java:610)
>> > > > > at
>>org.jnp.interfaces.NamingContext.lookup(NamingContext.java:572)
>> > > > > at javax.naming.InitialContext.lookup(InitialContext.java:351)
>> > > > > at
>> > > > > org.servicemix.jboss.deployment.JBIService.startService
>> > >(JBIService.java
>> > > > > :181)
>> > > > > at
>> > > > > org.jboss.system.ServiceMBeanSupport.jbossInternalStart(
>> > > > > ServiceMBeanSupport.java:287)
>> > > > > at
>> > > > > org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(
>> > > > > ServiceMBeanSupport.java :236)
>> > > > >
>> > > > > at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
>> > > > >
>> > > > > cut
>> > > > >
>> > > > > 18:51:13,827 ERROR [URLDeploymentScanner] Incomplete Deployment
>> > >listing:
>> > > > >
>> > > > > --- Packages waiting for a deployer ---
>> > > > > [EMAIL PROTECTED] {
>> > > > > url="" 4.0.3RC2/server/default/d
>> > > > > eploy/file-sm.xml }
>> > > > > deployer: null
>> > > > > status: null
>> > > > > state: INIT_WAITING_DEPLOYER
>> > > > > watch: file:/C:/Programs/jboss-
>>4.0.3RC2/server/default/deploy/file-
>> > > > > sm.xml
>> > > > > altDD: null
>> > > > > lastDeployed: 1128012673811
>> > > > > lastModified: 1128012673796
>> > > > > mbeans:
>> > > > >
>> > > > > cut
>> > > > > ----------------------
>> > > > > I copied jar files from servicemix containing TransactionManager
>>to
>> > > > > jboss-4.0.3RC2\server\default\lib.
>> > > > >
>> > > > >
>> > > > > Questions:
>> > > > > Has anyone else used the "jboss-deployer-1.0-SNAPSHOT.sar"
>> > >downloadable
>> > > > > from
>> > > > > http://www.servicemix.org/JBoss+Deployer ?
>> > > > > Or should I build a new one from the code in CVS?
>> > > > >
>> > > > > What needs to be done to deploy servicemix in JBoss?
>> > > > >
>> > > > > Versions:
>> > > > > JBoss: jboss-4.0.3RC2
>> > > > > servicemix: servicemix-1.0.1
>> > > > >
>> > > > > Thanks in advance!
>> > > > >
>> > > > > /Mike Alen
>> > > > >
>> > > > > _________________________________________________________________
>> > > > > Auktioner: Tjäna en hacka på gamla prylar http://tradera.msn.se
>> > > > >
>> > > > >
>> > > >
>> >
>> > _________________________________________________________________
>> > Nyhet! MSN Messenger i Mobiltelefonen! http://mobile.msn.com/
>> >
>> >
>
>_________________________________________________________________
>Hitta rätt på nätet med MSN Search http://search.msn.se/
>
_________________________________________________________________
Chat: Ha en fest på Habbo Hotel
http://habbohotel.msn.se/habbo/sv/channelizer Checka in här!
