Search:

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

Page 1 of 5 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    1
    Views
    927

    Advising not managed Spring beans

    Hi all,
    is there a way to advise not managed Spring beans?
    I heard that aspects are woven in three way: compile time, classload time and runtime.
    Do I use another compiler or classloader to...
  2. Thread: intercept result

    by Ghed
    Replies
    4
    Views
    704

    I found it! Grazie

    I found it!
    Grazie
  3. Thread: intercept result

    by Ghed
    Replies
    4
    Views
    704

    Grande Enrico! ;) I've read the reference before...

    Grande Enrico! ;)
    I've read the reference before to post the previouse one, but I didn't find nothing about it!
    Where can I find it?
    Thanks
  4. Thread: intercept result

    by Ghed
    Replies
    4
    Views
    704

    intercept result

    Hi All!

    I am going to integrate Spring AOP in a project of mine.
    My question is: how can I intercept the return value of a "foo"method and pass
    it as parameter for the method "afterFoo"?
    e.g....
  5. Replies
    2
    Views
    710

    As you said, it was a set up issue. I fixed it....

    As you said, it was a set up issue.
    I fixed it.

    Thanks
  6. Replies
    2
    Views
    710

    Spring Security and Load balancing

    Hi!

    I have a web app secured with Spring Security and it works well. Now I am trying to deploy it in 2 tomcat instances and to balance them with Apache.
    There is an issue! Here is the operation...
  7. Replies
    2
    Views
    1,461

    Any ideas? And one more question: can I use a...

    Any ideas?

    And one more question: can I use a local WSDL? e.g. Can I pack the WSDL document in a jar of client?
  8. Replies
    2
    Views
    1,461

    JaxWsPortProxyFactoryBean and https

    Hi,

    I am trying to consume an existing web service using JaxWsPortProxyFactoryBean.
    It works, but now I need to use https.
    At the moment I switched the property "wsdlDocumentUrl" to https:

    ...
  9. I've done this. FYI, this is the right code: ...

    I've done this.
    FYI, this is the right code:

    ${sessionScope["SPRING_SECURITY_LAST_EXCEPTION"].message}

    Bye :)
  10. Custom login page: how to show authentication exception

    Hi all,

    I am doing a custom login page, so I've already set the

    <form-login login-page="/login.jsp" />

    At the moment the page is not able to show authentication exception, so,
    I've tried to...
  11. Replies
    2
    Views
    617

    MMmm, I don't agree with you. I think that...

    MMmm, I don't agree with you.
    I think that you've always define the multipart resolver, also with annotations.

    Anyway, I have had defined the multipart resolver.
    The trick is this:

    Actually...
  12. Replies
    2
    Views
    617

    File Upload without annotations

    Hi!

    How can I upload a file without annotated controllers?
    With annotated controller all works nicely, but without I can't get the parameter "file". Why?
    It seems that with annotations the...
  13. Replies
    3
    Views
    617

    Hi Enrico, thanks for you quick reply! What DWR...

    Hi Enrico, thanks for you quick reply!
    What DWR version are you using? is the 3.0 rc1?

    It seems that is simplier to reference DWR beans with annotations than that using the dwr:remote or...
  14. Replies
    3
    Views
    617

    Ajax library "de facto" integration

    Hi all!
    Does it exist an official or "de facto" library well integrated with Spring?

    I used to integrate DWR in my apps, but DWR seems to be stuck to version 2.0 so I am looking for something...
  15. Thread: intercept-url tag

    by Ghed
    Replies
    2
    Views
    725

    Perfect! AuthenticatedVoter class is what I was...

    Perfect!
    AuthenticatedVoter class is what I was looking for! And now, thanks to you, I understood better the task of Voter classes.
    The usage of tags simplifies the configuration .. but, I need to...
  16. Thread: intercept-url tag

    by Ghed
    Replies
    2
    Views
    725

    intercept-url tag

    Hi ALL!

    One simple question: where do I find info about this tag/bean?
    What kind of bean does it create?
    I want to know which kind of property can I set, such as:
    IS_AUTHENTICATED_REMEMBERED,...
  17. Thread: GWT Integration

    by Ghed
    Replies
    0
    Views
    378

    GWT Integration

    Hi all!

    I wish to switch from DWR to GWT because DWR project seems inactive for a long time.

    So, I am planning to use a "standardized" AJAX solution and GWT seems to be the best.

    I have some...
  18. Replies
    10
    Views
    908

    Ah ok, now is clear. Now I guess that splitting...

    Ah ok, now is clear.
    Now I guess that splitting the ROOT loaded by ContextLoaderListener and placing the tx:annotation-driven in one and the service in another has the behavoiur that I expect.
    ...
  19. Replies
    10
    Views
    908

    Yeah, you got it. My service bean was in the...

    Yeah, you got it.
    My service bean was in the dispatcherservlet file and the tx:annotation-driven in the applicationContext.xml.
    Why do you name parent/child context? I have a different vision! I...
  20. Replies
    10
    Views
    908

    Hi Marteen! Finally I found out the isse .. and...

    Hi Marteen!
    Finally I found out the isse .. and listen man, could it be a bug?

    If I place the service bean in the file with the <tx:annotation-driven> tag all goes ok, while if I place it in...
  21. Replies
    10
    Views
    908

    how can I check if I have 2 instances for my...

    how can I check if I have 2 instances for my service? are you telling that I have 2 instances, right?
  22. Replies
    10
    Views
    908

    Hi Marten, I am sure that I am using only one...

    Hi Marten,

    I am sure that I am using only one istance, because:



    <bean id="dwrTestController" class="com.movenda.omadm.web.DwrTestController">

    <property name="groupService"...
  23. Replies
    10
    Views
    908

    Problems with transactions!

    Hi All!

    I successfully deployed my new web app with Spring 2.5 + Hibernate 3 support.
    The main issue is that I cannot delete or update, while I can read data.

    I tried to investigate and it...
  24. Replies
    2
    Views
    1,051

    is that all? I am looking for some examples...

    is that all?

    I am looking for some examples ...

    I found this book:
    "The Definitive Guide to GigaSpaces: Scaling Spring for the Enterprise"

    Does anyone know it?
    What do I need to scale...
  25. Replies
    2
    Views
    1,051

    Spring and scalability

    Hi All!

    I am spending a few trying to understand how migrate an ejb based app to a spring based one.
    Suppose I have an EJB for business logic: the first step is to rewrite it as a POJO managed...
Results 1 to 25 of 101
Page 1 of 5 1 2 3 4