Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
4answers
236 views

Fault injection for .NET apps?

I am wondering if anyone knows of tools or techniques to automatically inject common faults into a running .NET program. Stuff like... Randomly inject an OutOfMemoryException upon allocation ...
9
votes
3answers
430 views

Intercepting Outgoing SMS

Is it possible to intercept outgoing SMS before it is actually sent, get its contents then ignore / send it according to some criteria? eg. block all international text (numbers with leading 00), but ...
9
votes
4answers
836 views

Intercept slice operations in Python

I want to imitate a normal python list, except whenever elements are added or removed via slicing, I want to 'save' the list. Is this possible? This was my attempt but it will never print 'saving'. ...
6
votes
3answers
369 views

How to intercept instance method calls?

I am looking for a way to intercept instance method calls in class MyWrapper below: class SomeClass1: def a1(self): self.internal_z() return "a1" def a2(self): return ...
6
votes
2answers
200 views

Intercepting exceptions

I'd like to use to a custom exception to have a user-friendly message come up when an exception of any sort takes place. What's a good straightforward way of doing this? Are there any extra ...
6
votes
4answers
2k views

Intercept WM_DELETE_WINDOW on X11?

I'd like to intercept the WM_DELETE_WINDOW message that is posted to a certain selection of windows that an application I'm writing (AllTray), so that I can act on it instead of the application ...
5
votes
2answers
540 views

How to stop SIGINT being passed to subprocess in python?

My python script intercepts the SIGINT signal with the signal process module to prevent premature exit, but this signal is passed to a subprocess that I open with Popen. is there some way to prevent ...
5
votes
1answer
261 views

How can I intercept this constructor call in Groovy?

In a script a method receives a parameter of type File, and sends it to the constructor of File. This blows up because File doesn't have a constructor that takes another file as a parameter. How can ...
4
votes
5answers
165 views

How to enforce constraints between decoupled objects?

Note - I have moved the original post to the bottom because I think it is still of value to newcomers to this thread. What follows directly below is an attempt at rewriting the question based on ...
4
votes
1answer
294 views

How can I intercept a method call in Boo?

Ruby has method_missing , Python has getattr. Does Boo offer something I can use to intercept method calls?
4
votes
5answers
766 views

Free tools for local HTTP packet sniffing/intercepting?

I'm currently using HTTP Analyzer V5 trial version which expires very soon. Are there any [good] free tools for sniffing and inspecting the contents of HTTP packets, in a similar way to the above ...
3
votes
2answers
203 views

IOS Jailbreak How do intercept SMS / Text Messages

I'm currently trying to write an application that intercepts text messages and reacts depending on the content of that message. I tried to hook into _receivedMessage:(struct __CKSMSRecord *)message ...
3
votes
2answers
162 views

Linear Regression with explicit intercept in R

I want to calculate a linear regression using the lm() function in R. Additionally I want to get the slope of a regression, where I explicitly give the intercept to lm(). I found an example on the ...
3
votes
1answer
68 views

it is possible to intercept the Open File menu in eclipse?

My project require to open a file with specified extension in eclipse, but not in a editor. the file should be open in a embedded QT application in a view of eclipse. my thinking is trying to ...
3
votes
1answer
237 views

Intercepting and postprocessing all audio streams on Windows

I would like to know is there any way I create an application which can intercept all the audio that is being played back on the computer, so I can process the audio (apply some effect) and then pass ...
3
votes
2answers
228 views

Line x and y n-intercept point / C++

Can someone please help me. I understand the equation of a line and how to solve for the zero intercept on paper, but I have trouble converting it to code. More specifically, I need to calculate the ...
3
votes
1answer
692 views

How is the intercept computed in the GLM fit?

I have been reading the code used by R to fit a generalized linear model (GLM), since the source-code of R is freely available. The algorithm used is called iteratively reweighted least squares ...
3
votes
11answers
2k views

Intercept method call in Objective-C

Can I intercept a method call in Objective-C? How? Edit: Mark Powell's answer gave me a partial solution, the -forwardInvocation method. But the documentation states that -forwardInvocation is only ...
3
votes
7answers
2k views

How to intercept Http traffic

I am trying to develop a C# application that will intercept an outgoing Http request and return a result to an old system. We have a legacy system that makes an Http request to a discontinued web ...
3
votes
2answers
681 views

Is there any way to intercept print jobs on a local Windows XP machine?

Preferably using a scripting language like Perl or Python, but if I have to go the compiled route then so be it. Essentially what I want to do is make an addition to my company's mail merge system. ...
2
votes
1answer
42 views

View Caching with PHP

Hello ladies and gentlemen, I have a question about the cache of a view, suppose I have the following block of code: <?php class View { public function render ( $template , ...
2
votes
2answers
86 views

Hook on mscorlib (System.Security.Cryptography.CryptoStream) to log parameters

I want to log the parameters which are given to a CryptoStream object in an application, to log the plaintext before it is encrypted. I want to do this dynamically, without tampering with the ...
2
votes
2answers
71 views

Intercepting click on send in Mail.app

Is it possible to intercept click on Send in Mac OS X Mail application? Thanks
2
votes
1answer
79 views

JBoss seam: are inherited methods intercepted?

If I extend a standard Java Class and make the subclass a Seam component, are the inherited methods going to have the overhead of interception? In other words, do I have to Override them and annotate ...
2
votes
2answers
479 views

Intercept / Disable System Keys in Java

Is there a way to intercept the system keys in Java so that the events are not propagated to the operating system? Ctrl+Alt+Del or other security related combinations do not matter, the main problem ...
2
votes
1answer
57 views

Accessing email in a transparent fashion

How could one go about accessing email without interfering in any way that would be visible to a user with standard email clients such as Thunderbird? P.S: I've marked this as both java and ...
2
votes
1answer
206 views

How to intercept and apply effects to Firefox audio/sound output

I want to build a Firefox extension that will allow me to directly manipulate the audio output, applying live filters and effects, from (for example) a streaming video site. Im struggling to find any ...
2
votes
1answer
589 views

How to intercept a static method call in C#

I'm trying to implement some sort of Aspect Oriented Programming in C#, where I had some small success but found some important limitations. One of those limitations is the capability to intercept ...
2
votes
3answers
416 views

Intercept traffic above the transport layer

Firstly, I'm relatively new to network programming. I want to intercept and delay HTTP traffic before it gets to the server application. I've delved into libnetfilter_queue which gives me all the ...
2
votes
4answers
363 views

How could I transform some keypresses into other keypresses?

I have a great idea about cheating on exams. My school uses very old IDE's ( think Turbo Pascal, Turbo C++ , and other 80's ones ), and the thing I'd like to do is this : start my program in the ...
1
vote
4answers
132 views

intercepting file system system calls

I am writing an application for which I need to intercept some filesystem system calls eg. unlink. I would like to save some file say abc. If user deletes the file then I need to copy it to some other ...
1
vote
2answers
27 views

How do I intercept an opacity transition in jQuery?

I have the following hover script which works on my nav link images: $("nav a").hover( function() { $(".current", this).animate({ opacity: 1 }, { duration: ...
1
vote
0answers
42 views

SOAP and REST requests intercepting

Is it possible to intercept binding of XML/JSON data coming through SOAP or REST webservice, to modify/check some of the data ? let's say I have methods like this on my webservice: @WebMethod ...
1
vote
0answers
120 views

iphone intercept link

i have an app that intercepts a link in a uiwebview, but I want to get that link string [you tube link] to start the player , I have the youtube player working with a hardcoded url, [opening in a ...
1
vote
0answers
97 views

Intercepting TeamSpeak output in C#

first I'd wanna say this is my first question here, I'll try to comply to the asking tips the best I can... Also I couldn't find a way to post this in a specific C# section so I just used it in the ...
1
vote
1answer
132 views

Android intercept SEND email event

Is there a way I can modify/change email after user press send button in email app so that before it is sent I can modify it and then send it ...
1
vote
2answers
321 views

Is there a way to intercept Android SMS sending to forward to different transport?

For example, can I listen for some broadcast from the app layer (e.g., messaging) and consume the message prior to the telephony layer sends it out of the device?
1
vote
2answers
354 views

jQuery intercept form submission to param string

I have a form. This form submits via POST to an iframe, that, in turn, has the request processed and, depending on the result, a javascript is executed that changes the parent's content according the ...
1
vote
4answers
241 views

Intercepting Java field and method access, creating proxy objects

guys. I want to create such object in Java that will contain some "dispatcher" function like Object getAttr(String name) that will receive all attribute access attempts - so, if I'll do ...
1
vote
2answers
259 views

PHP - Intercept POST requests

I was wondering if anyone could help me solve how to view $_POST requests. What i want to do, is check all $_POST requests, not just certain ones like $_POST['name'], $_POST['post'] etc, I'd like to ...
1
vote
1answer
315 views

call intercept on android

currently, is call intercept on android possible? to a level where i can get the phone number when a call is made.
1
vote
1answer
76 views

how to return to original destination after intercept in Grails controller

Greetings! I have an intercept in controller like so: def beforeInterceptor = { if( session.sessionRoastId == null ){ session.intendedController = params.controller ...
1
vote
0answers
946 views

Intercept outgoing calls on hangup

We want to intercept the outgoing call hangup in a broadcast receiver. We are listening to android.intent.action.PHONE_STATE and do get notified on IDLE state that is when the call finishes. ...
1
vote
1answer
712 views

Android: Is there any way to listen outgoing sms?

I know that an incoming sms can be easily intercepted using a broadcast reciever. But I did not see any way to intercept an outgoing sms. How can this be done? But there is a way to do this.. Because ...
1
vote
2answers
180 views

Mouseover .animate stops prior .animate

I have two different .animate functions.. Slides down the elements on document ready. Adds mouseover effect to these same elements. Problem here is that IF you happen to have your mouse over the ...
1
vote
1answer
119 views

How to have an Activity that uses a ScrollView AND keep onTouch method working properly?

I have an Activity that populates two views on a ViewFlipper. I added an onTouch(View v, MotionEvent event) public boolean method to the Activity. The method is implemented so that when the person ...
1
vote
3answers
503 views

Intercept WCF Method Call and “Re-route” based on Authentication status

Was curious if there was a way to check if a user is authenticated before making a method call and then returning a custom object and not completing the call if they aren't. For example: We set the ...
1
vote
0answers
168 views

intercepting key events before they reach an iframe

I've stumbled over a problem regarding key events. I use an iframe in my webapp to allow for third party apps to run. The iframe's content will come from a different origin and will be sandboxed ...
1
vote
1answer
311 views

Intercepting method calls to the Reference monitor?

In Android, my understanding is that an application declares a list of permissions that it needs in the manifest file and during runtime, it makes a request to perhaps the Reference monitor which then ...
1
vote
0answers
108 views

J2ME Detect PTT Request for Motorola Iden

I have a J2ME application that constantly sends data to server in TCP. During sending, PTT calls cannot be received. So I wonder if anyone knows how to implement PTT request listener in J2ME so that ...

1 2