Hello,
I solved a part of my problem.
Now, i proxified ehcache and task annotation-driven interception on target classe instead of interface
<ehcache:annotation-driven...
Type: Posts; User: pilerou; Keyword(s):
Hello,
I solved a part of my problem.
Now, i proxified ehcache and task annotation-driven interception on target classe instead of interface
<ehcache:annotation-driven...
I commented this configuration :
<!-- <task:annotation-driven executor="businessAsyncThreadExecutor"/> -->
<!-- <task:executor id="businessAsyncThreadExecutor" pool-size="5"/> -->
and my...
Hi,
I'm using spring configuration that :
- intercepts some methods using @Async annotations
- intercepts the same methods using a RegexpMethodPointcutAdvisor using an home made interceptor...
My component already exists. Here is a current usecase :
- in my spring configuration, i have an interceptor around different kind of layers (for example : *Server, * ServiceImpl, *Client, *Dao)...
Hi Amol and Oleg,
Thanks for your responses.
I have a monitoring component in my architecture. My architure uses Spring Integration as an option.
I use Spring Integration for specific needs such...
Hello,
In my application, i have few information in threadlocal variables of the main thread. I would like to access those variable in spring integration operations.
For example, in my...
Hi,
Il would like to use Spring WS and JMS capabilities in order to :
- make my client call an ActiveMQ server, send a message to it, continue the process
- then the server consume the message...
Hello,
I would like to do have XA transaction on my applications and my opensource project.
My architecture is composed by many webservices calling each others and webapps or portlets.
My aim...
Hi,
I've got the same problem.
I'm using Maven 3.
Which repository should we use ?
Hi Mark,
I'm using prototype beans in vaadin applications.
I want my pages to be loaded by spring but Vaadin needs a unique instance of those bean for each context.
Keeping it in session is...
Hello,
My application is using beans with scope prototype.
When the user is connecting, a main context bean is built and all injections are done.
Depending on the number of objects the main...
I use WSDL generation using this maven artefact.
Here are some problems i already met with other technologies (no Spring ws) remote webservices :
- SOAP Action is required by some remote...
It should work with wss4j interceptor but i never achieve to make it work.
With Pox or another message factory.
Is there anyone who did it with interceptors as Spring WS suggests to do it ?
Is...
Do your trustStore and your jre cacerts have last verisign certificates ?
I had a problem with a provider since first days of july because Verisign added new certificates you have to add in your...
actually, i'm not sure it's the better way to do it (using deprecated librairies and old httpclient (3.1 instead of 4.1) is not very good solution for the future.
I was hurried to have something...
It's not really the way Spring WS should work.
You want to use a a "contract last" method whereas Spring WS is made for "contract first".
that is to say : you should do your xsd contract before...
i tried to do it as defined on this page http://static.springsource.org/spring-ws/site/reference/html/security.html.
I used wss interceptor. Unfortunately, when i logged ssl debug, it seemed that my...
Hi,
Here is the code, i made :
https://itcb.svn.sourceforge.net/svnroot/itcb/common/branches/0.1.0-DEV-BRANCH/common-client/src/main/java/net/sf/itcb/common/client/aop/ProviderInterceptor.java
...
It's OK i managed to do it with a generic way.
I'll post the code soon.
Hi,
A provider gave me his wsdl. I am working with Spring WS for internal communication and, for now, we used CXF... for calling providers.
I would like to homogenize by using Spring WS as...
I did it and It works.
If someone needs it, i already added a post on ehcache forums :
http://forums.terracotta.org/forums/posts/list/5618.page#27960
The source code is here :...
After looking at EhCacheManagerFactoryBean, it seems it is impossible to define many config files.
I'm looking for writing my own factory using ClassPathXmlApplicationContext instead of resource....
Hello,
EhCacheManagerFactoryBean seems to accept only one file as configLocation.
Is there any way to use many config files ?
I would like to put ehcache config files in each jar i use...