This is a migrated thread and some comments may be shown as answers.

Intercepting other network traffic

1 Answer 281 Views
FiddlerCore
This is a migrated thread and some comments may be shown as answers.
Hendrik
Top achievements
Rank 1
Hendrik asked on 18 Nov 2015, 09:04 AM

Hi Eric,

I know that Fiddlercore can only intercept http/s traffic.

Can you recommend or do you know of any c# api's that can intercept/capture these types of traffic (Similar to how fiddlercore does it):

RTSP 
MMS 
MMST 
MMSU  

Basically I just need to capture there bytes response and any other associated data.

Thanks

Hendrik

1 Answer, 1 is accepted

Sort by
0
Eric Lawrence
Telerik team
answered on 18 Nov 2015, 05:25 PM
There's no "C# API" for any of this per-se-- C# exposes a socket API, so if you can configure the client to talk to your socket, you could have your C# application implement all of the necessary protocols in question. But that requires that you have some way to force the client to talk to your socket to begin with.

If you only need to *view* (not modify) bytes on a socket (and they're not encrypted) you could probably use one of the various WinPCAP libraries to have your client collect ALL of the network bytes on the system and then parse those bytes into whatever protocol messages you expect to render.

Regards,
Eric Lawrence
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
FiddlerCore
Asked by
Hendrik
Top achievements
Rank 1
Answers by
Eric Lawrence
Telerik team
Share this question
or