You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomee.apache.org by mauro2java2011 <ma...@gmail.com> on 2014/06/22 21:29:34 UTC

tomee 1.6.0.2 file tomee.xml not contain any resource

i have downloaded tomee 1.6.0.2 . 

Into conf dir i have read the tomee.xml file.
I have decommented the section for enable the apps dir .

but i have noted that not exist any resource configurated like datasource,
jms and other resources. 

the tomee 1.5 it contain many resource configurated.
so i ask .: whi not exist any resource?
it work for example the datasource of default or jms queque or topic ???

for example i report the tomee.xml into tomee1.5

<?xml version="1.0" encoding="UTF-8"?>
<tomee>


<Container id="My Singleton Container" type="SINGLETON">
  # Specifies the maximum time an invocation could wait for the
  # singleton bean instance to become available before giving up.
  #
  # After the timeout is reached a
javax.ejb.ConcurrentAccessTimeoutException
  # will be thrown.
  #
  # Usable time units: nanoseconds, microsecons, milliseconds,
  # seconds, minutes, hours, days.  Or any combination such as
  # "1 hour and 27 minutes and 10 seconds"

  AccessTimeout = 30 seconds

</Container>


<Container id="My Stateful Container" type="STATEFUL">
  # Specifies the maximum time an invocation could wait for the
  # stateful bean instance to become available before giving up.
  #
  # After the timeout is reached a
javax.ejb.ConcurrentAccessTimeoutException
  # will be thrown.
  #
  # Usable time units: nanoseconds, microsecons, milliseconds,
  # seconds, minutes, hours, days.  Or any combination such as
  # "1 hour and 27 minutes and 10 seconds"

  AccessTimeout = 30 seconds

  #  The passivator is responsible for writing beans to disk
  #  at passivation time. Different passivators can be used
  #  by setting this property to the fully qualified class name
  #  of the PassivationStrategy implementation. The passivator
  #  is not responsible for invoking any callbacks or other
  #  processing, its only responsibly is to write the bean state
  #  to disk.
  #
  #  Known implementations:
  #     org.apache.openejb.core.stateful.RAFPassivater
  #     org.apache.openejb.core.stateful.SimplePassivater

  Passivator   org.apache.openejb.core.stateful.SimplePassivater

  #  Specifies the time to wait between invocations. This
  #  value is measured in minutes. A value of 5 would
  #  result in a time-out of 5 minutes between invocations.
  #  A value of zero would mean no timeout.

  TimeOut  20

  # Specifies the frequency (in seconds) at which the bean cache is checked
for
  # idle beans.

  Frequency 60

  #  Specifies the size of the bean pools for this
  #  stateful SessionBean container.

  Capacity  1000

  #  Property name that specifies the number of instances
  #  to passivate at one time when doing bulk passivation.
  #  Must be less than the PoolSize.

  BulkPassivate  100

</Container>


<Container id="My Stateless Container" type="STATELESS">

  # Specifies the time an invokation should wait for an instance
  # of the pool to become available.
  #
  # After the timeout is reached, if an instance in the pool cannot
  # be obtained, the method invocation will fail.
  #
  # Usable time units: nanoseconds, microsecons, milliseconds,
  # seconds, minutes, hours, days.  Or any combination such as
  # "1 hour and 27 minutes and 10 seconds"

  AccessTimeout = 30 seconds

  # Specifies the size of the bean pools for this stateless
  # SessionBean container.  If StrictPooling is not used, instances
  # will still be created beyond this number if there is demand, but
  # they will not be returned to the pool and instead will be
  # immediately destroyed.

  MaxSize = 10

  # Specifies the minimum number of bean instances that should be in
  # the pool for each bean.  Pools are prefilled to the minimum on
  # startup.  Note this will create start order dependencies between
  # other beans that also eagerly start, such as other @Stateless
  # beans with a minimum or @Singleton beans using @Startup.  The
  # @DependsOn annotation can be used to appropriately influence
  # start order.
  #
  # The minimum pool size is rigidly maintained.  Instances in the
  # minimum side of the pool are not eligible for IdleTimeout or
  # GarbageCollection, but are subject to MaxAge and flushing.
  #
  # If the pool is flushed it is immediately refilled to the minimum
  # size with MaxAgeOffset applied.  If an instance from the minimum
  # side of the pool reaches its MaxAge, it is also immediately
  # replaced.  Replacement is done in a background queue using the
  # number of threads specified by CallbackThreads.

  MinSize = 0

  # StrictPooling tells the container what to do when the pool
  # reaches it's maximum size and there are incoming requests that
  # need instances.
  #
  # With strict pooling, requests will have to wait for instances to
  # become available. The pool size will never grow beyond the the
  # set MaxSize value.  The maximum amount of time a request should
  # wait is specified via the AccessTimeout setting.
  #
  # Without strict pooling, the container will create temporary
  # instances to meet demand. The instances will last for just one
  # method invocation and then are removed.
  #
  # Setting StrictPooling to false and MaxSize to 0 will result in
  # no pooling. Instead instances will be created on demand and live
  # for exactly one method call before being removed.

  StrictPooling = true

  # Specifies the maximum time that an instance should live before
  # it should be retired and removed from use.  This will happen
  # gracefully.  Useful for situations where bean instances are
  # designed to hold potentially expensive resources such as memory
  # or file handles and need to be periodically cleared out.
  #
  # Usable time units: nanoseconds, microsecons, milliseconds,
  # seconds, minutes, hours, days.  Or any combination such as
  # "1 hour and 27 minutes and 10 seconds"

  MaxAge = 0 hours

  # Specifies the maximum time that an instance should be allowed to
  # sit idly in the pool without use before it should be retired and
  # removed.
  #
  # Usable time units: nanoseconds, microsecons, milliseconds,
  # seconds, minutes, hours, days.  Or any combination such as
  # "1 hour and 27 minutes and 10 seconds"

  IdleTimeout = 0 minutes

</Container>




<Resource id="My DataSource" type="DataSource">
  JdbcDriver org.hsqldb.jdbcDriver
  JdbcUrl jdbc:hsqldb:file:data/hsqldb/hsqldb
  UserName sa
  Password
  JtaManaged true
</Resource>


<Resource id="My Unmanaged DataSource" type="DataSource">
  JdbcDriver org.hsqldb.jdbcDriver
  JdbcUrl jdbc:hsqldb:file:data/hsqldb/hsqldb
  UserName sa
  Password
  JtaManaged false
</Resource>



<Deployments dir="apps/" />

</tomee>
-------------

it contain the  Resource id="My DataSource" type="DataSource"> and the
UnManaged Datasource and other  like <Container id="My Singleton Container"
type="SINGLETON">  for example. 

---------

but tomee work also without any resource configurated intotomee.xml?



--
View this message in context: http://tomee-openejb.979440.n4.nabble.com/tomee-1-6-0-2-file-tomee-xml-not-contain-any-resource-tp4670141.html
Sent from the TomEE Users mailing list archive at Nabble.com.

Re: tomee 1.6.0.2 file tomee.xml not contain any resource

Posted by Romain Manni-Bucau <rm...@gmail.com>.
Personally I'm clearly -1 for it. Just makes noise and doesn't solve the
fact the config is misused cause when you obviously provide an advanced
config it is tempting to touch this value even if you don't get what it
does.


BTW we can just add a comment saying config can be found here
http://tomee.apache.org/containers-and-resources.html





Romain Manni-Bucau
Twitter: @rmannibucau
Blog: http://rmannibucau.wordpress.com/
LinkedIn: http://fr.linkedin.com/in/rmannibucau
Github: https://github.com/rmannibucau


2014-06-23 16:38 GMT+02:00 mauro2java2011 <ma...@gmail.com>:

> but into tomee1.5  are many resource commented .
>  i remember that very util for  create custom resource like datasource ,
> etc .
> But now i have to reference to page
> http://tomee.apache.org/containers-and-resources.html ?
>
>
>
> 2014-06-23 16:09 GMT+02:00 agumbrecht [via TomEE & OpenEJB] <
> ml-node+s979440n4670156h11@n4.nabble.com>:
>
> > Maybe we should consider providing the tomee.xml file with all available
> > options, but everything commented out. Kind of self documenting. Wdyt?
> >
> > Andy.
> >
> > On 22/06/2014 22:34, Romain Manni-Bucau wrote:
> >
> > > All are default values. The point was it was more often badly
> configured
> > > than well configured so we removed it
> > >
> > > Le dimanche 22 juin 2014, mauro2java2011 <[hidden email]
> > <http://user/SendEmail.jtp?type=node&node=4670156&i=0>> a
> > > écrit :
> > >> i have downloaded tomee 1.6.0.2 .
> > >>
> > >> Into conf dir i have read the tomee.xml file.
> > >> I have decommented the section for enable the apps dir .
> > >>
> > >> but i have noted that not exist any resource configurated like
> > datasource,
> > >> jms and other resources.
> > >>
> > >> --
> > >> View this message in context:
> > >
> >
> http://tomee-openejb.979440.n4.nabble.com/tomee-1-6-0-2-file-tomee-xml-not-contain-any-resource-tp4670141.html
> > >> Sent from the TomEE Users mailing list archive at Nabble.com.
> > >>
> >
> > --
> >    Andy Gumbrecht
> >
> >    http://www.tomitribe.com
> >    [hidden email] <http://user/SendEmail.jtp?type=node&node=4670156&i=1>
> >    https://twitter.com/AndyGeeDe
> >
> >    TomEE treibt Tomitribe! | http://tomee.apache.org
> >
> >      --
> >     Andy Gumbrecht
> >
> >     http://www.tomitribe.com
> >     agumbrecht@tomitribe.com
> >     https://twitter.com/AndyGeeDe
> >
> >     TomEE treibt Tomitribe ! | http://tomee.apache.org
> >
> >
> > ------------------------------
> >  If you reply to this email, your message will be added to the discussion
> > below:
> >
> >
> http://openejb.979440.n4.nabble.com/tomee-1-6-0-2-file-tomee-xml-not-contain-any-resource-tp4670141p4670156.html
> >  To unsubscribe from tomee 1.6.0.2 file tomee.xml not contain any
> > resource, click here
> > <
> http://openejb.979440.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=4670141&code=bWF1cm8yamF2YTIwMTFAZ21haWwuY29tfDQ2NzAxNDF8LTExMTcxODc2MjU=
> >
> > .
> > NAML
> > <
> http://openejb.979440.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml
> >
> >
>
>
>
>
> --
> View this message in context:
> http://tomee-openejb.979440.n4.nabble.com/tomee-1-6-0-2-file-tomee-xml-not-contain-any-resource-tp4670141p4670158.html
> Sent from the TomEE Users mailing list archive at Nabble.com.
>

Re: tomee 1.6.0.2 file tomee.xml not contain any resource

Posted by mauro2java2011 <ma...@gmail.com>.
but into tomee1.5  are many resource commented .
 i remember that very util for  create custom resource like datasource ,
etc .
But now i have to reference to page
http://tomee.apache.org/containers-and-resources.html ?



2014-06-23 16:09 GMT+02:00 agumbrecht [via TomEE & OpenEJB] <
ml-node+s979440n4670156h11@n4.nabble.com>:

> Maybe we should consider providing the tomee.xml file with all available
> options, but everything commented out. Kind of self documenting. Wdyt?
>
> Andy.
>
> On 22/06/2014 22:34, Romain Manni-Bucau wrote:
>
> > All are default values. The point was it was more often badly configured
> > than well configured so we removed it
> >
> > Le dimanche 22 juin 2014, mauro2java2011 <[hidden email]
> <http://user/SendEmail.jtp?type=node&node=4670156&i=0>> a
> > écrit :
> >> i have downloaded tomee 1.6.0.2 .
> >>
> >> Into conf dir i have read the tomee.xml file.
> >> I have decommented the section for enable the apps dir .
> >>
> >> but i have noted that not exist any resource configurated like
> datasource,
> >> jms and other resources.
> >>
> >> --
> >> View this message in context:
> >
> http://tomee-openejb.979440.n4.nabble.com/tomee-1-6-0-2-file-tomee-xml-not-contain-any-resource-tp4670141.html
> >> Sent from the TomEE Users mailing list archive at Nabble.com.
> >>
>
> --
>    Andy Gumbrecht
>
>    http://www.tomitribe.com
>    [hidden email] <http://user/SendEmail.jtp?type=node&node=4670156&i=1>
>    https://twitter.com/AndyGeeDe
>
>    TomEE treibt Tomitribe! | http://tomee.apache.org
>
>      --
>     Andy Gumbrecht
>
>     http://www.tomitribe.com
>     agumbrecht@tomitribe.com
>     https://twitter.com/AndyGeeDe
>
>     TomEE treibt Tomitribe ! | http://tomee.apache.org
>
>
> ------------------------------
>  If you reply to this email, your message will be added to the discussion
> below:
>
> http://openejb.979440.n4.nabble.com/tomee-1-6-0-2-file-tomee-xml-not-contain-any-resource-tp4670141p4670156.html
>  To unsubscribe from tomee 1.6.0.2 file tomee.xml not contain any
> resource, click here
> <http://openejb.979440.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=4670141&code=bWF1cm8yamF2YTIwMTFAZ21haWwuY29tfDQ2NzAxNDF8LTExMTcxODc2MjU=>
> .
> NAML
> <http://openejb.979440.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>




--
View this message in context: http://tomee-openejb.979440.n4.nabble.com/tomee-1-6-0-2-file-tomee-xml-not-contain-any-resource-tp4670141p4670158.html
Sent from the TomEE Users mailing list archive at Nabble.com.

Re: tomee 1.6.0.2 file tomee.xml not contain any resource

Posted by Alex Soto <as...@gmail.com>.
This is something that is done in  a lot of Linux projects, why not, it
seems a good practice and useful because you have the whole documentation
in one place instead of a web site.


2014-06-23 16:05 GMT+02:00 Andy Gumbrecht <ag...@tomitribe.com>:

> Maybe we should consider providing the tomee.xml file with all available
> options, but everything commented out. Kind of self documenting. Wdyt?
>
> Andy.
>
> On 22/06/2014 22:34, Romain Manni-Bucau wrote:
>
>> All are default values. The point was it was more often badly configured
>> than well configured so we removed it
>>
>> Le dimanche 22 juin 2014, mauro2java2011 <ma...@gmail.com> a
>> écrit :
>>
>>> i have downloaded tomee 1.6.0.2 .
>>>
>>> Into conf dir i have read the tomee.xml file.
>>> I have decommented the section for enable the apps dir .
>>>
>>> but i have noted that not exist any resource configurated like
>>> datasource,
>>> jms and other resources.
>>>
>>> --
>>> View this message in context:
>>>
>> http://tomee-openejb.979440.n4.nabble.com/tomee-1-6-0-2-
>> file-tomee-xml-not-contain-any-resource-tp4670141.html
>>
>>> Sent from the TomEE Users mailing list archive at Nabble.com.
>>>
>>>
> --
>   Andy Gumbrecht
>
>   http://www.tomitribe.com
>   agumbrecht@tomitribe.com
>   https://twitter.com/AndyGeeDe
>
>   TomEE treibt Tomitribe! | http://tomee.apache.org
>
>


-- 
+----------------------------------------------------------+
  Alex Soto Bueno - Computer Engineer
  www.lordofthejars.com
+----------------------------------------------------------+

Re: tomee 1.6.0.2 file tomee.xml not contain any resource

Posted by Andy Gumbrecht <ag...@tomitribe.com>.
Maybe we should consider providing the tomee.xml file with all available 
options, but everything commented out. Kind of self documenting. Wdyt?

Andy.

On 22/06/2014 22:34, Romain Manni-Bucau wrote:
> All are default values. The point was it was more often badly configured
> than well configured so we removed it
>
> Le dimanche 22 juin 2014, mauro2java2011 <ma...@gmail.com> a
> écrit :
>> i have downloaded tomee 1.6.0.2 .
>>
>> Into conf dir i have read the tomee.xml file.
>> I have decommented the section for enable the apps dir .
>>
>> but i have noted that not exist any resource configurated like datasource,
>> jms and other resources.
>>
>> --
>> View this message in context:
> http://tomee-openejb.979440.n4.nabble.com/tomee-1-6-0-2-file-tomee-xml-not-contain-any-resource-tp4670141.html
>> Sent from the TomEE Users mailing list archive at Nabble.com.
>>

-- 
   Andy Gumbrecht

   http://www.tomitribe.com
   agumbrecht@tomitribe.com
   https://twitter.com/AndyGeeDe

   TomEE treibt Tomitribe! | http://tomee.apache.org


Re: tomee 1.6.0.2 file tomee.xml not contain any resource

Posted by Romain Manni-Bucau <rm...@gmail.com>.
All are default values. The point was it was more often badly configured
than well configured so we removed it

Le dimanche 22 juin 2014, mauro2java2011 <ma...@gmail.com> a
écrit :
> i have downloaded tomee 1.6.0.2 .
>
> Into conf dir i have read the tomee.xml file.
> I have decommented the section for enable the apps dir .
>
> but i have noted that not exist any resource configurated like datasource,
> jms and other resources.
>
> the tomee 1.5 it contain many resource configurated.
> so i ask .: whi not exist any resource?
> it work for example the datasource of default or jms queque or topic ???
>
> for example i report the tomee.xml into tomee1.5
>
> <?xml version="1.0" encoding="UTF-8"?>
> <tomee>
>
>
> <Container id="My Singleton Container" type="SINGLETON">
>   # Specifies the maximum time an invocation could wait for the
>   # singleton bean instance to become available before giving up.
>   #
>   # After the timeout is reached a
> javax.ejb.ConcurrentAccessTimeoutException
>   # will be thrown.
>   #
>   # Usable time units: nanoseconds, microsecons, milliseconds,
>   # seconds, minutes, hours, days.  Or any combination such as
>   # "1 hour and 27 minutes and 10 seconds"
>
>   AccessTimeout = 30 seconds
>
> </Container>
>
>
> <Container id="My Stateful Container" type="STATEFUL">
>   # Specifies the maximum time an invocation could wait for the
>   # stateful bean instance to become available before giving up.
>   #
>   # After the timeout is reached a
> javax.ejb.ConcurrentAccessTimeoutException
>   # will be thrown.
>   #
>   # Usable time units: nanoseconds, microsecons, milliseconds,
>   # seconds, minutes, hours, days.  Or any combination such as
>   # "1 hour and 27 minutes and 10 seconds"
>
>   AccessTimeout = 30 seconds
>
>   #  The passivator is responsible for writing beans to disk
>   #  at passivation time. Different passivators can be used
>   #  by setting this property to the fully qualified class name
>   #  of the PassivationStrategy implementation. The passivator
>   #  is not responsible for invoking any callbacks or other
>   #  processing, its only responsibly is to write the bean state
>   #  to disk.
>   #
>   #  Known implementations:
>   #     org.apache.openejb.core.stateful.RAFPassivater
>   #     org.apache.openejb.core.stateful.SimplePassivater
>
>   Passivator   org.apache.openejb.core.stateful.SimplePassivater
>
>   #  Specifies the time to wait between invocations. This
>   #  value is measured in minutes. A value of 5 would
>   #  result in a time-out of 5 minutes between invocations.
>   #  A value of zero would mean no timeout.
>
>   TimeOut  20
>
>   # Specifies the frequency (in seconds) at which the bean cache is
checked
> for
>   # idle beans.
>
>   Frequency 60
>
>   #  Specifies the size of the bean pools for this
>   #  stateful SessionBean container.
>
>   Capacity  1000
>
>   #  Property name that specifies the number of instances
>   #  to passivate at one time when doing bulk passivation.
>   #  Must be less than the PoolSize.
>
>   BulkPassivate  100
>
> </Container>
>
>
> <Container id="My Stateless Container" type="STATELESS">
>
>   # Specifies the time an invokation should wait for an instance
>   # of the pool to become available.
>   #
>   # After the timeout is reached, if an instance in the pool cannot
>   # be obtained, the method invocation will fail.
>   #
>   # Usable time units: nanoseconds, microsecons, milliseconds,
>   # seconds, minutes, hours, days.  Or any combination such as
>   # "1 hour and 27 minutes and 10 seconds"
>
>   AccessTimeout = 30 seconds
>
>   # Specifies the size of the bean pools for this stateless
>   # SessionBean container.  If StrictPooling is not used, instances
>   # will still be created beyond this number if there is demand, but
>   # they will not be returned to the pool and instead will be
>   # immediately destroyed.
>
>   MaxSize = 10
>
>   # Specifies the minimum number of bean instances that should be in
>   # the pool for each bean.  Pools are prefilled to the minimum on
>   # startup.  Note this will create start order dependencies between
>   # other beans that also eagerly start, such as other @Stateless
>   # beans with a minimum or @Singleton beans using @Startup.  The
>   # @DependsOn annotation can be used to appropriately influence
>   # start order.
>   #
>   # The minimum pool size is rigidly maintained.  Instances in the
>   # minimum side of the pool are not eligible for IdleTimeout or
>   # GarbageCollection, but are subject to MaxAge and flushing.
>   #
>   # If the pool is flushed it is immediately refilled to the minimum
>   # size with MaxAgeOffset applied.  If an instance from the minimum
>   # side of the pool reaches its MaxAge, it is also immediately
>   # replaced.  Replacement is done in a background queue using the
>   # number of threads specified by CallbackThreads.
>
>   MinSize = 0
>
>   # StrictPooling tells the container what to do when the pool
>   # reaches it's maximum size and there are incoming requests that
>   # need instances.
>   #
>   # With strict pooling, requests will have to wait for instances to
>   # become available. The pool size will never grow beyond the the
>   # set MaxSize value.  The maximum amount of time a request should
>   # wait is specified via the AccessTimeout setting.
>   #
>   # Without strict pooling, the container will create temporary
>   # instances to meet demand. The instances will last for just one
>   # method invocation and then are removed.
>   #
>   # Setting StrictPooling to false and MaxSize to 0 will result in
>   # no pooling. Instead instances will be created on demand and live
>   # for exactly one method call before being removed.
>
>   StrictPooling = true
>
>   # Specifies the maximum time that an instance should live before
>   # it should be retired and removed from use.  This will happen
>   # gracefully.  Useful for situations where bean instances are
>   # designed to hold potentially expensive resources such as memory
>   # or file handles and need to be periodically cleared out.
>   #
>   # Usable time units: nanoseconds, microsecons, milliseconds,
>   # seconds, minutes, hours, days.  Or any combination such as
>   # "1 hour and 27 minutes and 10 seconds"
>
>   MaxAge = 0 hours
>
>   # Specifies the maximum time that an instance should be allowed to
>   # sit idly in the pool without use before it should be retired and
>   # removed.
>   #
>   # Usable time units: nanoseconds, microsecons, milliseconds,
>   # seconds, minutes, hours, days.  Or any combination such as
>   # "1 hour and 27 minutes and 10 seconds"
>
>   IdleTimeout = 0 minutes
>
> </Container>
>
>
>
>
> <Resource id="My DataSource" type="DataSource">
>   JdbcDriver org.hsqldb.jdbcDriver
>   JdbcUrl jdbc:hsqldb:file:data/hsqldb/hsqldb
>   UserName sa
>   Password
>   JtaManaged true
> </Resource>
>
>
> <Resource id="My Unmanaged DataSource" type="DataSource">
>   JdbcDriver org.hsqldb.jdbcDriver
>   JdbcUrl jdbc:hsqldb:file:data/hsqldb/hsqldb
>   UserName sa
>   Password
>   JtaManaged false
> </Resource>
>
>
>
> <Deployments dir="apps/" />
>
> </tomee>
> -------------
>
> it contain the  Resource id="My DataSource" type="DataSource"> and the
> UnManaged Datasource and other  like <Container id="My Singleton
Container"
> type="SINGLETON">  for example.
>
> ---------
>
> but tomee work also without any resource configurated intotomee.xml?
>
>
>
> --
> View this message in context:
http://tomee-openejb.979440.n4.nabble.com/tomee-1-6-0-2-file-tomee-xml-not-contain-any-resource-tp4670141.html
> Sent from the TomEE Users mailing list archive at Nabble.com.
>

-- 


Romain Manni-Bucau
Twitter: @rmannibucau
Blog: http://rmannibucau.wordpress.com/
LinkedIn: http://fr.linkedin.com/in/rmannibucau
Github: https://github.com/rmannibucau