I'm having trouble getting @Transactional to work in OC4J with Hibernate. I get the error "javax.persistence.TransactionRequiredException: no transaction is in progress"
Is there anyone who can...
Type: Posts; User: glote; Keyword(s):
I'm having trouble getting @Transactional to work in OC4J with Hibernate. I get the error "javax.persistence.TransactionRequiredException: no transaction is in progress"
Is there anyone who can...
Pitchfork is Weblogic specific, for other servers use Springs JEE interceptor
http://static.springsource.org/spring/docs/2.5.x/reference/ejb.html#ejb-implementation-ejb3
We went with the standard spring interceptor and that works well enough for us.
A few nitpicks, none of which are Springs fault ;)
- hibernate JPA takes "forever" to start
- kodo/openjpa...
Hi,
We have a jmstemplate that post messages to MQ, but sometimes we loose contact with the MQ Queuemanger and after that every sends fails...
Is there a way to reconnect/reinitialize the...
It seems that pitchfork-1.0-m5 is not compatible with Spring 2.5.x due to changes in Spring APIs between version 2.0.x and 2.5.x.
Is there any plans for updating Pitchfork for Spring 2.5.x?
Hi,
I'm trying to use Spring 2.5.6 with pitchfork 1.0-m5 on wls 10.3, but my MDB's onMessage() throws a java.lang.AbstractMethodError:...
Hi,
I'm getting a deadlock in my standalone springapp.
I've attached my sourcefiles that's mentiond in the stacktraces, and here is a snippet of my app.xml:
<bean...
I've looked at the logfiles and there's no exception being thrown, but no messages are received. A restart of the app fixes the problem for awhile.
Typical log file entries are:
08:22:45.670...
We have a DefaultMessageListenerContainer that's listening to a queue on a JCaps server. when left idle for some time (overnight) the listeningcontainer stops receiving messages and requires a...
After a lot of fiddeling with spring config I've finally found a config that makes the DefaultMessageListenerContainer work.
<!-- and this is the message listener container -->
<bean...
I've testerd a little bit more and checked that I can put messages on and activemq queue and receive messages off the queue using the standard Jmsapi. So my activemq setup seems to be OK...
But...
Hi,
I have some problem using a MDP and activemq. I have set up a ListeningContainer that I start in a standalone process and I can send messages to the queue that I'm listening to from another...
I finally figured out what was wrong.
The DB2 driver correctly maintains that wrapperclasses around a String object isn't a instance of String in itself and therefore I needed to call toString on...
I'm using DB2/Zos on a mainframe, my jdbcdriver is fairly old, and there's no meta-inf to tell which version it is. There is a file called bldlevel in the db2java.jar that contains the following...
Hi,
I'm having trouble inserting a CLOB into db2 using the RDBMS operation. I get a exception:
org.springframework.jdbc.UncategorizedSQLException: PreparedStatementCallback; uncategorized...
The spring-2.0.2.jar (I'm using a version that maven downloaded) is packaged in the ear lib directory and my ejbjar has this manifest:
Manifest-Version: 1.0
Class-Path: /lib/antlr-2.7.5H3.jar...
I'm using WLS 8.1 sp4
Gaute
Hi,
I just dropped spring.jar and spring spring-mock.jar in place of our existing spring 1.2.8 jars and tried running our testsuite.
We have Stateless session beans that extendes...