Search:

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

Page 1 of 6 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    6
    Views
    1,455

    I've run into the very same issue. Has anyone...

    I've run into the very same issue. Has anyone been able to figure this one out?

    Thanks,
    Sanjiv
  2. I'm just using the non-tags version for now. ie...

    I'm just using the non-tags version for now. ie regular 'form' delcaration instead of Spring's form:form tag.
  3. autocomplete attribute on SpringMVC tags missing

    I'd like to set the (IE only) autocomplete attribute on forms to off but the Spring form and input tags are missing this attribute. Can it be added? Or is there a workaround for it?

    Thanks,
    Sanjiv
  4. Replies
    25
    Views
    11,119

    David, I dont follow your comment on limiting...

    David,
    I dont follow your comment on limiting application containers that one is able to use when using the Executor? What application container are you referring to? And how is it limiting.

    I'm...
  5. Replies
    25
    Views
    11,119

    I personally think that such assumptions can...

    I personally think that such assumptions can complicate systems. We're talking about sending of email messages and not execution of a computationally and memory intensive process where moving the...
  6. Replies
    25
    Views
    11,119

    You don't need JMS to send an email...

    You don't need JMS to send an email asynchronously. (Infact I'd say that JMS is not appropriate for this use case based on your description). Just send the email in another thread. And if you'd like...
  7. Replies
    9
    Views
    2,384

    Tom, Here's how I did this : Lingo (Spring...

    Tom,
    Here's how I did this :
    Lingo (Spring Remoting) : Passing client credentials to the server
    http://www.jroller.com/page/sjivan?entry=lingo_spring_remoting_passing_client

    You may also be...
  8. Replies
    9
    Views
    1,722

    fyi you can connect to MS Access without creating...

    fyi you can connect to MS Access without creating a DNS :

    http://jroller.com/page/sjivan?entry=dsn_less_jdbc_connection_to
  9. Hotspot must have inlined the code from...

    Hotspot must have inlined the code from getSynchronizations into registerSynchronization.

    Collections.sort(synchs, synchronizationComparator); is being called so the question is why is this call...
  10. I'm on Spring 1.2 for this project. Are you aware...

    I'm on Spring 1.2 for this project. Are you aware of any performance improvements related to this in Spring 2.x?

    Thanks,
    Sanjiv
  11. Yes, I am using a connection pool. In this case...

    Yes, I am using a connection pool. In this case where I'm running within a Hibernate transaction, getConnection() is just returning the active connection for that transaction and not a new connection...
  12. performance issue with DataSourceUtils.getConnection

    I'm using Springs JdbcTemplate to carry out updates / inserts of several rows and when profiling the operation I noticed that the bottleneck was not the query itself but the call to...
  13. Replies
    6
    Views
    11,541

    Here's how I did it :...

    Here's how I did it : http://jroller.com/page/sjivan?entry=embedding_jetty_in_a_spring

    Sanjiv
  14. Replies
    21
    Views
    66,730

    I like Spring MVC but an important piece missing...

    I like Spring MVC but an important piece missing is a MultiActionFormController, which is almost a requirement for complex pages. There's been an issue open for a long time :...
  15. Replies
    9
    Views
    1,990

    Are you closing the Hibernate sessions?

    Are you closing the Hibernate sessions?
  16. Replies
    9
    Views
    1,990

    Try getting a thread dump when your server hangs...

    Try getting a thread dump when your server hangs (Crtl + Break on windows). Then analyze the thread dump to narrow down where the app is hanging.

    Sanjiv
  17. Replies
    3
    Views
    3,939

    Have you taken a look at Lingo Spring remoting....

    Have you taken a look at Lingo Spring remoting. Its very efficient and supports asynchronous calls and remote callbacks.

    Take a look at :

    http://lingo.codehaus.org/...
  18. Based on the stacktrace it like some of the...

    Based on the stacktrace it like some of the Websphere JMS code is not threadsafe.

    Sanjiv
  19. You need to add the jms jar in your weblogic boot...

    You need to add the jms jar in your weblogic boot classpath (by editing startWeblogic.cmd).
  20. Replies
    7
    Views
    2,838

    Oliver, Can you try upgrading to Lingo 1.2.1....

    Oliver,
    Can you try upgrading to Lingo 1.2.1. There was an issue with earlier versions that cased high CPU usage under certain circumstances. (See http://jira.codehaus.org/browse/LINGO-26).

    Sanjiv
  21. Replies
    7
    Views
    2,838

    Have you tried running the sample app on my blog?...

    Have you tried running the sample app on my blog? The methods meant to be asynchronous (those with return type void and which dont throw exceptions) are invoked asynchronously. Can you post your code...
  22. Replies
    1
    Views
    1,201

    HowTo on Ajax based login using Acegi

    I wrote a blog entry on how to create an Ajax based login using Acegi. Here's the URL http://jroller.com/page/sjivan?entry=ajax_based_login_using_aceci

    Let me know if there's interest in...
  23. MultiAction style controllers are very useful for...

    MultiAction style controllers are very useful for form submits. The real issue that SpringMVC lacks a much needed MultiActionFormController.
    ...
  24. Replies
    4
    Views
    2,402

    Try using the same version of the Spring jars on...

    Try using the same version of the Spring jars on your second machine.

    Sanjiv
  25. Replies
    15
    Views
    2,837

    I have written a AsyncProxyFactoryBean (much like...

    I have written a AsyncProxyFactoryBean (much like org.springframework.remoting.rmi.RmiProxyFactoryBean) implementation of Spring Remoting which allows asynchronous in-vm processing of method calls....
Results 1 to 25 of 129
Page 1 of 6 1 2 3 4