Questions tagged [interception]

174 questions
2
votes
1 answer

How to keep in Camel all incoming messages from an external system

Dear Camel Riders! I would like to ask you if you know about any recommended way how to keep / store all incoming messages from soap, rest, etc ... Using current interceptors: a) org.apache.camel.spi.InterceptStrategy b) tag interceptFrom I have…
Andrej
  • 558
  • 6
  • 14
2
votes
1 answer

Capturing Apex Dataloader soap requests in Fiddler

I want to monitor the Apex DataLoader SOAP requests via Fiddler and as a first step I have imported the Fiddler Certificate in to "cacerts" in jre/security location in both DataLoader installation and JDK installation paths. Now I am able to perform…
3nethra
  • 31
  • 3
2
votes
0 answers

Ninject Interception MVC 3 Controller

I have intereception working with the Ninject Interceptions Extentions and Dynamic Proxy v3.0. I'm trying to class proxy intercept an MVC 3 contoller. The controller is intercepted but the behavior is incorrect. The intereceptor only intercepts…
boff101
  • 75
  • 6
2
votes
1 answer

JBOSS Deployment interception

I would like to execute a code once an application gets deployed completely on JBOSS, is there a way to intercept application deployment on JBOSS, or is there a point where I can be very sure that the application has been deployed completely and I…
crizal
  • 21
  • 1
1
vote
2 answers

How to Define Thread-scoped objects with DefaultAdvisorAutoProxyCreator in Spring.NET

I want to create a thread-local object (with interceptors) using DefaultAdvisorAutoProxyCreator. I know how to do that using ProxyFactoryObject:
ehsanullahjan
  • 5,422
  • 4
  • 23
  • 21
1
vote
2 answers

Sending Key Presses with Interception

I have tried all the normal methods of faking keyboard actions (SendInput/SendKeys/etc) but none of them seemed to work for games that used DirectInput. After a lot of reading and searching I stumbled across Interception, which is a C++ Library that…
user470760
1
vote
1 answer

how to virtualize config file

I have a PHP script that is encrypted with Ion Cube. Since I don't want to violate the license, I can't modify anything in the script. The script makes calls to an XML based config file. I want to create a database to store the config data and then…
1
vote
2 answers

How can I execute a function before ALL of my class functions in Dart?

I need to run a certain function before every Function of my class. (Not once in a constructor). It basically needs to happen within that function but at the beginning. I also don't want to do this: class A { shouldRunFirstFunction() {} …
Yuki
  • 255
  • 1
  • 2
  • 9
1
vote
1 answer

Interpose OS X API in a plugin

I have an app that loads a CFPlugin, not a problem, using the Apple boiler plate code. The plugin has a bug - and its someone else's binary... The plugin makes some calls into an Apple System Framework. If I could intercept the calls that the plugin…
Tom Andersen
  • 7,132
  • 3
  • 38
  • 55
1
vote
1 answer

Unity Interception, Interceptor is called several times with partial classes mapping

I've been looking around for a fix on this for a couple of days with no luck. Basically we are using Unity for two things: dependency injection and more importantly for Interception. What I want is that the interceptor is triggered each time a…
Mau Sánchez
  • 154
  • 1
  • 6
1
vote
0 answers

Can I explicity specify which keyboard can be used as input device in Qt?

I currently have keyboard's Vendor ID,product id, revison number - extracted from interception library(specific function call: interception_get_hardware_id more information on it here:(Scroll to the bottom of the page). What I want to do is to…
calculusnoob
  • 165
  • 1
  • 11
1
vote
1 answer

How to intercept Playwright's Firefox image requests

I recently tried to intercept all image requests following the example in their documentation: await page.route('**/*.{png,jpg,jpeg}', route => route.abort()); // Abort based on the request type await page.route('**/*', route => { return…
Soldeplata Saketos
  • 3,212
  • 1
  • 25
  • 38
1
vote
1 answer

Customizable Behavior using Unity Interception c#

I trying to create Separate Customizable Interception Behavior for specific scenarios such as trace logging, exception logging , Performance logging and combination of mentioned. However , When I created a Custom behavior with Method as…
1
vote
1 answer

EF Core interceptor to influence materialization

Is it possible to use an EF Core interceptor to influence the process of materialization when data from a database reader is converted into an object? When not, it there another way to tell EF Core to use an instance of A1 instead of type…
1
vote
1 answer

How to abort request Puppeteer when using "Network. requestIntercepted" (same as request.abort () of setRequestInterception)?

I can't intercept with the setRequestInterception function, some important request doesn't go through it. Instead I used the Network.setRequestInterception, and it was nice in addition to not being able to abort the unwanted request. If I…
jake brand
  • 37
  • 1
  • 3