The interceptor design pattern allows logic to be "inserted" before, during or after the execution of a piece of code, such as a method.

learn more… | top users | synonyms (1)

2
votes
2answers
45 views

Getting Result type in Interceptor

I have Struts2 actions with different (HTML and JSON ) result types. They use common interceptor. If need to intercept the request, how to return result based on given action result type? For ...
1
vote
2answers
38 views

Struts2 action could not execute when redirect (with interceptor) an action to other

I send a request to the ActLand, then intercept(), if not logged in then redirect to Login.jsp. The struts.xml: <struts> <package name="default" extends="struts-default"> ...
0
votes
0answers
29 views

Accessing service path parameters from CXF Message

I am writing an interceptor to validate the requests that I see. However, I am unable to determine a way to access the path parameters (any parameter for that matter). Although, when I expand the ...
0
votes
1answer
56 views

Building a custom interceptor with SOAP Web Service MULE

I'am using Mule Community Edition 3.4. I have a problem with the UntilSuccessful component. The scenario is now exposed: I have a flow composed by a UntilSuccessful component in which ther's a SOAP ...
1
vote
2answers
45 views

spring interceptor is never called

I have the following interceptor: @Component public class ExternalLinkInterceptor extends HandlerInterceptorAdapter { private static final Logger logger = ...
1
vote
2answers
32 views

Identify a SOAP message as request or response

I have a middleware which can accept the SOAP request and well as can make SOAP request. I have written the custom interceptors to intercept the inbound and outbound request to log them in ...
1
vote
2answers
44 views

Catching the SOAP Fault error in custom interceptor (Soap12FaultOutInterceptor)

I wrote a custom CXF interceptor to log all the SOAP request and responses into the database and it seems to be working fine with positive test cases and server errors. But when a SOAP Fault occurs ...
0
votes
1answer
34 views

Exception when adding interceptor

Hello I have this following exception : ERROR 13 May 2013 15:20:17,471 http-9090-1 org.springframework.web.servlet.DispatcherServlet - Context initialization failed ...
-1
votes
0answers
39 views

Custom Struts Interceptor not called

I have been trying to set up a custom Interceptor. I am working with Struts2. When I debug my code and call this struts action, it does not hit the Interceptor code. How can I find out if my ...
1
vote
1answer
36 views

WAS 7.0.0.23 - default interceptors in MDB with activation spec throws classcastexception

I am facing an issue with Interceptors for MDB in Websphere. I configured defaultInterceptor for MDBs with ActivationSpec and not listerner port in WAS 7.0.0.23. I am getting ClassCastException. The ...
2
votes
1answer
45 views

Struts 2 interceptor that runs after the page executes?

I'm using Struts 2. Using an interceptor, I create a database connection at the start of each page execution. So for example, if a user goes to "myAction.do", it will create the database connection ...
0
votes
0answers
37 views

Hibernate Interceptor, modifying current state in onSave results in SQL update

Suppose that I have two classes Foo and Bar. Foo has a many-to-one association to Bar mapped like this: <many-to-one name="bar" class="Bar" lazy="false" fetch="join" > <column ...
1
vote
2answers
95 views

Getting Interceptor Parameters in Struts2

I have following action mapping <action name="theAction" ...> ... <param name="param1">one</param> <param name="param2">two</param> ... <param ...
1
vote
1answer
38 views

How can I read the json in a POST/PUT in a RestEasy interceptor for validation

I'm trying to use a RestEasy interceptor to validate a JSON object coming over for insertion or updating in a PUT/POST. Given that all I have access to by implementing PreProcessInterceptor is this ...
1
vote
1answer
59 views

Detecting User Agent to redirect on specific Jsp in struts 2

As title suggests I want to redirect the requests of mobile phones to specific page. another way I expect is only a variable that contains information about UserAgent so That U can use that Variable ...
0
votes
1answer
29 views

JBoss ESB pipeline interceptor triggers multiple times

I am working on a project that "sniffs" (intercepts) all messages that are being send through ESB. I use JBoss AS 6 with ESB 4.11. I am sending both esb-aware and JMS messages and everything works, ...
1
vote
1answer
52 views

PreProcessInterceptor do not intercept some of my JAX-RS Resource services

The pom.xml : <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>jaxrs-api</artifactId> <version>2.3.1.GA</version> ...
1
vote
2answers
47 views

Passing data (transactionId) to CXF interceptors

I trying to build an UI to view the SOAP transactions that were sent out from my application. A typical scenario is that each user transaction include multiple web-service request to multiple systems ...
0
votes
0answers
23 views

How can I capture the bytes being streamed in httpClient via the HttpRequestInterceptor?

I am trying to intercept the byes that are being streamed to a servlet via httpClient. I need to do some other processing on the bytes and I would like to do it one time (when it is being streamed). ...
0
votes
1answer
29 views

CXF InFaultInterceptor vs. OutFaultInterceptor

I am working on REST API with CXF framework. Anybody can explain to me more detail about what's different between InFaultInterceptor vs. OutFaultInterceptor? They seems belong to different phase of ...
0
votes
0answers
63 views

Is it possible to change return type when intercepting a method?

I'd like to treat mapping of data access objects to domain objects as a cross cutting concern and solve the problem using AOP (Aspect Oriented Programming). What I like to do is intercept the ...
2
votes
1answer
47 views

Grails: Intercepting the beginning of a request

I'd like to time an upload. Therefore, I'd like to know when a socket connection started for the request, and when it ended. I looked at the beforeInterceptor and afterInterceptor, but I'm under the ...
0
votes
1answer
40 views

Cxf jaxrs:outFaultInterceptors unable to modify message

Here is my fault interceptor: public class OutFaultInterceptor extends AbstractPhaseInterceptor<Message> { public OutFaultInterceptor() { super(Phase.SEND); } @Override ...
-1
votes
1answer
67 views

Authenticate user on every request - Spring MVC

My application receives user creds with each request (header). I need to validate the user creds against database before doing any processing. REST based calls. What is the best approach / standard ...
0
votes
0answers
25 views

Intercept only service, not implementation in Windsor

I have this code: container.Register( Component.For(typeof(MyServiceInterceptor<>)), Component.For<IMyService<string>, MyServiceImpl<string>>() ...
1
vote
1answer
64 views

Spring interceptor works with xml but not with config class

Im currently using an interceptor configured with xml like this : <mvc:interceptors> <bean class="org.resthub.dashboard.BasicInterceptor" /> </mvc:interceptors> But I would ...
0
votes
1answer
42 views

JBoss ESB pipeline interceptors

I am new to JBoss ESB and I am trying to intercept and handle all messages that happen on my application server. I found that pipeline interceptors are what I am looking for. However, I am unable to ...
1
vote
2answers
77 views

Error messages doesn't show up in my JSP

Hi i have a problem in my app, my jsp doesn't show error messages. i don't realy understand this code in my jsp : <s:if test="hasActionMessages()"> <div class="message"> ...
0
votes
1answer
98 views

IP-addresses Log file by all requests in MULE CE 3.3.0?

in MULE CE 3.3.0 I want to implement this process: 1- Post- office has a service for giving postal-code to clients. So post-office creates a WSDL-file for its service. 2- Here, our company is a ...
0
votes
1answer
334 views

Getting elements from SOAP Header with cxf-interceptor in MULE CE 3.3.0

I want to Getting elements from SOAP Header in MULE CE 3.3.0. In flow I set WSDLLocation and my custom java class. This is my flow code that I copied them below: <http:inbound-endpoint ...
0
votes
0answers
53 views

Broken usage of portable interceptors for local objects in JacORB 3.x?

The implementation how portable interceptors are used for local objects has changed in JacORB 3, as stated in the release notes: "Implemented portable interceptors correctly for local objects." It ...
0
votes
2answers
42 views

inject my code before/after service call using annotations

The service is a spring bean, it is @autowired into my class: public class MyClass { @Autowired private Service service; private void myMethod() { service.call(); } } The ...
-2
votes
1answer
66 views

Struts2 Upload File interceptor display errors [closed]

I using UploadFile interceptor with simple theme. If I use simple theme, I do not display error message. If I delete theme configuration in my struts.xml, errors are displayed but my layout is not ...
0
votes
0answers
245 views

RESTful Webservices - Basic Auth in Spring MVC 3.x

We are developing RESTful webservices using Spring MVC 3.x. I am wondering what is the best way to implement Basic Auth. Note that we do not want to use Spring Security. We just want to use regular ...
0
votes
1answer
41 views

mockito checking MethodInvocation

I would like to check that method was invoked with particular parameter using mockito. I my code, everytime when unit.permission().someCommand() is invoked, the intercetor's method invoke will be ...
0
votes
1answer
86 views

Logging request/response with CXF dynamic client

I am using CXF dynamic client and want to do some logging. I want to log the incoming and outgoing soap xml. I need to do that with interceptors but have no clue on how to wire them so the client will ...
1
vote
1answer
102 views

Intercepting the concrete implementation (as opposed to service) using Castle Windsor

I'm experimenting with interception in Castle Windsor and notice that interceptors seem to be created as decorators of my service interface. In other words, if I have an interface "ISomethingDoer" ...
2
votes
0answers
38 views

How do I disable the default Castle interceptor on a single class?

On an application I am working on we are using some of the AOP facilities from Castle Windsor, mainly to log method entry/exit points and times for debugging/performance analysis purposes. This works ...
0
votes
2answers
64 views

is possible, in a cdi interceptor, after a validation, redirect the user to another page/method/action (jsf2) and send a message?

the idea is something like this: @PSEUDO_CODE @AroundInvoke public Object manage(InvocationContext ic) throws Exception { Object object = getTarget(); ... if( ...
1
vote
3answers
151 views

CDI interceptor does not work when annotation has parameter

I'm trying to implement a @Restricted annotation, to secure controller methods in a way that users can only access them, when they are logged in and have a certain role. I'm on Tomcat 7 using JSF and ...
0
votes
1answer
123 views

Spring MVC 3: Interceptor return view on false

I'm using an interceptor to restrict access to certain users in the app. For instance: @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) ...
2
votes
0answers
108 views

Should CDI bean with interceptors have a default constructor?

I have a CDI bean, and a interceptor is added to one method of this bean. If this bean doesn't have a default constructor(I use the Constructor Injection). At runtime, I get the exception ...
0
votes
1answer
99 views

Is it possible intercept a method from @ManagedBean? If not, there alternatives?

I'm new to JSF-2 and CDI (I'm from Spring world). I want to intercept a method from @ManagedBean but my Interceptor class is never called. Is it possible to do? LogInterceptor.java @Interceptor ...
1
vote
1answer
106 views

Aspectj - intercept HTTP request

Is it possible, using aspectj or other features in spring to intercept a HTTP request and then based on some logic return without executing the target method? I'm trying to create a wrapper around my ...
0
votes
1answer
54 views

Redirect in Interceptor when not logged

Im trying to use @aroundInvoke in my interceptor, checking some validationX to proceed with the execution of the method or else REDIRECT the user to a specific JSF page. @AroundInvoke public Object ...
0
votes
1answer
116 views

Request filter versus request interceptor?

My application exposes a RESTful API which when called calls out to a mailbox server and fetches data. I want to be able disable the service during application runtime in the event of some outage on ...
5
votes
1answer
72 views

Windsor not resolving intercepted components

Can anyone explain why this doesn't work? If you remove the interceptor from IFoo's registration and resolve a Bar, you get a Foo (MyFoo isn't null). But with the interceptor, the Foo doesn't ...
-1
votes
2answers
252 views

Struts2 - How do I invoke the prepare() method on page load?

I want to invoke the prepare() method when a page loads in Struts 2. It is my understanding that if I implement the Preparable interface on my action that the prepare() method should automatically ...
2
votes
1answer
122 views

why my custom interceptor does not work

I define a custom interceptor used to log time, but it doesn't work. here is my custom interceptor code: public class TimeConsumedInterceptor extends AbstractInterceptor { /* * {@inheritDoc} */ ...
0
votes
1answer
140 views

Error when trying to load the interceptors dynamically in Spring Security

I have configured spring security for generate interceptors dynamcally from DB. I have guide here. When I try to access a home page from login page get the following error: An Authentication object ...

1 2 3 4 5 12