[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: JBOSS 4.0.2 and java 1.6

2009-07-23 Thread DeMarco2
Thanks Peter; that's what I'm looking for.. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245257#4245257 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245257 ___ jboss-user

[jboss-user] [Installation, Configuration & DEPLOYMENT] - JBOSS 4.0.2 and java 1.6

2009-07-21 Thread DeMarco2
Hi together, is the jboss 4.0.2 Version approved for java 1.6? Thanks and best regards Marco View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4244990#4244990 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4244990

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: missing files after system restart

2009-01-13 Thread DeMarco2
no ideas? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4201326#4201326 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4201326 ___ jboss-user mailing list jboss-user@lists.jbos

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: missing files after system restart

2009-01-06 Thread DeMarco2
Version 4.0.2. We have also some of our applications deployed. jboss and our app is running well for a few days. But after system restart the files are lost. The installation is made with InstallAnywhere. I think it's not a specific jboss problem, but rather a vmware or system problem. But perha

[jboss-user] [Installation, Configuration & DEPLOYMENT] - missing files after system restart

2009-01-06 Thread DeMarco2
Hi together, we have a mysterious problem in a vmware server, windows server 2003 environment. Sometimes (and it happend on more than 1 system) f.e. after a bluecreen or a server restart, most files in the server/default/lib path are lost. Also the server/default/log/server.log is lost. It seems

[jboss-user] [Beginners Corner] - problem with classloader sessionbean(ucl)->mbean(isolated cl

2008-09-29 Thread DeMarco2
Hi all, hope that this is a simple question I have a simple sar with some jar-packages inside running in a scoped classloasder. sar | |-- mbean.jar |-- jar1.jar |-- jar2.jar Now I want to access (share) one or more classes inside the sar-file (and from one of its jar-packes indes the sar)

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: access a class in a scoped classloader from ucl

2008-09-29 Thread DeMarco2
someone who can help? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4179277#4179277 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4179277 ___ jboss-user mailing list jboss-use

[jboss-user] [Installation, Configuration & DEPLOYMENT] - access a class in a scoped classloader from ucl

2008-09-26 Thread DeMarco2
Hi all, I've got a simple question: I have a simple sar with some jar-packages inside running in a scoped classloasder. Now I want to access one or more classes inside the sar-file (and from one of its jar-packes indes the sar) from a class (f.e. a SessionBean) running in the ucl. What I have e

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: classloader problem with a ear + sar inside

2008-09-25 Thread DeMarco2
ok, we found this wiki in which it is described, but not why it works in this way... http://wiki.jboss.org/wiki/ClassLoadingConfiguration "There are two levels of scoping, isolation from other deployments, and isolation that overrides the loading of JBoss server classes. With nested modules, on

[jboss-user] [Installation, Configuration & DEPLOYMENT] - classloader problem with a ear + sar inside

2008-09-25 Thread DeMarco2
Hi jboss specialists. I try to deploy an ear containg 1 sar 1 ejb and multible shared jars. I try the follwing structure of the ear: app.ear | |--- META-INF | | | |--- application.xml | |--- jboss-app.xml | |--- lib | | | |--- lib1.jar | |--- lib2.jar | |--- . | |--- service.s

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: deployment of ear containing jars + sar

2008-09-25 Thread DeMarco2
Found it by myself. thanks. The libs should not be declared in a . The should seperatly defined in such a way: lib/lib1.jar Seems to be a simple answer, but now I'm running in a classloader conflict, which I describe in a separate task. View the original post : http://www.jboss.com/

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: deployment of ear containing jars + sar

2008-09-24 Thread DeMarco2
no ideas? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4178498#4178498 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4178498 ___ jboss-user mailing list jboss-user@lists.jbos

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: deployment of ear containing jars + sar

2008-09-18 Thread DeMarco2
Are there other ideas? Somebody who knows if the relative pathes of libs must be included in the classpath entry of the manifest? f.e. Meta-inf of the service-jar Classpath /lib/lib1.jar /lib/lib2.jar ... or Classpath ../lib/lib1.jar ../lib/lib2.jar ... or something else? Is the classpath entry

[jboss-user] [Installation, Configuration & DEPLOYMENT] - deployment of ear containing jars + sar

2008-09-12 Thread DeMarco2
Hi together. I try to deploy an ear containg 1 sar and multible jars. I try the follwing structure of the ear: app.ear | |--- META-INF | | | |--- application.xml | | | |--- jboss-app.xml | |--- lib | | | |--- lib1.jar | |--