[JBoss-user] [JBossWS] - Re: NoSuchMethodException using JBossWS 1.0.0GA

2006-05-16 Thread tpedone
I copied it into the /lib dir, replacing the one that already exists: JBoss-4.0.4CR2/lib This solved the initial problem I reported. Tim View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3943996#3943996 Reply to the post : http://www.jboss.com/index.html?modu

[JBoss-user] [JBossWS] - Re: NoSuchMethodException using JBossWS 1.0.0GA

2006-05-04 Thread tpedone
Thomas, That fixed that issue but now I've run into another one. I'm getting a class not found exception: | Caused by: java.lang.ClassNotFoundException: com.intuit.spc.oip.messaging.server.interfaces.PublicInterface_getMessages_ResponseStruct | at org.apache.catalina.loader.WebappCla

[JBoss-user] [JBossWS] - NoSuchMethodException using JBossWS 1.0.0GA

2006-05-02 Thread tpedone
I've downloaded and deployed the 1.0.0GA release and am seeing a NoSuchMethodError. Here's a partial stack trace: | java.lang.NoSuchMethodError: org.jboss.xb.binding.metadata.ClassMetaData.setUseNoArgCtor(Ljava/lang/Boolean;)V | at org.jboss.ws.jaxb.SchemaBindingBuilder.processNonArra

[JBoss-user] [JBoss AOP] - Re: DynamicAOP not working with Examples

2006-03-13 Thread tpedone
After trying to get my own aspects to work, I went back to example and noticed that not all the interceptors are working when I re-deploy the jboss-aop.xml. In particular, ExampleSessionBean.getValue() and EarExampleServlet.service() are not intercepted even though they were when I first deploy

[JBoss-user] [JBoss AOP] - Re: DynamicAOP not working with Examples

2006-03-09 Thread tpedone
The example worked when I ran it in the unzipped JBoss distribution with a manually installed EJB3 RC3 installation. So, it appears to only fail when running in an instance installed with the jar installer installing the "all" configuration. View the original post : http://www.jboss.com/index

[JBoss-user] [JBoss AOP] - Re: DynamicAOP not working with Examples

2006-03-09 Thread tpedone
The unzipped version worked. We have been using the installed version. I'll have to try installing EJB3 manually into the unzipped version and see if that works. If so, then we can proceed using that for now. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3

[JBoss-user] [JBoss AOP] - Re: DynamicAOP not working with Examples

2006-03-09 Thread tpedone
OK I tried this on a fresh copy of JBoss 4.0.3SP1 that was simply unzipped to a directory and it worked. I then used the jar installer to install JBoss using the "all" configuration and got the same error as I reported in my original post. In both cases I used the same procedure to update AOP (

[JBoss-user] [JBoss AOP] - Re: DynamicAOP not working with Examples

2006-03-09 Thread tpedone
No I didn't. I just built it. One thing that may be different is that I installed my copy of JBoss using the jar installer since we're using EJB3. I'll try it using the standard JBoss zip distribution and post the results here. Tim View the original post : http://www.jboss.com/index.html?mo

[JBoss-user] [JBoss AOP] - DynamicAOP not working with Examples

2006-03-08 Thread tpedone
I'm using the injboss example to try out DynamicAOP. I startup JBoss with the jboss-aop.xml file in the /server/all/deploy dir. I then drop in the aopexample.ear that was built from the example. The ear deploys and I can see the interceptors print to the console like they are supposed to. I

[JBoss-user] [EJB 3.0] - Re: Hibernate not copying primary key into associated object

2006-02-24 Thread tpedone
Here's the id of the CoreMessagePayload: @Id(generate=GeneratorType.SEQUENCE, generator="SEQ_STORE") @Column(name="MESSAGEID", nullable=false) public Long getId() { return mId; } Notice that it is using the MessageID sequence we had originally defined for the Message.

[JBoss-user] [EJB 3.0] - Re: Hibernate not copying primary key into associated object

2006-02-09 Thread tpedone
Thanks. That worked I had to create an inverse One to One relationship from the CoreMessagePayload to the CoreMessage. Then tell the CoreMessagePayload to use the id of the referenced CoreMessage object. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3922

[JBoss-user] [EJB 3.0] - Hibernate not copying primary key into associated object

2006-02-02 Thread tpedone
I have the following two objects and relationships: CoreMessage->CoreMessagePayload. Here's the relavent snippets of CoreMessage (the id and the payload reference) | @Id(generate=GeneratorType.SEQUENCE, generator="SEQ_STORE") | @Column(name="messageID", nullable=false) | p