[jboss-user] [JBoss Web Services Users] - Re: Error with registering a RESTeasy Providerfactory

2009-12-04 Thread Juergen.Zimmermann
You are mixing Jersey and RESTEasy.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4269113#4269113

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4269113
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Microcontainer Users] - Re: How to get DeploymentUnit?

2009-11-22 Thread Juergen.Zimmermann
I've to implement a class as follows:


  | import java.lang.reflect.Type;
  | import javax.ejb.EJB;
  | import javax.naming.Context;
  | import javax.naming.InitialContext;
  | import javax.naming.NamingException;
  | import javax.ws.rs.ext.Provider;
  | import com.sun.jersey.core.spi.component.ComponentContext;
  | import com.sun.jersey.spi.inject.Injectable;
  | import com.sun.jersey.spi.inject.InjectableProvider;
  | 
  | @Provider
  | public class EJBProvider implements InjectableProviderEJB, Type {
  |   public InjectableObject getInjectable(ComponentContext componentCtx,
  |   EJB ejbAnnotation,
  |   Type type) {
  | if (!(type instanceof Class?))
  |   return null;
  | 
  | Class? clazz = (Class?) type;
  | 
  | String beanInterface = ejbAnnotation.beanInterface().getName();
  | if (Object.class.getName().equals(beanInterface)) {
  |   beanInterface = clazz.getName();
  | }
  | 
  | String jndiName = ???;  // get jndi name via beanInterface
  | 
  | Context ctx = null;
  | try {
  |   ctx = new InitialContext();
  |   Object obj = ctx.lookup(jndiName);
  | 
  |   return new InjectableObject() {
  | public Object getValue() {
  |   return obj;
  | }
  |   };
  | }
  | catch (NamingException e) { /* error handling */ }
  | finally { /* close ctx */ }
  |   }
  | }

So my 1st problem is: how to get the jndi name when the interface of an EJB is 
available?

I was trying the following where I only would need the DeploymentUnit object. 
Perhaps there are alternatives. Any hint is highly appreciated!
//import org.jboss.deployers.structure.spi.DeploymentUnit;
  | //import 
org.jboss.ejb3.common.resolvers.plugins.FirstMatchEjbReferenceResolver;
  | //import org.jboss.ejb3.common.resolvers.spi.EjbReference;
  | //import org.jboss.ejb3.common.resolvers.spi.EjbReferenceResolver;
  | 
  | EjbReference ref = new EjbReference(ejbAnnotation.beanName(),
  | beanInterface,
  | ejbAnnotation.mappedName());
  | EjbReferenceResolver resolver = new FirstMatchEjbReferenceResolver();
  | 
  | DeploymentUnit du = ???;  // How to get DeploymentUnit? Via ClassLoader?
  | 
  | String jndiName = resolver.resolveEjb(du, ref);
  | 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4266911#4266911

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4266911
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Microcontainer Users] - Re: How to get DeploymentUnit?

2009-11-22 Thread Juergen.Zimmermann
BTW, the whole deployment is in an EAR, the class EJBProvider (see above) is in 
a web module, and the referenced EJB of course in an EJB module.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4266914#4266914

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4266914
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Microcontainer Users] - Re: How to get DeploymentUnit?

2009-11-22 Thread Juergen.Zimmermann
Thank you very much for your help!

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4266918#4266918

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4266918
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Microcontainer Users] - How to get DeploymentUnit?

2009-11-21 Thread Juergen.Zimmermann
I want to integrate Jersey (aka reference impl for JAX-RS) and JBoss. 
Therefore, I have to provide an implementation for the annotation @EJB by 
myself.

At http://www.jboss.org/index.html?module=bbop=viewtopicp=4235907#4235907 I 
found these 3 steps by Ales Justin:

(1) Get CL for the class 
(2) Get the Module for CL 
(3) Search all DUs for matching Module 
-- the one that has that Module as an attachment is your DU

(1) is no problem. I get the classloader object of type 
org.jboss.classloader.spi.base.BaseClassLoader. Invoking 
BaseClassLoader.getName() I get the associated url, e.g. 
vfsfile:/.../deploy/hska.ear/hskaREST.war

(2) is a problem, because I don't know which method should be invoked on 
BaseClassLoader. Any hint is appreciated!

(3) will probabely the next problem. How can I get a list of all available 
DeploymentUnits?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4266877#4266877

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4266877
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0 Users] - Re: Lookup for a session bean if only the interface is given

2009-11-17 Thread Juergen.Zimmermann
Thank you very much! That's what I was looking for.

Just one question: when doing this in the way described above, how do I get the 
DeploymentUnit object? Can you give me another hint please?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4266064#4266064

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4266064
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0 Users] - Re: List of all available JNDIS names of all session beans

2009-11-13 Thread Juergen.Zimmermann
Got it. Thank you very much!

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4265479#4265479

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4265479
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0 Users] - Lookup for a session bean if only the interface is given

2009-11-13 Thread Juergen.Zimmermann
I have to emulate @EJB and just know an interface. How can I obtain a session 
bean? I can assume that the session bean comes out of an EAR so that the JNDI 
name is myEAR/myBeanClass/local or .../remote.

Shall I compute the EAR name via the classloader and then navigate through the 
JNDI tree looking for classes that implement the given interface? Perhaps there 
is an easier way. Any hint is appreciated!

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4265481#4265481

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4265481
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0 Users] - Re: Lookup for a session bean if only the interface is given

2009-11-13 Thread Juergen.Zimmermann
I'm trying to integrate Jersey with JBossAS.  Jersey is an implementation of 
JAX-RS, and we want to compare RESTEasy and Jersey.

However, Jersey resolves @EJB only for Glassfish. Therefore, I have to 
implement a class as follows:


  | import java.lang.reflect.Type;
  | ...
  | @Provider
  | public class EJBProvider implements InjectableProviderEJB, Type {
  | ...
  | public InjectableObject getInjectable(ComponentContext componentCtx, 
EJB ejb, Type type) {
  | if (!(type instanceof Class?))
  | return null;
  | Class? clazz = (Class?) type;
  | String interfaceName = clazz.getSimpleName();
  | ...
  | Object obj = ...; // the session bean being referenced: How to 
get it?
  | 
  | return new InjectableObject() {
  | public Object getValue() {
  | return obj;
  | }
  | };
  | }

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4265604#4265604

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4265604
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0 Users] - List of all available JNDIS names of all session beans

2009-11-12 Thread Juergen.Zimmermann
I want to obtain a list of all names of all deployed session beans:

OK, I'm doing new InitialContext() and I know that my EAR is named hska. How 
do I get the child nodes for the base name hska/?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4265403#4265403

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4265403
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Web Services Users] - Where is JBossWS Native 3.2.1 ?

2009-11-02 Thread Juergen.Zimmermann
I cannot find it at http://www.jboss.org/jbossws/downloads/

However, in JIRA it looks like it is already completed. Any hint is appreciated.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4263593#4263593

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4263593
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools Users] - Re: JBoss Tools 3.1.0.M4 is available

2009-10-31 Thread Juergen.Zimmermann
What will happen to issues that are targeted at 3.1.0.M4, but are unresolved. 
See 
https://jira.jboss.com/jira/secure/IssueNavigator.jspa?reset=truepid=10020fixfor=12313491
 .

E.g. XML catalog not complete for JBossAS 5.1 
https://jira.jboss.org/jira/browse/JBIDE-5030

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4263302#4263302

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4263302
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools Users] - How does 3.1.M3 deploy an EAR for JBossAS 5.1 ?

2009-09-21 Thread Juergen.Zimmermann
Until 3.1.M2 I was redeploying with 
org.jboss.deployers.spi.management.deploy.DeploymentManager. This approach 
doesn't work anymore with 3.1.M3. See 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4256199

It would be helpful to get a hint how JBossTools are deploying an EAR file for 
JBossAS 5.1. Thank you in advance!

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4256200#4256200

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4256200
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools Users] - Re: How does 3.1.M3 deploy an EAR for JBossAS 5.1 ?

2009-09-21 Thread Juergen.Zimmermann
It's JMX MainDeployer

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4256217#4256217

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4256217
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools Users] - Re: Will 3.1.0.M3 be available before October?

2009-09-11 Thread Juergen.Zimmermann
;-)

Only a small webshop. Therefore, we're considering Eclipse 3.4  JBossTools 3.0 
 JBossAS 4.2 vs. Eclipse 3.5  JBossTools 3.1  JBossAS 5.1

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4254676#4254676

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4254676
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools Users] - Will 3.1.0.M3 be available before October?

2009-09-10 Thread Juergen.Zimmermann
Just a question for project planning.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4254483#4254483

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4254483
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Hibernate: IDENTITY support for DB2 9.7 broken

2009-06-23 Thread Juergen.Zimmermann
I'm having no problems when using DB2 Express-C 9.5.2. However, after upgrading 
to DB2 Express-C 9.7 Hibernate cannot handle IDENTITY columns. A stacktrace is 
below.

Hibernate products:
* Hibernate 3.3.1
* Hibernate Common Annotations 3.1.0
* Hibernate Annotations 3.4.0
* Hibernate EntityManager 3.4.0

Stacktrace:
javax.persistence.PersistenceException: org.hibernate.HibernateException: The 
database returned no natively generated identity value
  | at 
org.hibernate.ejb.AbstractEntityManagerImpl.throwPersistenceException(AbstractEntityManagerImpl.java:614)
  | at 
org.hibernate.ejb.AbstractEntityManagerImpl.persist(AbstractEntityManagerImpl.java:226)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:597)
  | at 
org.springframework.orm.jpa.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler.invoke(SharedEntityManagerCreator.java:228)
  | at $Proxy60.persist(Unknown Source)
  | at 
de.hska.bestellverwaltung.repository.BestellverwaltungRepositoryImpl.neueBestellung(BestellverwaltungRepositoryImpl.java:177)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:597)
  | at 
org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
  | at 
org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:183)
  | at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:150)
  | at 
org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:50)
  | at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
  | at 
org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:50)
  | at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
  | at 
org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
  | at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
  | at 
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202)
  | at $Proxy65.neueBestellung(Unknown Source)
  | at 
de.hska.bestellverwaltung.service.BestellverwaltungServiceImpl.createBestellung(BestellverwaltungServiceImpl.java:188)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:597)
  | at 
org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
  | at 
org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:183)
  | at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:150)
  | at 
org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:50)
  | at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
  | at 
org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:50)
  | at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
  | at 
org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
  | at 
org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:172)
  | at 
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:202)
  | at $Proxy66.createBestellung(Unknown Source)
  | at 
de.hska.test.BestellverwaltungTest.createBestellung(BestellverwaltungTest.java:135)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:597)
  | at 

[jboss-user] [EJB 3.0] - Re: Hibernate: IDENTITY support for DB2 9.7 broken

2009-06-23 Thread Juergen.Zimmermann
Both the Hibernate Core and EntityManager forum are gone:

https://forum.hibernate.org/index.php

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4239371#4239371

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4239371
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - JBossWS-Tools vs. JAX-WS Tools Project of Eclipse

2009-05-11 Thread Juergen.Zimmermann
JAX-WS Tools Project of Eclipse is part of WTP - see 
http://wiki.eclipse.org/JAXWS. JAX-WS Tools is currently based on Apache CXF.

Is there any relationship between JBossWS-Tools and JAX-WS Tools? This would be 
interesting since Red Hat has become a key contributor to the Apache CXF. See:
- http://press.redhat.com/2009/03/25/red-hat-adds-muscle-to-apache-cxf/
- 
http://jbossws.blogspot.com/2009/03/jboss-to-provide-support-for-apache-cxf.html

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4230232#4230232

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4230232
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Microcontainer] - Re: VFS Commons Configuration issue

2009-04-14 Thread Juergen.Zimmermann
BTW, Jersey (reference impl. for JAX-RS) is patched using the same idea.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4225515#4225515

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4225515
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - JBoss EJB 3.0 1.0.4 and JBoss 5.1.0.beta1

2009-03-27 Thread Juergen.Zimmermann
Is the updated JBoss EJB 3.0 1.0.4 (http://downloads.sourceforge.net/jboss) 
usable with the latest JBossAS 5.1.0.beta1 ?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4221705#4221705

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4221705
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Microcontainer] - DeploymentManager in 5.1.0.Beta1

2009-03-15 Thread Juergen.Zimmermann
I want to migrate my redeploy workaround to 5.1.0.Beta1. Using JBoss 5.0.0 and 
5.0.1 I did it this way to redeploy a running EAR app:
DeploymentManager dm = ...;
  | DeploymentProgress stop = dm.stop(DeploymentPhase.APPLICATION, hska);
  | stop.run();
  | checkProgress(stop);
  | 
  | DeploymentProgress distribute = dm.distribute(hska, 
DeploymentPhase.APPLICATION, new 
URL(file:/C:/.../server/default/deploy/hska.ear/), false);
  | distribute.run();
  | checkProgress(distribute);

In 5.1.0.Beta1 the constant DeploymentPhase.APPLICATION is not required 
anymore. Fine.

However, looking at 
https://anonsvn.jboss.org/repos/jbossas/trunk/testsuite/src/main/org/jboss/test/deployers/AbstractDeploymentTest.java
 I'm not sure how to use the methods distribute(), start(), stop() and 
undeploy() of DeploymentManager. Any hint is appreciated!

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4218073#4218073

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4218073
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: Dali plugin: which version

2009-03-06 Thread Juergen.Zimmermann
I cannot use Dali 2.1.1 because PostgreSQL can only be used via the default 
schema...

https://bugs.eclipse.org/bugs/show_bug.cgi?id=267343

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4215659#4215659

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4215659
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: Dali plugin: which version

2009-03-06 Thread Juergen.Zimmermann
I cannot create any project having the JPA facet enabled.  Dali 2.1.1 can 
access PostgreSQL only via the default schema.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4215696#4215696

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4215696
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: Dali plugin: which version

2009-03-06 Thread Juergen.Zimmermann
Yes, using the default schema works.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4215775#4215775

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4215775
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Dali plugin: which version

2009-03-05 Thread Juergen.Zimmermann
On the Eclipse/WTP download page I saw
a) Download of WTP 3.0.4
b) Download of Dali 2.1.1

Do the JBossTools also work with the latest Dali 2.1.1 which seems to be 
installable on top of WTP 3.0.4 ?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4215574#4215574

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4215574
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: 3.0.0 ?

2009-03-04 Thread Juergen.Zimmermann
We'll to start a new project with several newbies. Therefore, I'd like to have 
a fixed IDE. Thus mid of March is fine for me. Thank's a lot!

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4214804#4214804

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214804
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - 3.0.0 ?

2009-03-03 Thread Juergen.Zimmermann
Do you expect to ship 3.0.0.GA before March 16? I need this info for scheduling 
whether to upgrade from CR2 or not. Thank you in advance.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4214750#4214750

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4214750
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Microcontainer] - Programmatic redeploy using DeploymentManager

2009-02-09 Thread Juergen.Zimmermann
Can org.jboss.deployers.spi.management.deploy.DeploymentManager be used for 
redeploying e.g. an EAR?

If so, are there any examples or wiki pages?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4208095#4208095

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4208095
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Microcontainer] - Re: Programmatic redeploy using DeploymentManager

2009-02-09 Thread Juergen.Zimmermann
Thank you! This is exactly what I was looking for.

To summarize: here are the steps for programmatic redeployment with JBossAS 
5.0.0.GA:
Context ctx = new InitialContext();
  | ProfileService ps = (ProfileService) ctx.lookup(ProfileService);
  | ctx.close();
  | 
  | DeploymentManager ds = ps.getDeploymentManager();
  | // %JBOSS_HOME%\server\default
  | ds.loadProfile(new ProfileKey(default), false);
  | 
  | String earName = foo.ear;
  | String earUrl = file:/.../foo.ear;
  | 
  | DeploymentProgress stop = 
ds.stop(ManagedDeployment.DeploymentPhase.APPLICATION, earName);
  | stop.run();
  | checkProgress(stop);
  | 
  | DeploymentProgress distribute = ds.distribute(earName, 
ManagedDeployment.DeploymentPhase.APPLICATION, new URL(earUrl), false);
  | distribute.run();
  | checkProgress(distribute);
  | 
  | private static void checkProgress(DeploymentProgress progress) throws 
Exception {
  |DeploymentStatus status = progress.getDeploymentStatus();
  |Throwable failure = status.getFailure();
  |if (failure != null) {
  |   throw new Exception(failure);
  |}
  | }

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4208163#4208163

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4208163
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - How to migrate to JBossAS 5 ?

2009-02-09 Thread Juergen.Zimmermann
I have a queue (and a topic) defined in messaging-service.xml for JBoss 4.2.3. 
Now I want to migrate to JBossAS 5 as follows: 

messaging-service.xml of JBossAS 4: server
  | mbean code=org.jboss.jms.server.destination.QueueService
  | name=jboss.messaging.destination:service=Queue,name=marketing
  | xmbean-dd=xmdesc/Queue-xmbean.xml
  | depends optional-attribute-name=ServerPeer
  | jboss.messaging:service=ServerPeer
  | /depends
  | dependsjboss.messaging:service=PostOffice/depends
  | /mbean
  | /server

messaging-jboss-beans.xml for JBossAS 5: deployment 
xmlns=urn:jboss:bean-deployer:2.0
  | 
  | bean name=String2ObjectName 
class=de.hska.util.jboss.String2ObjectName/
  | 
  | bean class=org.jboss.jms.server.destination.QueueService 
name=Queue,name=marketing
  | property name=serverPeer
  | value-factory bean=String2ObjectName 
method=transform
  | parameter
  | inject 
bean=jboss.messaging:service=ServerPeer fromContext=name/
  | /parameter
  | /value-factory
  | /property
  | dependsjboss.messaging:service=PostOffice/depends
  | /bean
  | /deployment

The Java class String2ObjectName is pretty simple:public class 
String2ObjectName {
  | public ObjectName transform(String s) throws 
MalformedObjectNameException, NullPointerException {
  | return new ObjectName(s);
  | }
  | }

However, I get this stacktrace:2009-02-03 12:05:25,578 ERROR 
[org.jboss.messaging.util.ExceptionUtil] (main) Queue[(destination.getName() == 
NULL)] startService
  | java.lang.NullPointerException
  | at org.jboss.messaging.util.JMXAccessor$1.run(JMXAccessor.java:55)
  | at java.security.AccessController.doPrivileged(Native Method)
  | at 
org.jboss.messaging.util.JMXAccessor.getJMXAttributeOverSecurity(JMXAccessor.java:49)
  | at 
org.jboss.jms.server.destination.DestinationServiceSupport.startService(DestinationServiceSupport.java:84)
  | at 
org.jboss.jms.server.destination.QueueService.startService(QueueService.java:65)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:376)
  | at 
org.jboss.system.ServiceMBeanSupport.pojoStart(ServiceMBeanSupport.java:216)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:597)
  | at 
org.jboss.reflect.plugins.introspection.ReflectionUtils.invoke(ReflectionUtils.java:59)
  | at 
org.jboss.reflect.plugins.introspection.ReflectMethodInfoImpl.invoke(ReflectMethodInfoImpl.java:150)
  | at 
org.jboss.joinpoint.plugins.BasicMethodJoinPoint.dispatch(BasicMethodJoinPoint.java:66)
  | at 
org.jboss.kernel.plugins.dependency.KernelControllerContextAction$JoinpointDispatchWrapper.execute(KernelControllerContextAction.java:241)
  | at 
org.jboss.kernel.plugins.dependency.ExecutionWrapper.execute(ExecutionWrapper.java:47)
  | at 
org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchExecutionWrapper(KernelControllerContextAction.java:109)
  | at 
org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchJoinPoint(KernelControllerContextAction.java:70)
  | at 
org.jboss.kernel.plugins.dependency.LifecycleAction.installActionInternal(LifecycleAction.java:221)
  | at 
org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:54)
  | at 
org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:42)
  | at 
org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
  | at 
org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
  | at 
org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
  | at 
org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | at 
org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
  | at 
org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
  | at 
org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:774)
  | at 

[jboss-user] [Microcontainer] - Re: How to convert -service.xml into -jboss-beans.xml ?

2009-02-04 Thread Juergen.Zimmermann
Now I get a NPE inside JBossMessaging. Therefore, I decided to post to the 
according user forum 
http://www.jboss.com/index.html?module=bbop=viewtopict=149712

However, there is no reaction. Should I open a JIRA ticket?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4206860#4206860

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4206860
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - How to declare queue and topic in -jboss-beans.xml ?

2009-02-03 Thread Juergen.Zimmermann
I have a queue (and a topic) defined in messaging-service.xml for JBoss 4.2.3. 
Now I want to migrate to messaging-jboss-beans.xml as follows:

messaging-service.xml:

  | server
  | mbean code=org.jboss.jms.server.destination.QueueService
  | name=jboss.messaging.destination:service=Queue,name=marketing
  | xmbean-dd=xmdesc/Queue-xmbean.xml
  | depends optional-attribute-name=ServerPeer
  | jboss.messaging:service=ServerPeer
  | /depends
  | dependsjboss.messaging:service=PostOffice/depends
  | /mbean
  | /server

messaging-jboss-beans.xml:
deployment xmlns=urn:jboss:bean-deployer:2.0
  | 
  | bean name=String2ObjectName 
class=de.hska.util.jboss.String2ObjectName/
  | 
  | bean class=org.jboss.jms.server.destination.QueueService 
name=Queue,name=marketing
  | property name=serverPeer
  | value-factory bean=String2ObjectName 
method=transform
  | parameter
  | inject 
bean=jboss.messaging:service=ServerPeer fromContext=name/
  | /parameter
  | /value-factory
  | /property
  | dependsjboss.messaging:service=PostOffice/depends
  | /bean
  | /deployment

The Java class String2ObjectName is pretty simple:
public class String2ObjectName {
  | public ObjectName transform(String s) throws 
MalformedObjectNameException, NullPointerException {
  | return new ObjectName(s);
  | }
  | }

However, I get this stacktrace:
2009-02-03 12:05:25,578 ERROR [org.jboss.messaging.util.ExceptionUtil] (main) 
Queue[(destination.getName() == NULL)] startService
  | java.lang.NullPointerException
  | at org.jboss.messaging.util.JMXAccessor$1.run(JMXAccessor.java:55)
  | at java.security.AccessController.doPrivileged(Native Method)
  | at 
org.jboss.messaging.util.JMXAccessor.getJMXAttributeOverSecurity(JMXAccessor.java:49)
  | at 
org.jboss.jms.server.destination.DestinationServiceSupport.startService(DestinationServiceSupport.java:84)
  | at 
org.jboss.jms.server.destination.QueueService.startService(QueueService.java:65)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:376)
  | at 
org.jboss.system.ServiceMBeanSupport.pojoStart(ServiceMBeanSupport.java:216)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:597)
  | at 
org.jboss.reflect.plugins.introspection.ReflectionUtils.invoke(ReflectionUtils.java:59)
  | at 
org.jboss.reflect.plugins.introspection.ReflectMethodInfoImpl.invoke(ReflectMethodInfoImpl.java:150)
  | at 
org.jboss.joinpoint.plugins.BasicMethodJoinPoint.dispatch(BasicMethodJoinPoint.java:66)
  | at 
org.jboss.kernel.plugins.dependency.KernelControllerContextAction$JoinpointDispatchWrapper.execute(KernelControllerContextAction.java:241)
  | at 
org.jboss.kernel.plugins.dependency.ExecutionWrapper.execute(ExecutionWrapper.java:47)
  | at 
org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchExecutionWrapper(KernelControllerContextAction.java:109)
  | at 
org.jboss.kernel.plugins.dependency.KernelControllerContextAction.dispatchJoinPoint(KernelControllerContextAction.java:70)
  | at 
org.jboss.kernel.plugins.dependency.LifecycleAction.installActionInternal(LifecycleAction.java:221)
  | at 
org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:54)
  | at 
org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:42)
  | at 
org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
  | at 
org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
  | at 
org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
  | at 
org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | at 
org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
  | at 
org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
  | at 
org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:774)
  | at 

[jboss-user] [Microcontainer] - Re: How to convert -service.xml into -jboss-beans.xml ?

2009-02-01 Thread Juergen.Zimmermann
The services are coming from JBossMessaging ;-)

Adding the 'fromContext' attribute yields a new stacktrace:
2009-02-01 09:18:25,918 ERROR 
[org.jboss.kernel.plugins.dependency.AbstractKernelController] (main) Error 
installing to Configured: name=Queue,name=marketing state=Instantiated
  | java.lang.RuntimeException: Error configuring property: serverPeer for 
Queue,name=marketing
  | at 
org.jboss.kernel.plugins.dependency.ConfigureAction.dispatchSetProperty(ConfigureAction.java:112)
  | at 
org.jboss.kernel.plugins.dependency.ConfigureAction.setAttributes(ConfigureAction.java:85)
  | at 
org.jboss.kernel.plugins.dependency.ConfigureAction.installActionInternal(ConfigureAction.java:44)
  | at 
org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:54)
  | at 
org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:42)
  | at 
org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
  | at 
org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
  | at 
org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
  | at 
org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | at 
org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
  | at 
org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
  | at 
org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:774)
  | at 
org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:540)
  | at 
org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:121)
  | at 
org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:51)
  | at 
org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
  | at 
org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
  | at 
org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1157)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1178)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1210)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
  | at 
org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | at 
org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
  | at 
org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
  | at 
org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
  | at 
org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
  | at 
org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:545)
  | at 
org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:304)
  | at 
org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:205)
  | at 
org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:405)
  | at org.jboss.Main.boot(Main.java:209)
  | at org.jboss.Main$1.run(Main.java:547)
  | at java.lang.Thread.run(Thread.java:619)
  | Caused by: java.lang.IllegalArgumentException: Wrong arguments. 
setServerPeer for target org.jboss.jms.server.destination.queueserv...@17e4fa7 
expected=[javax.management.ObjectName] actual=[java.lang.String]
  | at 
org.jboss.reflect.plugins.introspection.ReflectionUtils.handleErrors(ReflectionUtils.java:395)
  | at 
org.jboss.reflect.plugins.introspection.ReflectionUtils.invoke(ReflectionUtils.java:69)
  | at 

[jboss-user] [Microcontainer] - Re: How to convert -service.xml into -jboss-beans.xml ?

2009-01-30 Thread Juergen.Zimmermann
Can you give me a hint to convert these 2 fragement which are not covered at 
http://www.jboss.org/community/docs/DOC-9449:
xmbean-dd=xmdesc/Queue-xmbean.xml and
dependsjboss.messaging:service=PostOffice/depends
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4205776#4205776

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4205776
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Microcontainer] - Re: How to convert -service.xml into -jboss-beans.xml ?

2009-01-30 Thread Juergen.Zimmermann
Now I created messaging-jboss-beans.xml:
?xml version=1.0?
  | deployment xmlns=urn:jboss:bean-deployer:2.0
  | bean class=org.jboss.jms.server.destination.QueueService 
name=Queue,name=marketing
  | property name=serverPeer
  | inject bean=jboss.messaging:service=ServerPeer/
  | /property
  | dependsjboss.messaging:service=PostOffice/depends
  | /bean
  | 
  | bean class=org.jboss.jms.server.destination.TopicService 
name=Topic,name=kunden
  | property name=serverPeer
  | inject bean=jboss.messaging:service=ServerPeer/
  | /property
  | dependsjboss.messaging:service=PostOffice/depends
  | /bean
  | /deployment

However, I get the following stacktrace. Any hint is appreciated!
2009-01-30 11:10:47,552 ERROR 
[org.jboss.kernel.plugins.dependency.AbstractKernelController] (main) Error 
installing to Configured: name=Queue,name=marketing state=Instantiated
  | java.lang.RuntimeException: Error configuring property: serverPeer for 
Queue,name=marketing
  | at 
org.jboss.kernel.plugins.dependency.ConfigureAction.dispatchSetProperty(ConfigureAction.java:112)
  | at 
org.jboss.kernel.plugins.dependency.ConfigureAction.setAttributes(ConfigureAction.java:85)
  | at 
org.jboss.kernel.plugins.dependency.ConfigureAction.installActionInternal(ConfigureAction.java:44)
  | at 
org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:54)
  | at 
org.jboss.kernel.plugins.dependency.InstallsAwareAction.installAction(InstallsAwareAction.java:42)
  | at 
org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction(SimpleControllerContextAction.java:62)
  | at 
org.jboss.dependency.plugins.action.AccessControllerContextAction.install(AccessControllerContextAction.java:71)
  | at 
org.jboss.dependency.plugins.AbstractControllerContextActions.install(AbstractControllerContextActions.java:51)
  | at 
org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | at 
org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
  | at 
org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
  | at 
org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:774)
  | at 
org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:540)
  | at 
org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:121)
  | at 
org.jboss.deployers.vfs.deployer.kernel.BeanMetaDataDeployer.deploy(BeanMetaDataDeployer.java:51)
  | at 
org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy(AbstractSimpleRealDeployer.java:62)
  | at 
org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
  | at 
org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1157)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1178)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1210)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)
  | at 
org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | at 
org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1598)
  | at 
org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:934)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:1062)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:984)
  | at 
org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)
  | at 
org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)
  | at 
org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:545)
  | at 
org.jboss.system.server.profileservice.ProfileServiceBootstrap.loadProfile(ProfileServiceBootstrap.java:304)
  | at 
org.jboss.system.server.profileservice.ProfileServiceBootstrap.start(ProfileServiceBootstrap.java:205)
  | at 

[jboss-user] [Microcontainer] - How to convert -service.xml into -jboss-beans.xml ?

2009-01-29 Thread Juergen.Zimmermann
I have the following classic MBean definition in messaging-service.xml:

  | server
  | mbean code=org.jboss.jms.server.destination.QueueService
  | name=jboss.messaging.destination:service=Queue,name=marketing
  | xmbean-dd=xmdesc/Queue-xmbean.xml
  | depends optional-attribute-name=ServerPeer
  | jboss.messaging:service=ServerPeer
  | /depends
  | dependsjboss.messaging:service=PostOffice/depends
  | /mbean
  | /server

How do I convert it into e.g. messaging-jboss-beans.xml ?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4205755#4205755

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4205755
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: JBoss 5.0.0.GA fails to work with Eclipse 3.4

2009-01-15 Thread Juergen.Zimmermann
I'm using JBoss Tools which is based on the WTP plugin. WTP provides a generic 
JBossAS adapter - JBossTools is dedicated to JBoss and provides a lot of good 
and stable features.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4202294#4202294

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4202294
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: Is perspective JMX considered to be

2008-12-31 Thread Juergen.Zimmermann
The JMX perspective serves my needs: looking up names of EJBs, looking up the 
name of JAAS domains, looking up names of queues and topics, ...

I was just doubtful about the relationship between the (old) JMX MBeans and the 
new POJOs.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4199017#4199017

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4199017
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: Is perspective JMX considered to be

2008-12-31 Thread Juergen.Zimmermann
In http://www.jboss.com/index.html?module=bbop=viewtopicp=4199033#4199033 
Alesj mentions that a *NEW* ProfileService will be developed

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4199051#4199051

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4199051
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Is perspective JMX considered to be legacy ?

2008-12-30 Thread Juergen.Zimmermann
IMHO, JBossAS 5.0 comes with a new microcontainer that is based on POJOs, and 
MBeans for JMX are still supported -- for backwards compatibility.

Will JBossTools also support a perspective to inspect the new POJOs resp. beans?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4198939#4198939

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4198939
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: JBossMessaging 1.4.2: When?

2008-12-20 Thread Juergen.Zimmermann
Will it be uploaded at http://www.jboss.org/jbossmessaging/downloads ?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4197808#4197808

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4197808
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - JBossMessaging 1.4.2: When?

2008-12-13 Thread Juergen.Zimmermann
Is there a coarse estimation when 1.4.2 will be available?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4196382#4196382

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4196382
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - JBossAS 4.2.4: When?

2008-11-19 Thread Juergen.Zimmermann
JIRA mentions 37 of 41 issues have been resolved.

Will JBossAS 4.2.4 be available in Nov. or Dec.?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4190407#4190407

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4190407
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: JDK 1.6.0_10/JBoss4.2.0.GA/JBossWS 2.0.0 - setProperty m

2008-11-13 Thread Juergen.Zimmermann
Endorsed is described at 
http://java.sun.com/javase/6/docs/technotes/guides/standards.

JDK 6 ships with an (internal) implementation of JAXB, and JBoss ships its own 
implementation of JAXB which should be used instead of the one of JDK.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4189253#4189253

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4189253
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: JDK 1.6.0_10/JBoss4.2.0.GA/JBossWS 2.0.0 - setProperty m

2008-11-11 Thread Juergen.Zimmermann
Don't forget to use the endorsed mechanism for jaxb-api.jar, 
jbossws-native-*.jar

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4188438#4188438

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4188438
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Availability of 4.2.4

2008-10-22 Thread Juergen.Zimmermann
In JIRA I found for 4.2.4: 32 of 36 issues have been resolved.

Dou you have a coarse estimation when 4.2.4 will be available?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4184008#4184008

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4184008
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Re: @EJB injection in JBoss 5 application clients?

2008-10-07 Thread Juergen.Zimmermann
IMHO, the @EJB annotation should only be supported for static members in 
classes with a main() function [see the spec for EJB 3 and the app client 
container]

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4180898#4180898

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4180898
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: JBossTools-Core disappeared from nightly builds

2008-09-23 Thread Juergen.Zimmermann
The nightly build 20080924 is not usable. See 
https://jira.jboss.org/jira/browse/JBIDE-2798

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4178181#4178181

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4178181
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - JBossTools-Core disappeared from nightly builds

2008-09-22 Thread Juergen.Zimmermann
JBossTools-Core is not available for the nightly builds. Is this JAR file 
contained in others? Any hint is appreciated.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4178087#4178087

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4178087
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: JBossWS-Tools?

2008-07-19 Thread Juergen.Zimmermann
Which perspective is best suited for JBossWS-Tools: JavaEE, Web Developement or 
?
Which menu item should/can be invoked in the beginning?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4165500#4165500

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4165500
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - JBossWS-Tools?

2008-07-18 Thread Juergen.Zimmermann
Which functionality for JBossWS is provided by JBossWS-Tools ?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4165292#4165292

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4165292
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - 5.0.0CR1: EJB refs across EARs don't work

2008-07-08 Thread Juergen.Zimmermann
I'm having 2 different EARs and stateless session beans of the 2nd EAR are 
referencing stateless session beans of the 1st ear. It worked fine with 4.2.2

When migrating to 5.0.0CR1 I got an error message which indicated that I must 
add mappedName to the referenced SLSBs. Now the error is gone, but when 
deploying the second EAR (with the referencing SLSBs) I get this warning:

WARN  [org.jboss.deployment.MappedReferenceMetaDataResolverDeployer] 
(HDScanner) Unresolved references exist in 
JBossMetaData:[testHskaEJB.jar#KundenverwaltungTestBean:AnnotatedEJBReferenceMetaData{name=kvProxy,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=mapped/hska/Kundenverwaltung,resolved-jndi-name=null,beanInterface=interface
 de.hska.kundenverwaltung.Kundenverwaltung}, 
testHskaEJB.jar#BestellverwaltungTestBean:AnnotatedEJBReferenceMetaData{name=bvProxy,ejb-ref-type=null,link=null,ignore-dependecy=false,mapped/jndi-name=mapped/hska/Bestellverwaltung,resolved-jndi-name=null,beanInterface=interface
 de.hska.bestellverwaltung.Bestellverwaltung}]

Code of the referenced SLSB in the 1st EAR:
  | @Stateless(mappedName=mapped/hska/Kundenverwaltung)
  | public class KundenverwaltungBean implements Kundenverwaltung {
  | @SuppressWarnings(unused)
  | @PersistenceContext
  | private EntityManager em;
  | 
  | @EJB
  | private KundenverwaltungDao dao;
  | 
  | @EJB
  | @IgnoreDependency
  | private Bestellverwaltung bv;
  | 
  | @Resource
  | private SessionContext sessionCtx;

Code of the referencing SLSB in the 2nd EAR:
@Stateless
  | @Remote(KundenverwaltungTestRemote.class)
  | public class KundenverwaltungTestBean implements KundenverwaltungTestRemote 
{
  | @EJB(mappedName=mapped/hska/Kundenverwaltung)
  | private Kundenverwaltung kvProxy;

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4162993#4162993

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4162993
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: 5.0.0CR1: deployment error with @PersistenceContext and

2008-07-07 Thread Juergen.Zimmermann
As mentioned before: it's an application that works fine with 4.2.2.

Here is the Interface without any annotation:public interface Bestellverwaltung 
{
  | 
  | Bestellung findBestellungById(Long id) throws 
BestellungNotFoundException;
  | ...

Here is the bean class:@Stateless
  | @Local(Bestellverwaltung.class)
  | public class BestellverwaltungBean implements Bestellverwaltung {
  | @SuppressWarnings(unused)
  | @PersistenceContext(name=hskaPersistence)
  | private EntityManager em;
  | 
  | @EJB
  | private Kundenverwaltung kv;
  | 
  | @EJB
  | private BestellverwaltungDao dao;
  | 
  | @SuppressWarnings(unused)
  | @PreDestroy
  | private void preDestroy() {...}
  | ...

And also the persistence.xml:?xml version=1.0 encoding=ISO-8859-1?
  | 
  | persistence xmlns=http://java.sun.com/xml/ns/persistence;
  |  xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
  |  xsi:schemaLocation=http://java.sun.com/xml/ns/persistence 
http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd;
  |  version=1.0
  | 
  | persistence-unit name=hskaPersistence
  | providerorg.hibernate.ejb.HibernatePersistence/provider
  | 
  | !-- Hibernate Console: in Kommentar setzen --
  | jta-data-sourcejava:/hskaDS/jta-data-source
  | 
  | properties
  | property name=hibernate.dialect 
value=org.hibernate.dialect.PostgreSQLDialect/
  | 
  | !-- Keine proprietaeren Erweiterungen von HQL nutzen 
--
  | property 
name=hibernate.query.jpaql_strict_compliance value=true/
  | 
  | !-- In der Log-Datei die SQL-Anweisungen lesbarer 
rausschreiben --
  | property name=hibernate.format_sql value=true/
  | 
  | !-- In der Log-Datei auch Kommentare zu den 
generierten SQL-Anweisungen hinzufuegen --
  | property name=hibernate.use_sql_comments 
value=true/
  | 
  | !-- Batch fuer DML von automatisch versionierten 
Datensaetzen --
  | property name=hibernate.jdbc.batch_versioned_data 
value=true/
  | 
  | property name=hibernate.cache.provider_class 
value=org.hibernate.cache.HashtableCacheProvider/
  | 
  | property name=hibernate.cache.use_query_cache 
value=true/
  | 
  | !-- Klassen und Collections fuer Caching der 
persistenten Objekte --
  | !-- falls TreeCache statt HashtableCache: read-write 
aendern in transactional --
  | property 
name=hibernate.ejb.classcache.de.hska.kundenverwaltung.db.Kunde 
value=read-write, /kunden/
  | property 
name=hibernate.ejb.collectioncache.de.hska.kundenverwaltung.db.Kunde.bestellungen
 value=read-write, /bestellungen/
  | property 
name=hibernate.ejb.classcache.de.hska.bestellverwaltung.db.Bestellung 
value=read-write, /bestellungen/
  | property 
name=hibernate.ejb.classcache.de.hska.bestellverwaltung.db.Lieferung 
value=read-write, /lieferungen/
  | /properties
  | /persistence-unit
  | /persistence

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4162775#4162775

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4162775
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: 5.0.0CR1: deployment error with @PersistenceContext and

2008-07-07 Thread Juergen.Zimmermann
Thank you! That'sd the solution.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4162912#4162912

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4162912
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: 5.0.0CR1: deployment error with @PersistenceContext and

2008-07-04 Thread Juergen.Zimmermann
I've an exploded SAR archive inside the exploded EAR archive. The SAR archive 
contains a file hska-ds.xml (just as it is when running successfully with 
JBossAS 4.2.2)

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4162468#4162468

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4162468
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user



[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: 5.0.0CR1: deployment error with @PersistenceContext and

2008-07-04 Thread Juergen.Zimmermann
The exploded sar is contained in the exploded ear, and jboss-app.xml looks as 
follows (with the DTD for 5.0):
?xml version=1.0?
  | !DOCTYPE jboss-app
  | PUBLIC -//JBoss//DTD Java EE Application 5.0//EN
  | http://www.jboss.org/j2ee/dtd/jboss-app_5_0.dtd;
  | jboss-app
  | module
  | service
  | hska.sar
  | /service
  | /module
  | /jboss-app

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4162500#4162500

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4162500
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Deployment error with 5.0.0.CR1

2008-07-03 Thread Juergen.Zimmermann
When deploying an exploded EAR I get the stacktrace below.

This EAR deploys on JBossAS 4.2.2 without any problem. I just changed the DTD 
declarations inside jboss-app.xml and jboss-service.xml. Then I changed the 
package names for @IgnoreDependency and 
org.jboss.security.auth.spi.Util.createPasswordHash().

I'm using JDK 6u10beta with the switch 
-Dsun.lang.ClassLoader.allowArraySyntax=true

Here is the Stacktrace:
2008-07-03 21:54:14,049 INFO  [org.apache.coyote.ajp.AjpAprProtocol] (main) 
Starting Coyote AJP/1.3 on ajp-localhost%2F127.0.0.1-8009
  | 2008-07-03 21:54:14,069 INFO  
[org.jboss.bootstrap.microcontainer.ServerImpl] (main) JBoss (Microcontainer) 
[5.0.0.CR1 (build: SVNTag=JBoss_5_0_0_CR1 date=200806301254)] Started in 
1m:11s:32ms
  | 2008-07-03 21:54:36,191 WARN  
[org.jboss.detailed.classloader.ClassLoaderManager] (HDScanner) Unexpected 
error during load of:javax.activation.SecuritySupport12
  | java.lang.IllegalAccessError: class javax.activation.SecuritySupport12 
cannot access its superclass javax.activation.SecuritySupport
  | at java.lang.ClassLoader.defineClass1(Native Method)
  | at java.lang.ClassLoader.defineClass(ClassLoader.java:621)
  | at 
org.jboss.classloader.spi.base.BaseClassLoader.access$200(BaseClassLoader.java:63)
  | at 
org.jboss.classloader.spi.base.BaseClassLoader$2.run(BaseClassLoader.java:502)
  | at 
org.jboss.classloader.spi.base.BaseClassLoader$2.run(BaseClassLoader.java:462)
  | at java.security.AccessController.doPrivileged(Native Method)
  | at 
org.jboss.classloader.spi.base.BaseClassLoader.loadClassLocally(BaseClassLoader.java:460)
  | at 
org.jboss.classloader.spi.base.BaseClassLoader.loadClassLocally(BaseClassLoader.java:437)
  | at 
org.jboss.classloader.spi.base.BaseDelegateLoader.loadClass(BaseDelegateLoader.java:134)
  | at 
org.jboss.classloader.spi.filter.FilteredDelegateLoader.loadClass(FilteredDelegateLoader.java:131)
  | at 
org.jboss.classloader.spi.base.ClassLoadingTask$ThreadTask.run(ClassLoadingTask.java:452)
  | at 
org.jboss.classloader.spi.base.ClassLoaderManager.nextTask(ClassLoaderManager.java:254)
  | at 
org.jboss.classloader.spi.base.ClassLoaderManager.process(ClassLoaderManager.java:148)
  | at 
org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:196)
  | at 
org.jboss.classloader.spi.base.BaseClassLoaderDomain.loadClass(BaseClassLoaderDomain.java:1009)
  | at 
org.jboss.classloader.spi.base.BaseClassLoader.loadClassFromDomain(BaseClassLoader.java:728)
  | at 
org.jboss.classloader.spi.base.BaseClassLoader.loadClass(BaseClassLoader.java:372)
  | at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
  | at 
org.jboss.deployment.AnnotatedClassFilter.accepts(AnnotatedClassFilter.java:121)
  | at 
org.jboss.deployment.AnnotatedClassFilter.visit(AnnotatedClassFilter.java:102)
  | at 
org.jboss.virtual.plugins.vfs.helpers.WrappingVirtualFileHandlerVisitor.visit(WrappingVirtualFileHandlerVisitor.java:62)
  | at 
org.jboss.virtual.plugins.context.AbstractVFSContext.visit(AbstractVFSContext.java:264)
  | at 
org.jboss.virtual.plugins.context.AbstractVFSContext.visit(AbstractVFSContext.java:279)
  | at 
org.jboss.virtual.plugins.context.AbstractVFSContext.visit(AbstractVFSContext.java:209)
  | at 
org.jboss.virtual.plugins.context.AbstractVFSContext.visit(AbstractVFSContext.java:277)
  | at 
org.jboss.virtual.plugins.context.AbstractVFSContext.visit(AbstractVFSContext.java:209)
  | at org.jboss.virtual.VFS.visit(VFS.java:330)
  | at org.jboss.virtual.VirtualFile.visit(VirtualFile.java:383)
  | at 
org.jboss.deployment.AnnotationMetaDataDeployer.getClasses(AnnotationMetaDataDeployer.java:215)
  | at 
org.jboss.deployment.AnnotationMetaDataDeployer.deploy(AnnotationMetaDataDeployer.java:182)
  | at 
org.jboss.deployment.AnnotationMetaDataDeployer.deploy(AnnotationMetaDataDeployer.java:97)
  | at 
org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:174)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:970)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1023)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:911)
  | at 
org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | at 
org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
  | at 
org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
  | at 

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Deployment error with 5.0.0.CR1

2008-07-03 Thread Juergen.Zimmermann
Solved: activation.jar and mail.jar are contained in the web module's 
WEB-INF/lib. However, they are already contained in $JBOSS_HOME/client.

Another deployment issue now occurs, and will be shown in another thread.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4162424#4162424

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4162424
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - 5.0.0CR1: deployment error with @PersistenceContext and @Ign

2008-07-03 Thread Juergen.Zimmermann
An exploded EAR deploys and runs fine with JBossAS 4.2.2. Adapting some DTD 
declarations and package names I tried the deployment with for 5.0.0CR1 and 
failed. The stacktrace is below.

The problem:
- KundenverwaltungBean is a SLSB and references the SLSB BestellverwaltungBean 
via its interface Bestellverwaltung
- The reference is declared with @PersistenceContext and @IgnoreDependency 
because BestellverwaltungBean also has a reference back to KundenverwaltungBean 
via its interface Kundenverwaltung
- BestellverwaltungBean has a field em of type EntityManager being annotated 
with @PersistenceContext(name=hskaPersistence)
- hskaPersistence is the name of persistence-unit inside 
META-INF/persistence.xml

Here is the stacktrace. Any hint is appreciated! Is this a bug in the hot 
deployment scanner?

2008-07-04 06:00:55,388 INFO  [org.apache.coyote.ajp.AjpAprProtocol] (main) 
Starting Coyote AJP/1.3 on ajp-localhost%2F127.0.0.1-8009
  | 2008-07-04 06:00:55,398 INFO  
[org.jboss.bootstrap.microcontainer.ServerImpl] (main) JBoss (Microcontainer) 
[5.0.0.CR1 (build: SVNTag=JBoss_5_0_0_CR1 date=200806301254)] Started in 
1m:10s:120ms
  | 2008-07-04 06:01:14,105 INFO  [STDOUT] (HDScanner) == Creating 
interceptor metadata bridge
  | 2008-07-04 06:01:14,816 INFO  [STDOUT] (HDScanner) == Creating 
interceptor metadata bridge
  | 2008-07-04 06:01:14,866 INFO  [STDOUT] (HDScanner) == Creating 
interceptor metadata bridge
  | 2008-07-04 06:01:15,007 INFO  [STDOUT] (HDScanner) == Creating 
interceptor metadata bridge
  | 2008-07-04 06:01:15,137 WARN  
[org.jboss.ejb3.interceptors.aop.InjectInterceptorsFactory] (HDScanner) 
WEIRDNESS IN AOP: advisor [EMAIL PROTECTED]
  | 2008-07-04 06:01:15,187 WARN  
[org.jboss.ejb3.interceptors.aop.InjectInterceptorsFactory] (HDScanner) 
WEIRDNESS IN AOP: advisor [EMAIL PROTECTED]
  | 2008-07-04 06:01:15,207 INFO  [org.jboss.ejb3.deployers.JBossASKernel] 
(HDScanner) Created KernelDeployment for: hskaEJB.jar
  | 2008-07-04 06:01:15,217 INFO  [org.jboss.ejb3.deployers.JBossASKernel] 
(HDScanner) installing bean: 
persistence.units:ear=hska.ear,jar=hskaEJB.jar,unitName=hskaPersistence
  | 2008-07-04 06:01:15,217 INFO  [org.jboss.ejb3.deployers.JBossASKernel] 
(HDScanner)   with dependencies:
  | 2008-07-04 06:01:15,217 INFO  [org.jboss.ejb3.deployers.JBossASKernel] 
(HDScanner)   and demands:
  | 2008-07-04 06:01:15,217 INFO  [org.jboss.ejb3.deployers.JBossASKernel] 
(HDScanner)  jboss.jca:name=hskaDS,service=DataSourceBinding
  | 2008-07-04 06:01:15,217 INFO  [org.jboss.ejb3.deployers.JBossASKernel] 
(HDScanner)   and supplies:
  | 2008-07-04 06:01:15,217 INFO  [org.jboss.ejb3.deployers.JBossASKernel] 
(HDScanner)  persistence.units:unitName=hskaPersistence
  | 2008-07-04 06:01:15,217 INFO  [org.jboss.ejb3.deployers.JBossASKernel] 
(HDScanner) Added 
bean(persistence.units:ear=hska.ear,jar=hskaEJB.jar,unitName=hskaPersistence) 
to KernelDeployment of: hskaEJB.jar
  | 2008-07-04 06:01:15,217 ERROR 
[org.jboss.kernel.plugins.dependency.AbstractKernelController] (HDScanner) 
Error installing to Real: 
name=vfsfile:/C:/Programme/jboss/server/default/deploy/hska.ear/ state=PreReal 
mode=Manual requiredState=Real
  | org.jboss.deployers.spi.DeploymentException: Error deploying hskaEJB.jar: 
injection-target could not be found: 
de.hska.bestellverwaltung.BestellverwaltungBean.hskaPersistence
  | at org.jboss.ejb3.deployers.Ejb3Deployer.deploy(Ejb3Deployer.java:192)
  | at org.jboss.ejb3.deployers.Ejb3Deployer.deploy(Ejb3Deployer.java:95)
  | at 
org.jboss.deployers.vfs.spi.deployer.AbstractVFSRealDeployer.internalDeploy(AbstractVFSRealDeployer.java:45)
  | at 
org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy(AbstractRealDeployer.java:50)
  | at 
org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:174)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:970)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst(DeployersImpl.java:1023)
  | at 
org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:911)
  | at 
org.jboss.dependency.plugins.AbstractControllerContext.install(AbstractControllerContext.java:348)
  | at 
org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1392)
  | at 
org.jboss.dependency.plugins.AbstractController.incrementState(AbstractController.java:784)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:912)
  | at 
org.jboss.dependency.plugins.AbstractController.resolveContexts(AbstractController.java:834)
  | at 
org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:672)
  | at 
org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:455)
  | at 

[jboss-user] [JBoss Tools (users)] - 3.0alpha: when

2008-06-25 Thread Juergen.Zimmermann
Ganymede is out of the box. Will 3.0alpha be available during July?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4160734#4160734

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4160734
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - 5.0.0.CR1: When?

2008-05-04 Thread Juergen.Zimmermann
When will 5.0.0.CR1 be available? May, June, July?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4148541#4148541

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4148541
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Where is 1.4.1.CR1?

2008-05-02 Thread Juergen.Zimmermann
http://repository.jboss.org/maven2/jboss/messaging/jboss-messaging/1.4.1.CR1/ 
shows jboss-messaging.jar

How do I have to construct jboss-messaging-client.jar and jboss-messaging.sar? 
Or will 1.4.1.CR1 be available at sourceforge ?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4148426#4148426

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4148426
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - SLF4J instead of Commons Logging?

2008-05-01 Thread Juergen.Zimmermann
The new Hibernate release 3.3.0.CR1 is build using SLF4J instead of Commons 
Logging. Will JBossAS also move to SLF4J?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4148136#4148136

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4148136
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - WTP 3.0 ?

2008-04-10 Thread Juergen.Zimmermann
Is there a rough estimation when Eclipse 3.4 with WTP 3.0 will be supported by 
JBoss Tools?

I just tried the latest milestone releases. However, when I try to open the 
JBoss Server View I get this exception:

java.lang.ClassNotFoundException: 
org.eclipse.wst.server.ui.internal.view.servers.ServerAction

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4143066#4143066

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4143066
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - 4.2.3.CR1 ?

2008-03-27 Thread Juergen.Zimmermann
I realized that there is a JBossWS implementation available for 4.2.3.CR1 being 
available at http://repository.jboss.com/jboss/jbossws-jboss42/4.2.3.CR1

Where can I find JBossAS 4.2.3.CR1 ?
Any hint is appreciated!

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4139532#4139532

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4139532
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: How to tell which Web Service stack(s) are in which Redh

2008-03-09 Thread Juergen.Zimmermann
JBossTools is based on Eclipse WTP. WTP has a wizard for Axis. That's the 
simple reason why an Axis wizard is shipped with JBossTools.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4135171#4135171

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4135171
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - WS-Security and jbossws-3.0-metro-1.0.0.GA

2008-02-14 Thread Juergen.Zimmermann
Is there an example (client and server side) how to use 
jbossws-3.0-metro-1.0.0.GA and WS-Security?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4129391#4129391

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4129391
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - 2.0.1beta ?

2008-02-02 Thread Juergen.Zimmermann
http://jira.jboss.com/jira/browse/JBIDE?report=com.atlassian.jira.plugin.system.project:roadmap-panel
 shows that a lot of bugs are fixed.

Will a public beta be available?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4125836#4125836

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4125836
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: TRACE level doesn't work

2008-02-01 Thread Juergen.Zimmermann
Thank you. That's what I was looking for.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4125552#4125552

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4125552
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - TRACE level doesn't work

2008-01-31 Thread Juergen.Zimmermann
I tried to use the TRACE level in log4j.xml (and log4j.properties) and put this 
config file into an SAR archive: The TRACE level doesn't work!

However, DEBUG works... http://jira.jboss.org/jira/browse/JBAS-1853 isn't 
resolved completely.

Any workarounds for JBossAS 4.2.2 except listing the categories for level TRACE 
inside the global jboss-log4j.xml ?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4125036#4125036

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4125036
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: TRACE level doesn't work

2008-01-31 Thread Juergen.Zimmermann
No log4j.jar is packaged with my EAR archive containing an EJB module as a JAR 
archive and a SAR archive. The SAR archive contains log4j.properties and 
META-INF/jboss-service.xml

No exception can be found in server.log.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4125100#4125100

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4125100
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: TRACE level doesn't work

2008-01-31 Thread Juergen.Zimmermann
This is the 1-line contents of my log4j.properties:
log4j.logger.de.hska=TRACE

The contents of a session bean is:
@Stateless
  | @Local(KundenverwaltungDao.class)
  | final public class KundenverwaltungDaoBean implements KundenverwaltungDao {
  | public static final Log LOG = 
LogFactory.getLog(KundenverwaltungDaoBean.class);
  | ...
  | if (LOG.isDebugEnabled()) {
  | for (Kunde k: kunden) {
  | LOG.debug(k);
  | }
  | }
  | 

Now, I get the expected log records. However, changing isDebugEnabled to 
isTraceEnabled and debug() to trace() then nothing is logged.

Using -Dlog4j.debug for log4j's internal log doesn't show anything regarding 
my log4j.properties (which is part of an EAR's SAR archive). 

Could it be that JBoss is internally setting the DEBUG level for everything and 
that's the reason for logging the stuff above with DEBUG level?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4125223#4125223

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4125223
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: TRACE level doesn't work

2008-01-31 Thread Juergen.Zimmermann
I tried putting log4j.properties in the root of the EAR module so that it is on 
the classpath -- no success.

Looks like log categories have to be set in the central jboss-log4j.xml.
Or is there another option not to touch this central config file?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4125232#4125232

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4125232
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - MessageSucker: How to change password ?

2008-01-31 Thread Juergen.Zimmermann
I upgraded JBossAS 4.2.2 with JBossMessaging 1.4.1Beta1. Now I get this warning:
WARN  [SecurityMetadataStore] WARNING! POTENTIAL SECURITY RISK

In the user manual I cannot find how to change the password for MessageSucker. 
Any hint is appreciated!

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4125261#4125261

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4125261
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - 2.0.1 beta?

2008-01-29 Thread Juergen.Zimmermann
Will a 2.0.1 beta be available?
If so, what is the rough time frame? Middle of February? End of Feb?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4124483#4124483

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4124483
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Warnings with 1.4.1Beta1

2008-01-28 Thread Juergen.Zimmermann
Using JBossMessaging 1.4.1Beta1, JGroups 2.6.1 and JBossAS 4.2.2 I get these 
warnings at startup. Are they serious?

2008-01-28 10:36:22,034 WARN  [org.jgroups.protocols.UDP] down_thread was 
deprecated and is ignored
  | 2008-01-28 10:36:22,034 WARN  [org.jgroups.protocols.UDP] up_thread was 
deprecated and is ignored
  | 2008-01-28 10:36:22,044 WARN  [org.jgroups.protocols.UDP] Attribute 
use_outgoing_packet_handler has been deprecated and is ignored
  | 2008-01-28 10:36:22,044 WARN  [org.jgroups.protocols.PING] down_thread was 
deprecated and is ignored
  | 2008-01-28 10:36:22,044 WARN  [org.jgroups.protocols.PING] up_thread was 
deprecated and is ignored
  | 2008-01-28 10:36:22,054 WARN  [org.jgroups.protocols.MERGE2] down_thread 
was deprecated and is ignored
  | 2008-01-28 10:36:22,054 WARN  [org.jgroups.protocols.MERGE2] up_thread was 
deprecated and is ignored
  | 2008-01-28 10:36:22,054 WARN  [org.jgroups.protocols.FD_SOCK] down_thread 
was deprecated and is ignored
  | 2008-01-28 10:36:22,054 WARN  [org.jgroups.protocols.FD_SOCK] up_thread was 
deprecated and is ignored
  | 2008-01-28 10:36:22,064 WARN  [org.jgroups.protocols.FD] down_thread was 
deprecated and is ignored
  | 2008-01-28 10:36:22,064 WARN  [org.jgroups.protocols.FD] up_thread was 
deprecated and is ignored
  | 2008-01-28 10:36:22,064 WARN  [org.jgroups.protocols.VERIFY_SUSPECT] 
down_thread was deprecated and is ignored
  | 2008-01-28 10:36:22,064 WARN  [org.jgroups.protocols.VERIFY_SUSPECT] 
up_thread was deprecated and is ignored
  | 2008-01-28 10:36:22,074 WARN  [org.jgroups.protocols.pbcast.NAKACK] 
down_thread was deprecated and is ignored
  | 2008-01-28 10:36:22,074 WARN  [org.jgroups.protocols.pbcast.NAKACK] 
up_thread was deprecated and is ignored
  | 2008-01-28 10:36:22,084 WARN  [org.jgroups.protocols.pbcast.NAKACK] 
max_xmit_size was deprecated in 2.6 and will be ignored
  | 2008-01-28 10:36:22,094 WARN  [org.jgroups.protocols.UNICAST] down_thread 
was deprecated and is ignored
  | 2008-01-28 10:36:22,094 WARN  [org.jgroups.protocols.UNICAST] up_thread was 
deprecated and is ignored
  | 2008-01-28 10:36:22,104 WARN  [org.jgroups.protocols.pbcast.STABLE] 
down_thread was deprecated and is ignored
  | 2008-01-28 10:36:22,104 WARN  [org.jgroups.protocols.pbcast.STABLE] 
up_thread was deprecated and is ignored
  | 2008-01-28 10:36:22,134 WARN  [org.jgroups.protocols.pbcast.GMS] 
down_thread was deprecated and is ignored
  | 2008-01-28 10:36:22,134 WARN  [org.jgroups.protocols.pbcast.GMS] up_thread 
was deprecated and is ignored
  | 2008-01-28 10:36:22,134 WARN  [org.jgroups.protocols.pbcast.GMS] 
join_retry_timeout has been deprecated and its value will be ignored
  | 2008-01-28 10:36:22,134 WARN  [org.jgroups.protocols.pbcast.GMS] use_flush 
has been deprecated and its value will be ignored
  | 2008-01-28 10:36:22,134 WARN  [org.jgroups.protocols.pbcast.GMS] 
flush_timeout has been deprecated and its value will be ignored
  | 2008-01-28 10:36:22,134 WARN  [org.jgroups.protocols.FRAG2] down_thread was 
deprecated and is ignored
  | 2008-01-28 10:36:22,134 WARN  [org.jgroups.protocols.FRAG2] up_thread was 
deprecated and is ignored
  | 2008-01-28 10:36:22,144 WARN  [org.jgroups.protocols.pbcast.STATE_TRANSFER] 
down_thread was deprecated and is ignored
  | 2008-01-28 10:36:22,144 WARN  [org.jgroups.protocols.pbcast.STATE_TRANSFER] 
up_thread was deprecated and is ignored
  | 2008-01-28 10:36:22,144 WARN  [org.jgroups.protocols.pbcast.STATE_TRANSFER] 
use_flush has been deprecated and its value will be ignored
  | 2008-01-28 10:36:22,144 WARN  [org.jgroups.protocols.pbcast.STATE_TRANSFER] 
flush_timeout has been deprecated and its value will be ignored
  | 2008-01-28 10:36:22,154 WARN  [org.jgroups.protocols.pbcast.FLUSH] 
down_thread was deprecated and is ignored
  | 2008-01-28 10:36:22,154 WARN  [org.jgroups.protocols.pbcast.FLUSH] 
up_thread was deprecated and is ignored
  | 2008-01-28 10:36:22,214 WARN  [org.jgroups.protocols.pbcast.FLUSH] 
auto_flush_conf has been deprecated and its value will be ignored
  | 2008-01-28 10:36:22,254 WARN  [org.jgroups.protocols.TCP] down_thread was 
deprecated and is ignored
  | 2008-01-28 10:36:22,254 WARN  [org.jgroups.protocols.TCP] up_thread was 
deprecated and is ignored
  | 2008-01-28 10:36:22,264 WARN  [org.jgroups.protocols.TCP] Attribute 
use_outgoing_packet_handler has been deprecated and is ignored
  | 2008-01-28 10:36:22,274 WARN  [org.jgroups.protocols.MERGE2] down_thread 
was deprecated and is ignored
  | 2008-01-28 10:36:22,274 WARN  [org.jgroups.protocols.MERGE2] up_thread was 
deprecated and is ignored
  | 2008-01-28 10:36:22,274 WARN  [org.jgroups.protocols.FD_SOCK] down_thread 
was deprecated and is ignored
  | 2008-01-28 10:36:22,274 WARN  [org.jgroups.protocols.FD_SOCK] up_thread was 
deprecated and is ignored
  | 2008-01-28 10:36:22,284 WARN  [org.jgroups.protocols.VERIFY_SUSPECT] 
down_thread was deprecated and is ignored
  | 2008-01-28 10:36:22,284 WARN  

[jboss-user] [JBossWS] - Requirements for JBWS-1813 ?

2008-01-26 Thread Juergen.Zimmermann
Am I correct that JBWS-1813 requires both JBossWS 2.0.3 and JBossAS 4.2.3 ?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4123807#4123807

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4123807
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - JBossAS 4.2.3: Will it ship on Feb. 29 ?

2008-01-26 Thread Juergen.Zimmermann
http://jira.jboss.com/jira/browse/JBAS?report=com.atlassian.jira.plugin.system.project:roadmap-panel
 shows that JBossAS 4.2.3 will ship on Feb 29. Can I rely on this date?

I need the fixes for
http://jira.jboss.org/jira/browse/JBAS-4852
http://jira.jboss.org/jira/browse/JBAS-5149

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4123810#4123810

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4123810
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - JBossWS native 2.0.3

2008-01-25 Thread Juergen.Zimmermann
I just downloaded the JARs from http://repository.jboss.com/jboss/jbossws/ and 
copied them to my JBoss installation in client, lib/endorsed, and 
server/default/deploy/jbossws.sar
(plus unzipping the scripts in bin/)

Good news: each of my web services is still working as expected

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4123422#4123422

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4123422
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Migration of SAR files from 4.2.2 to 5.0

2007-12-21 Thread Juergen.Zimmermann
Can SAR archives still be used without any changes?
Or is there any migration (or replacement?) necessary when using JBoss 5 ?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4114955#4114955

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4114955
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - How to migrate to JBossAS 5.0.0beta3 ?

2007-12-21 Thread Juergen.Zimmermann
The release notes of JBossAS 5.0.0beta3 are saying:
anonymous wrote : jboss-service.xml - legacy static mbeans for compatibility

In my app I have a SAR archive containing META-INF/jboss-service.xml. How do I 
migrate resp. replace this contents?
?xml version=1.0 ?
  | server
  | mbean code=org.jboss.mq.server.jmx.Queue
  |name=jboss.mq.destination:service=Queue,name=marketing
  | depends optional-attribute-name=DestinationManager
  | jboss.mq:service=DestinationManager
  | /depends
  | /mbean
  | mbean code=org.jboss.mq.server.jmx.Topic
  |name=jboss.mq.destination:service=Topic,name=kunden
  | depends optional-attribute-name=DestinationManager
  | jboss.mq:service=DestinationManager
  | /depends
  | /mbean
  | /server

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4115156#4115156

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4115156
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - EAR project looses dependencies

2007-12-15 Thread Juergen.Zimmermann
WTP 2.0.1 has a bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=205004 so 
that an EAR project looses its dependencies on e.g. EJB modules.

Always resetting the dependencies is a little bit annoying. I'd like to upgrade 
WTP to the latest maintenance build. Are there any experiences in using a WTP 
2.0.2 maintenance build instead of 2.0.1 ?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4113198#4113198

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4113198
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - JBoss 4.2.2 doesn't work with the latest version of JSF RI :

2007-12-09 Thread Juergen.Zimmermann
As indicated at http://jira.jboss.org/jira/browse/JBAS-5063:

JBossAS 4.2.2 doesn't work with the latest version of JSF RI :-(

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4111497#4111497

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4111497
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Which version of JAX-WS ?

2007-12-05 Thread Juergen.Zimmermann
Which version of JAX-WS is used by
a) JBossWS 2.0.1
b) JBossWS 2.0.1SP2  [JBoss 4.2.2]
c) JBossWS 2.0.2

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4110706#4110706

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4110706
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: Bad experience with JBossAS tools

2007-12-03 Thread Juergen.Zimmermann
Thank you very much, Max! I downloaded the nightly build as of Nov, 30 and will 
let you know how it works

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4109869#4109869

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109869
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Bad experience with JBossAS tools

2007-11-30 Thread Juergen.Zimmermann
As described at http://jira.jboss.org/jira/browse/JBIDE-1377 by screenshots and 
log entries the deployment process with JBossAS Tools is a nightmare. I'm 
absolutely happy with Hibernate Tools, RichFaces VPE, and the Project Archives 
of JBossAS Tools. However, the fact that my Eclipse configuration gets 
corrupted on an almost regular base is a nightmare, especially when the whole 
workspace has to be deleted.

Regarding deployment I stepped back to the WTP plugin and hope that JBoss Tools 
2.0.1 will fix this annoying bug as indicated by the url above.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4109397#4109397

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109397
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - 2.0CR1: in November or December or January?

2007-11-05 Thread Juergen.Zimmermann
Is there any estimation when the CR1 will be available?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4102091#4102091

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4102091
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - 5.0beta3: When?

2007-11-04 Thread Juergen.Zimmermann
Is there an *approximate* date when 5.0beta3 will be available, e.g. beginning 
of Dec. or middle of Jan.?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4101664#4101664

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4101664
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Project archives: how to attach .sar to .ear

2007-10-11 Thread Juergen.Zimmermann
So far I know how to create a .sar file via the Project archives perspective 
and the options New archive and New fileset.

Now I want to attach such a .sar file to my (exploded) .ear
What are the the necessary steps? Any hint is appreciated!

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4094041#4094041

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4094041
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - 2.0.1SP1: When?

2007-09-29 Thread Juergen.Zimmermann
http://repository.jboss.com/jboss/jbossws/2.0.1.SP1 shows some jars for 
2.0.1SP1.

However, at http://labs.jboss.com/jbossws/downloads there is no distribution, 
yet.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4089952#4089952

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4089952
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - 4.2.2CR ?

2007-09-29 Thread Juergen.Zimmermann
The JBossAS roadmap shows that 70 of 80 issues have been resolved for 
4.2.2GA. Will a CR be available before GA?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4089955#4089955

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4089955
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Packaging Archives ?

2007-08-20 Thread Juergen.Zimmermann
Eclipse's preferences options contain this entry:
JBoss Tools - Packaging Archives

Where can I found some info about the functionality of Packaging Archives? 
Any hint is appreciated.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4075878#4075878

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4075878
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: JBoss 4.0.x migration to 4.2.x

2007-08-03 Thread Juergen.Zimmermann
I updated my JBoss 4.2.1 with JBossWS 2.0 and things are working fine.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4070402#4070402

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4070402
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: JBoss 2.0: Specifying SOAP 1.2 for WSProvideTask ?

2007-07-24 Thread Juergen.Zimmermann
I specified the SOAPBinding in the EJB3 stateless session bean as follows:

...
  | import static javax.xml.ws.soap.SOAPBinding.SOAP12HTTP_BINDING;
  | ...
  | @WebService(name=Kundenverwaltung,
  |  targetNamespace=http://ws.hska.de/kundenverwaltung;,
  |  serviceName=KundenverwaltungService)
  | @BindingType(SOAP12HTTP_BINDING)
  | 
  | @Stateless
  | @Remote(KundenverwaltungService.class)
  | @RolesAllowed(ROLLE_MITARBEITER)
  | 
  | @WebContext(contextRoot=/hska/KundenverwaltungService,
  | urlPattern=/*,
  | authMethod=BASIC,
  | transportGuarantee=NONE)
  | @SecurityDomain(hska)
  | @EndpointConfig(configName=Standard WSSecurity Endpoint)
  | public class KundenverwaltungServiceBean implements KundenverwaltungService 
{...

The generated WSDL looks as follows:
...
  |  binding name='KundenverwaltungBinding' type='tns:Kundenverwaltung'
  |   soap:binding style='document' 
transport='http://schemas.xmlsoap.org/soap/http'/
  |   operation ...

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4066909#4066909

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4066909
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - JBoss 4.4.0

2007-07-20 Thread Juergen.Zimmermann
At http://jira.jboss.com/jira/secure/BrowseProject.jspa?id=10030subset=-1I saw 
that there will be JBoss 4.4.0.

What will be the highlights of 4.4.0, e.g. in comparison with 4.2.1?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4066228#4066228

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4066228
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - wsse.keystore: How to create?

2007-07-16 Thread Juergen.Zimmermann
I extended my app with WS-Security and signatures. Using wsse.keystore and 
wsse.truststore from the JBossWS examples works fine.

However, I don't know how to create my own keystore and truststore. I tried 
these commands -- without success. Any hint is appreciated!

keytool -genkeypair -alias wsse -keyalg RSA -keysize 2048 -sigalg SHA1withRSA 
-dname CN=... -keypass jbossws -storetype JKS -keystore testKeystore.jks 
-storepass jbossws -v
  | 
  | keytool -exportcert -file test.cer -alias wsse -storetype JKS -keystore 
testKeystore.jks -storepass jbossws -v
  | 
  | keytool -importcert -alias wsse -file test.cer -keypass jbossws -noprompt 
-storetype JKS -keystore testTruststore.jks -storepass jbossws -v

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4064447#4064447

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064447
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: wsse.keystore: How to create?

2007-07-16 Thread Juergen.Zimmermann
Solved:

-exportcert additionally needs -rfc
-importcert additionally needs -trustcacerts

BTW, the options -genkeypair, -exportcert, -importcert are named according JDK 
6.0

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4064557#4064557

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4064557
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - JBoss 2.0: Specifying SOAP 1.2 for WSProvideTask ?

2007-07-11 Thread Juergen.Zimmermann
How do I specify that a SOAP 1.2 binding should be generated by the ANT task 
WSProvideTask?

IMHO in the wsdl file's  section there should be:soap12:binding 
style=document transport=http://www.w3.org/2003/05/soap/bindings/HTTP//

instead of:soap:binding style=document 
transport=http://schemas.xmlsoap.org/soap/http/

Any hint is appreciated!

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4063151#4063151

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4063151
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - JBossWS 2.0 throws WebServiceException: Error creating JAXBC

2007-07-10 Thread Juergen.Zimmermann
I updated my JBoss 4.2 installation to JBossWS 2.0. Only minor modifications 
where necessary for ANT build.xml files (JARs changed regarding classpath, 
classes for ANT tasks changed).

However, if I run my JBossWS clients I get this stacktrace. What's going on? 
Any hint is appreciated! When testing with the generic WS test client of the 
Eclipse plugin WTP everything works fine.



java.lang.ExceptionInInitializerError
  | at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
  | at java.lang.Class.newInstance0(Class.java:355)
  | at java.lang.Class.newInstance(Class.java:308)
  | at javax.xml.ws.spi.FactoryFinder.newInstance(FactoryFinder.java:36)
  | at javax.xml.ws.spi.FactoryFinder.find(FactoryFinder.java:95)
  | at javax.xml.ws.spi.Provider.provider(Provider.java:76)
  | at javax.xml.ws.Service.(Service.java:57)
  | at de.hska.wsgen.KundenverwaltungService.(KundenverwaltungService.java:41)
  | at 
de.hska.test.WebServicesJBossWSTest.setupProxy(WebServicesJBossWSTest.java:44)
  | Caused by: javax.xml.ws.WebServiceException: Error creating JAXBContext for 
W3CEndpointReference. 
  | at com.sun.xml.ws.spi.ProviderImpl.getEPRJaxbContext(ProviderImpl.java:188)
  | at com.sun.xml.ws.spi.ProviderImpl.(ProviderImpl.java:65)
  | Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 2 
counts of IllegalAnnotationExceptions
  | Two classes have the same XML type name address. Use @XmlType.name and 
@XmlType.namespace to assign different names to them.
  | this problem is related to the following location:
  | at com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Address
  | at public 
com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Address 
com.sun.xml.ws.developer.MemberSubmissionEndpointReference.addr
  | at com.sun.xml.ws.developer.MemberSubmissionEndpointReference
  | this problem is related to the following location:
  | at javax.xml.ws.wsaddressing.W3CEndpointReference$Address
  | at private javax.xml.ws.wsaddressing.W3CEndpointReference$Address 
javax.xml.ws.wsaddressing.W3CEndpointReference.address
  | at javax.xml.ws.wsaddressing.W3CEndpointReference
  | Two classes have the same XML type name elements. Use @XmlType.name and 
@XmlType.namespace to assign different names to them.
  | this problem is related to the following location:
  | at com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Elements
  | at public 
com.sun.xml.ws.developer.MemberSubmissionEndpointReference$Elements 
com.sun.xml.ws.developer.MemberSubmissionEndpointReference.referenceProperties
  | at com.sun.xml.ws.developer.MemberSubmissionEndpointReference
  | this problem is related to the following location:
  | at javax.xml.ws.wsaddressing.W3CEndpointReference$Elements
  | at private javax.xml.ws.wsaddressing.W3CEndpointReference$Elements 
javax.xml.ws.wsaddressing.W3CEndpointReference.referenceParameters
  | at javax.xml.ws.wsaddressing.W3CEndpointReference
  | 
  | at 
com.sun.xml.bind.v2.runtime.IllegalAnnotationsException$Builder.check(IllegalAnnotationsException.java:66)
  | at 
com.sun.xml.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:422)
  | at com.sun.xml.bind.v2.runtime.JAXBContextImpl.(JAXBContextImpl.java:270)
  | at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:103)
  | at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:81)
  | at javax.xml.bind.ContextFinder.newInstance(ContextFinder.java:210)
  | at javax.xml.bind.ContextFinder.find(ContextFinder.java:366)
  | at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:574)
  | at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:522)
  | at com.sun.xml.ws.spi.ProviderImpl.getEPRJaxbContext(ProviderImpl.java:186)

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4062337#4062337

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062337
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


  1   2   >