Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
4k views

Filters vs Interceptors in Struts 2

What's the difference, really, between filters and interceptors? I realize that interceptors fire before and after an action, recursively, and filters can be configured to fire on actions and on ...
2
votes
1answer
82 views

Simple use of AspectJ in a standalone application

Imagine you have an aspect: @Aspect public class MyAspect { @Pointcut("whatever") public void anyAnnotation() {} @Before("anyAnnotation()") public void anyComponentAdvice(JoinPoint ...
2
votes
2answers
124 views

JEE: Bind some interceptor annotations to a single one

First of all: I want to use JEE not Spring! I have some self defined annotations which are acting as interceptor bindings. I use the annotations on my methods like this: @Logged @Secured ...
2
votes
1answer
226 views

Hibernate Interceptor: How do I override onCollectionUpdate and onCollectionRecreate to not populate my entities with database values?

I am extending org.hibernate.EmptyInterceptor to decrypt and encrypt fields. The goal is to always have in-memory domain objects in a decrypted state, and always have the stored database values in an ...
2
votes
3answers
370 views

Why does audit logging using Hibernate Interceptor hang at SocketInputStream.socketRead0?

This is baffling to me. I have searched numerous forums for clues. In the postFlush method, I open a new hibernate (v. 3.3 - also tried v.3.5) session using a distinct session factory. I use c3p0 ...
2
votes
1answer
1k views

setting no cache for different parts of spring mvc 3 using WebContentInterceptor?

Hi there I have developed a dynamic web application that uses Ajax to fetch data from databases and keep the GUI up to date but while testing it with IE8 I am experiencing caching issues. I used the ...
2
votes
1answer
2k views

Help needed with Spring/Hibernate Lazy-loading

I know that this has been discussed lot of times. I just can't understand how this work or where my mistake is. I think giving you a reduced example is the best way to show you what I'm trying to do ...
1
vote
0answers
23 views

Double authentication in GWT / EXT + Spring Security application

I have problems with double authentication. I have implemented the authentication form through pop-up window which is always on top. But I have problem probably with interceptors that cause the ...
1
vote
1answer
72 views

Apache CXF setting upload size

I'm using cxf 2.4.4 to make RESTful webservices I have this service: @WebService public interface Remote { @POST @Path("/create") @Consumes(MediaType.MULTIPART_FORM_DATA) ...
1
vote
1answer
25 views

Is the ArroundInvoke method gets invoked if it were invoked from another ejb method?

I've the following case: @Interceptors(MyInterceptClass.class) public void ejbMethod1() { } @Interceptors(MyInterceptClass.class) public void ejbMethod2() { ejbMethod1(); } Is calling ...
1
vote
0answers
29 views

ipojo custom handlers - auto attached handlers - issue in attaching to specific components

I have an issues concerning the custom auto handlers in ipojo. I have created an handler (say Handler-Auto), I want this handler to be auto attached to a POJO component instances (say Comp-1) without ...
1
vote
1answer
217 views

Struts2 and multiple active wizards / workflows

I'm currently working on a Struts2 application that integrates a wizard / workflow in order to produce the desired results. To make it more clear, there is a business object that is changed on three ...
1
vote
1answer
48 views

method selector on one of many interceptors for a service registered in Castle.Windsor

Using Castle.Windsor, how would I go about adding a IProxyGenerationHook or selector for one of several interceptors defined for a specific service. For example consider the following component ...
1
vote
1answer
111 views

Can you use a static method in WCF that accesses HttpContext.Current.Items?

I have an interceptor that picks data from a message header on a WCF request. See below: public object AfterReceiveRequest(ref Message request, IClientChannel channel, InstanceContext ...
1
vote
1answer
181 views

Using EJB interceptors after a method call

I know one can use interceptors before a method call by using the @AroundInvoke annotation. What I would like to do is execute certain code after the method call, so that I can for example create a ...
1
vote
2answers
136 views

how to restrict user from accessing a perticular action of a controller?

def filters = { loginCheck(controller:'*', action:'*') { before = { if(!session.user && !session.merchants) { redirect(action:'login') ...
1
vote
2answers
155 views

What is the best way to have interceptors for POJO?

EJB 3.0 comes with the concept of Interceptors, but then again they are applicable to EJBs only. My project requires developing Interceptors for POJO classes. One option for this is to use Spring AOP. ...
1
vote
1answer
586 views

struts2 session expired application scope

my app uses struts2+spring+hibernate and I was doing some session-interceptor-login-authorisation system and its working alright, now that I try to implement the session expired part I'm running into ...
1
vote
1answer
203 views

Castle.Core.InterceptorAttribute not injecting interceptor

Based on the documentation for Castle.Core.InterceptorAttribute, I am trying to make this simple test pass, and am having no luck: using NUnit.Framework; using Castle.DynamicProxy; using Castle.Core; ...
1
vote
1answer
142 views

EJB3 interceptors

I have been looking into how interceptors can be applied to session beans etc in EJB3.0. Can these be applied to servlets as well?
0
votes
0answers
16 views

Determine implementer of an ejb3 interface in jboss

How can I get the implementing class of an EJB3 interface at runtime in the JBoss container? This is similar to reflection. With reflection, however, I get a proxy class which is probably part of ...
0
votes
1answer
39 views

Scope interceptor in struts2

Is there any sample code where I can see the use of scope interceptor in Struts2? I want to pass a parameter from one action to other action (configured through struts.xml) & want to use scope ...
0
votes
0answers
50 views

Castle Windsor - Interceptors & Threads

As part of the project I am working on I am using interceptors to capture the result of a call to a service and then fire off an email when appropriate. The code makes use of a thread to update the ...
0
votes
0answers
90 views

Why can't I use Castle Windsor's Interceptors with NServiceBus?

I have the following configuration in an IWindsorInstaller: container.Register( AllTypes .FromThisAssembly() .BasedOn(typeof(IInterceptor)) .WithService.Self() ...
0
votes
0answers
59 views

JEE EJB interceptors

Is it possible to have the default interceptor configured for all ejbs within a ear . Default interceptors can be mentioned for ejbs within a module in the ejb-jar.xml. If there are multiple module ...
0
votes
0answers
23 views

Customizing exceptions thrown with cxf

i'm using cxf (rest) as my frontend when an exception is thrown from the server i want to capture it, convert it into my own jaxrs "Response" object and return that as a response. Right now, the ...
0
votes
2answers
76 views

Add Unmapped Data to NHibernate

I have an object I'm trying to persist to a legacy database with NHibernate. I have all of the relevant columns from a table mapped in my domain object, but have a few fields in the table that must ...
0
votes
2answers
81 views

CDI interceptors and memcache

I was reading about interceptors and AOP, the way they can unclutter your code and externalize cross-cutting concerns into aspects. I instantly thought of CDI and the use of custom interceptors to ...
0
votes
1answer
148 views

EJB3 Interceptors for logging

In an MDB application, Can the EJB3 Interceptor be configured to log the Non bean class methods, which are inturn invoked by the bean method (OnMessage)? Thanks in advance
0
votes
0answers
304 views

Migration from OC4J to Weblogic

We are migrating our application from OC4J to Weblogic App Server. We have an interceptor class which is used within EJBs to inject other EJBs. One such EJB uses @PostConstruct annotation on a method ...
0
votes
1answer
44 views

siteMeshInterceptor except a page

i use siteMeshInterceptor for my spring mvc project. Is there a way excluding a page from interception? I want to solve this in dispatcherServlet, not in interceptor code. inceptor looks like this in ...
0
votes
1answer
145 views

Can you package an ejb interceptor in a library?

And if so how do you do it? I have got an ejb @javax.interceptor.AroundInvoke interceptor which I like to move into a library for reuse. I moved the code into a library fixed the dependencies in ...
0
votes
1answer
312 views

Performance with Castle Windsor Interceptors

As suggested by many, logging is better managed through AOP, and in my case, using Castle Windsor interceptors. I am currently developing a web app and we just added an interceptor to log every ...
0
votes
1answer
677 views

JSON serialization (using Jquery plugin) w/ Struts2 interceptors -

I'm trying to implement http://code.google.com/p/struts2-jquery/wiki/SelectTag#A_simple_Doubleselect_with_Topics but I can't seem to combine the json interceptor with other interceptors successfully. ...
0
votes
1answer
317 views

Ambient filter / interceptors for domain classes in Gorm / Grails?

I just integrated a logging concept for my Grails system and used the filter mechanism to log access to my controllers and actions. The good thing is that I can define one filter for all controller ...
0
votes
3answers
485 views

How to exclude stacktrace from axis2 fault response

I have an Axis2 web service which throws different detail messages in the fault response to signal problems in the call. At some point, due to server errors (others than the ones treated by the web ...
0
votes
1answer
210 views

Proxy is created, and interceptor is in the __interceptors array, but the interceptor is never called

This is the first time I've used interceptors with the fluent registration and I'm missing something. With the following registration, I can resolve an IProcessingStep, and it's a proxy class and the ...