[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=bb&op=viewtopic&p=4269113#4269113 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4269113 ___ jboss-user mailing

[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=bb&op=viewtopic&p=4266918#4266918 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4266918 ___ jboss-user mailing l

[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=bb&op=viewtopic&p=4266914#4266914 Reply to the post : http://www.jboss.org/index.html

[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.Co

[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=bb&op=viewtopic&p=4235907#4235907 I found these 3 steps by Ales Justin: (1) Get CL for the class (2

[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=bb&op=viewtopic&p=4266064#4266064 Repl

[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 | pub

[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 loo

[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=bb&op=viewtopic&p=4265479#4265479 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4265479 ___ jboss-user mailing list jb

[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=bb&op=viewtopic&p=4265403#426540

[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=bb&op=viewtopic&p=4263593#4263593 Reply to the post : http://www.jboss.org/index.html?mod

[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=true&pid=10020&fixfor=12313491 . E.g. "XML catalog not complete for JBossAS 5.1" https://jira.jboss.org/jira/browse/JBIDE-5030 View the original post

[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=bb&op=viewtopic&p=4256217#4256217 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4256217 ___ jboss-user mailing list jboss-use

[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=bb&op=viewtopic&p=4256199 It would be helpful to get a hint how JBossTools are deploying an EAR file for J

[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=bb&op=viewtopic&p=4254676#4254676 Reply to the post : http://www.jboss.org/index.htm

[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=bb&op=viewtopic&p=4254483#4254483 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4254483 ___ jboss-user mailin

[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=bb&op=viewtopic&p=4239371#4239371 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4239371 __

[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

[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

[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=bb&op=viewtopic&p=4225515#4225515 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4225515 __

[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=bb&op=viewtopic&p=4221705#4221705 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mo

[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); | | Deployment

[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=bb&op=viewtopic&p=4215775#4215775 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4215775 ___ jboss-user mailing

[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=bb&op=viewtopic&p=4215696#4215696 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mo

[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=bb&op=viewtopic&p=4215659#4215659 Reply to the post : http://www.jboss.org/index.html?modu

[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=bb&op=viewtopic&p=4215574#4215574

[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=bb&op=viewtopic&p=4214804#4214804 Reply to the post : http://www.jboss.org/index.html?mod

[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=bb&op=viewtopic&p=4214750#4214750 Reply to the post : http://www.jboss.org/index.html?module

[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: | | | jboss.messaging:service=ServerPeer | | jboss.messaging

[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.g

[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=bb&op=viewtopic&p=4208095#4208095 Reply to the post : http://www.jboss.com/index.ht

[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=bb&op=viewtopic&t=149712 However, there is no reaction. Should I open a JIRA ticket? View the original post : http://www.jboss.com/index.html?module=bb&op=view

[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: | | | | jboss.messaging:service=ServerPeer | | jboss.me

[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.la

[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: | | | | | | jboss.messaging:service=PostOffice | | | | | | | jboss.messaging:service=PostOff

[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 jboss.messaging:service=PostOffice | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4205776#42

[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: | | | | jboss.messaging:service=ServerPeer | | jboss.messaging:service=PostOffice | | How do I convert it into e.g. messaging-jboss-beans

[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=bb&op=viewtopic&p=4202294#4202294 Reply to the post

[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=bb&op=viewtopic&p=4199033#4199033 Alesj mentions that a *NEW* ProfileService will be developed View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4199051#4199051 Reply to the post : http://www.jboss.com/index.html?module=

[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?mod

[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=bb&op

[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=bb&op=viewtopic&p=4197808#4197808 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4197808

[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=bb&op=viewtopic&p=4196382#4196382 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4196382

[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=bb&op=viewtopic&p=4190407#4190407 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4190407 _

[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.htm

[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=bb&op=viewtopic&p=4188438#4188438 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4188438

[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=bb&op=viewtopic&p=4184008#4184008 Reply to the post : http://www.jboss.com/index.html?module=bb&op=pos

[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=bb&op=viewtopic&p=4180898#4180898 Reply to the post : http://www.jboss.

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

2008-09-22 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=bb&op=viewtopic&p=4178181#4178181 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4178181 __

[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=bb&op=viewtopic&p=4178087#4178087 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[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=bb&op=viewtopic&p=4165500#4165500 Reply to the post : http://www.jboss.com/index.html?mo

[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=bb&op=viewtopic&p=4165292#4165292 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4165292

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

2008-07-07 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,

[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=bb&op=viewtopic&p=4162912#4162912 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4162912 ___ jboss-user mailing lis

[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(Bes

[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): | http://www.jboss.org/j2ee/dtd/jboss-app_5_0.dtd";> | | | | hska.sar | | | View the original post : http://www

[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=bb&op=viewtopic&p=4162468#4162468 Reply to the post : http://w

[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

[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=bb&op=viewtopic

[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.createPas

[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=bb&op=viewtopic&p=4160734#4160734 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4160734 ___

[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=bb&op=viewtopic&p=4148541#4148541 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4148541 ___ jbos

[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

[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=bb&op=viewtopic&p=4148136#4148136 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=

[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.Se

[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=bb&op=viewtopic&

[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=bb&op=viewtopic&p=4135171#4135171 Reply to the post : http://www.jboss.com/index.html?module=bb

[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=bb&op=viewtopic&p=4129391#4129391 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4129391 __

[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=bb&op=viewtopic&p=4125836#4125836 Reply to the post : http

[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=bb&op=viewtopic&p=4125552#4125552 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4125552 ___ jboss-user ma

[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/i

[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/i

[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.getLo

[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=bb&op=view

[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 cate

[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=bb&op=viewtopic&p=4124483#4124483 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4124483 __

[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 dep

[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 origin

[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=bb&op=viewtopic&p=4123807#4123807 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4123807 ___

[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 origin

[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? | | | |

[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=bb&op=viewtopic&p=4114955#4114955 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[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 W

[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=bb&op=viewtopic&p=4111497#4111497 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[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=bb&op=viewtopic&p=4110706#4110706 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4110706

[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=bb&op=viewtopic&p=4109869#4109869 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4109

[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 configurati

[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=bb&op=viewtopic&p=4102091#4102091 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4102091 ___

[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=bb&op=viewtopic&p=4101664#4101664 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=

[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/in

[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=bb&op=viewtopic&p=4089955#4089955 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=rep

[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=bb&op=viewtopic&p=4089952#4089952 Reply to the post : http://ww

[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=bb&op=viewtopic&p=4075878#4075878 Reply to t

[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=bb&op=viewtopic&p=4070402#4070402 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070402

[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="

[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=10030&subset=-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=bb&op=viewtopic&p=4066228#4066228 Reply to the po

[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=bb&op=viewtopic&p=4064557#4064557 Reply to the post : ht

[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 wss

[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:http://www.w3.org/2003/05/soap/bindings/HTTP/"/> instead of:http://schemas.xmlsoap.org/soap/http"/> Any hint is appreciated! View the original post : ht

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

2007-07-10 Thread Juergen.Zimmermann
Soved: The endorsed dir wasn't set to $JBOSS_HOME/lib/endorsed View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4062384#4062384 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4062384 ___

  1   2   >