Search:

Type: Posts; User: drvillo; Keyword(s):

Page 1 of 2 1 2

Search: Search took 0.06 seconds.

  1. Hi glad you dropped that idea. We managed to...

    Hi

    glad you dropped that idea. We managed to have a working configuration, only to discover that it causes randon deadlocks within IBM's JCA code...

    you don't want to be there, really;)
  2. Replies
    2
    Views
    974

    You can deploy it both as a WAR or EAR app. The...

    You can deploy it both as a WAR or EAR app. The difference with an MDB resides in that you don't configure the consumer parameters through the ejb deployment descriptors, but in your spring context...
  3. JCA style JMS+WAS 6.1 results in thread deadlock

    Hi

    while doing some load testing I am systematically facing a thread deadlock in the consumer threadpool, which causes messages to queue up without being consumed. In particular the thread dump...
  4. For what is worth I circumvented the problem and...

    For what is worth I circumvented the problem and made so that the JNDI lookup is performed by the client code, thus passing the managed object to the code executing in the threadpool. You might want...
  5. Same with JMS

    Strangely enough, today I'm having the same problem...Please bear with me if in my case it does not apply directly to Quartz.

    I'm using Spring JMS to consume messages (configuration follows) and...
  6. Same old stuff (MultiActionController and form submission): is there any way out?

    Hi all

    it seems impossible to me that this is becoming so cumbersome...So I'd rather ask for advice:)

    I have a series of MultiActionController(s) and I have the well known problem of handling...
  7. Combining MVC with AJAX requests: design decisions

    Hi all

    I've been mumbling on this for some time, and I'm not decided on what could work best...
    basically I've a normal Spring MVC app, rendering views with XSLT. Each domain object is grouped...
  8. Nice, thanks. I was going to do it myself but...

    Nice, thanks.
    I was going to do it myself but you've been more efficient;)

    Cheers
    F
  9. I've checked and the offending part is in ...

    I've checked and the offending part is in



    protected void checkOpen() throws SQLException {
    if(_closed) {
    throw new SQLException
    ("Connection " +...
  10. NPE in commons.dbcp with Hibernate, AOP and Quartz

    Hi all

    I'm not sure this is the right place, but I don't quite know to whom this issue might belong (beside me).

    I'm using quite a mix of things here: to make it simple I'm creating stateful...
  11. Mixed AOP styles, how do I define ordering?

    Hi all

    I'm kind of confused with my own setup...

    First the general question:
    how can I define the order of invocation of two around advices?

    More details follow:
    I've implemented a...
  12. Subclassing AbstractTransactionAspect and @AspectJ

    Hi all

    I had the problem of adding aspects to non spring-managed objects. For this reason I've resorted to AspectJProxyFactory and it works like a charm.

    Now, the aspect I needed to apply is...
  13. Replies
    0
    Views
    817

    Can't get data committed

    Hi All

    Realizing that I had autoCommit turned on by default, using dbcp, today I discovered that my transactionManager doesn't really commit too much.

    My set up is the following:



    <bean...
  14. Replies
    1
    Views
    882

    Intercept JDK method calls

    Hi all
    To trace who generates a new thread within a service I'm working on I was thinking of intercepting calls to Thread's constructor, so to log them.

    Nevertheless I haven't been able to think...
  15. Replies
    2
    Views
    1,406

    Hi Do you mean an instance within a pool of...

    Hi

    Do you mean an instance within a pool of consumers of the same type?
    Anyway I'm not too sure on how to do this, I have to accomplish something similar and it seems to me that jmx is the way...
  16. Replies
    6
    Views
    8,457

    Mmh, that's what I understood as well. For the...

    Mmh, that's what I understood as well.
    For the sake of completeness I have found this page in the meantime, maybe it's useful to someone else:
    ...
  17. Replies
    6
    Views
    8,457

    Mmh, I also posted a question about this... I...

    Mmh, I also posted a question about this...
    I understand what Jenks does but what Spring _without_ Jencks offers then? I can write MDP with it, but I don't understand how it deals with pooling....
  18. Replies
    0
    Views
    1,453

    MDP pooling, do I need Jencks?

    Hi there

    I'm considering to refactor a pretty heavily multithreaded service, replacing JSE ThreadPool and BlockingQueue with a lightweight messaging stack.
    I have been looking around for a...
  19. Replies
    1
    Views
    1,069

    solution

    Ok, after digging some more I've found this,
    from http://docs.jboss.org/jbossas/jboss4guide/r4/html/ch7.chapt.html



    So it seems that I'll have to take the next step, which I was saving for...
  20. Replies
    1
    Views
    1,069

    JCA ConnectionFactory lookup problem

    Hi everybody
    This is not strictly an EJB issue but I couldn't find any better forum to post in...

    I've developed a resource adapter, which is deployed under jboss as follows:



    <!--...
  21. There is also this possibility ...

    There is also this possibility

    https://simple-jta.dev.java.net/

    maybe you find it useful...

    cheers
    F
  22. jdbc application through a profiler:memory usage

    Hi there
    I'm not sure whether this is strictly a spring issue or not but here it goes:

    I'm working on a heavily mulithreaded service, that basically inserts data into a database. Due to...
  23. Replies
    4
    Views
    907

    you don't have to do anything. JdbcDaoSupport has...

    you don't have to do anything. JdbcDaoSupport has the dataSource field.
  24. I think the service will have to run relying on...

    I think the service will have to run relying on the file storage type of hsql, at least for the DIY version. nevertheless for the one we will run in house probably we could use other DBMSes. Actually...
  25. Well AFAIK the transaction manager needs the...

    Well AFAIK the transaction manager needs the datasource, and the dao's extend JdbcDaoSupport, requiring a datasource as well.
    So how could I remove this double injection?

    Thanks, this post is...
Results 1 to 25 of 30
Page 1 of 2 1 2