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
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
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
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
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
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
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 (
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
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
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.
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
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
12 matches
Mail list logo