-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] Is there a way to capture any network requests ? #35
Comments
WebUI has Line 452 in 235bcda
|
Okay, but will it catch WebSocket requests ? Or HTTP requests ? |
Also it will probably work only for files and HTTP requests, but for WebSocket it won't, because server could respond in anytime and using this API it is not possible to handle |
What do you mean with WebSocket requests? The WebUI core WebSocket or your own custom WebSocket? |
Yes, |
I mean that if my application has WebSocket connection to server and I want to hook it, and instead of server provide responses by myself then setFileHandler will work only in one direction, from WebUI to server, but WwebSocket connection could live for long time and in this case if in future server would like to send some data to client it would not be possible using setFileHandler API |
I would like to capture specific network requests to my server that for local application provide a custom response.
In such way I will have less modification in WebApp that I use on local machine
The text was updated successfully, but these errors were encountered: