[jboss-user] [JBossWS] - Patient is more dead then alive? jax-rpc Handler that is.

2006-09-04 Thread Arno Werr
Hi gents, Here we go. EJB3 with web service annotations | @WebService(name = Test, serviceName = TestService) | @WebServiceRef(name = service/TestService) | @HandlerChain(file = http://localhost/servers/jboss/handlers.xml;, name = ) | @Stateless | public class TestWebService

[jboss-user] [JBoss/Spring Integration] - Re: Is it SpringLifecycleInterceptor or just me?

2006-08-18 Thread Arno Werr
Hi Ales, I have a question for you. Currently in my jboss-spring-jdk5.deployer directory I have the following layout ./spring.jar ./spring-modules-0.5-all.jar ./jboss-spring-jdk5.jar spring.jar is a shiny new jar Manifest-Version: 1.0 Ant-Version: Apache Ant 1.6.5 Created-By: 1.5.0_06-b05 (Sun

[jboss-user] [JBoss/Spring Integration] - Re: JBoss AS started as Windows service Spring deployer

2006-08-18 Thread Arno Werr
I've checked JBoss+Spring installation on Fedora as /etc/init.d service. Everything on my Linux works just fine. No matter - web call or remoting - JBoss is there. Love Linux, I really do... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3966152#3966152 Reply

[jboss-user] [JBoss/Spring Integration] - Re: Is it SpringLifecycleInterceptor or just me?

2006-08-02 Thread Arno Werr
RE: There are two almost similar versions of jboss-spring deployer. One with old InvocationContext, @EJB and the other one with fixed (see http://jboss.org/jbossBlog/blog/bburke/2006/06/02/JBoss_EJB_3_0_Preview_RC8.txt). Right. But available zip download does not have client jars. I need them for

[jboss-user] [JBoss/Spring Integration] - Re: Is it SpringLifecycleInterceptor or just me?

2006-08-02 Thread Arno Werr
Any insight? Found it. I just need to register my own custom editor. | protected void initBinder(HttpServletRequest req, | ServletRequestDataBinder binder) throws Exception { | binder.registerCustomEditor(Date.class, new CustomDateEditor( | new

[jboss-user] [JBoss/Spring Integration] - Re: Is it SpringLifecycleInterceptor or just me?

2006-07-31 Thread Arno Werr
Thank you Ales for your comments and suggestions. I followed your advise and tried to update my JBoss 4.0.4 GA and run it with your Spring integration solution. Unfortunately, my experience in this endeavor is mainly negative. Firstly, I tried to install on my existing JBoss [Zion] 4.0.4.GA

[jboss-user] [JBoss/Spring Integration] - Re: Is it SpringLifecycleInterceptor or just me?

2006-07-31 Thread Arno Werr
Ales, I am reading your article 'Spring and EJB 3.0 in Harmony' Quote: anonymous wrote : | However, one big problem with EJB 3.0 dependency injection is that there's no way of configuring, defining, and injecting plain Java beans. | You can only inject Java EE component types and env-entry

[jboss-user] [JBoss/Spring Integration] - Is it SpringLifecycleInterceptor or just me?

2006-07-29 Thread Arno Werr
The other day I decided to play a little with batch processing on JBoss + Spring EJB3 and all. Created this stateful session bean to force the Entity manager do a batch job for me on remove | @Stateful | @Interceptors(SpringLifecycleInterceptor.class) |

[jboss-user] [JBossWS] - Re: Type Hiererchy

2006-07-28 Thread Arno Werr
In my view what makes sense and what doesn't in the world of JAX-RPC/WS, we shouldn't look at www3c specifications, but rather at Web Services Interoperability Organization's Basic Profile 1.0/1.1. This is the only standard that have been proven in production and is explicitly required by the

[jboss-user] [JBossWS] - Re: WS4EE documentation???

2006-07-27 Thread Arno Werr
RE: So far, all links i've found only discuss 'stateless' web services. Isn't that because only STATELESS session beans should implement SEI, i.e.provide web services? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3961393#3961393 Reply to the post :

[jboss-user] [JBossWS] - Re: Type Hiererchy

2006-07-27 Thread Arno Werr
anonymous wrote : Looking at the WSDL generated for this I dont see Dog or Cat show up anywhere. Is that not valid for web services? Do I need to have separate getAllCats and getAllDogs methods that specify the exact return type? Me neither. Yet I think it's correct. Ask yourself for which

[jboss-user] [EJB 3.0] - Re: Problem using SequenceGenerator

2006-07-27 Thread Arno Werr
Checked my logs. | 2006-07-27 16:09:40,003 DEBUG [org.hibernate.jdbc.ConnectionManager] - opening JDBC connection | 2006-07-27 16:09:40,004 DEBUG [org.hibernate.SQL] - select nextval ('postmaster_sequence') | 2006-07-27 16:09:40,043 DEBUG [org.hibernate.id.SequenceGenerator] - Sequence

[jboss-user] [EJB 3.0] - Re: Problem using SequenceGenerator

2006-07-27 Thread Arno Werr
it looks like the postgres sequence returned 1. But the SequenceHiLoGenerated inserted a value of 50. I guess, it's because initialValue - default - 1 and allocationSize - 50. I have test table along with cabin table and this test table (you know, to test connections in pool) receives the

[jboss-user] [JBossWS] - Is it me, JAX-WS, or JBoss?

2006-07-26 Thread Arno Werr
Hi everybody! I've encountered this issue while trying JPA artifacts with WS on JBoss Release ID: JBoss [Zion] 4.0.4.GA (build: CVSTag=JBoss_4_0_4_GA date=200605151000) Created a very simple entity class inspired by the latest Bill Burk Richard Monson-Haefel Enterprise JavaBeans, 3.0 (Great