Reputation: 97
I am trying to use Fiddler to see the message format for a chat app using SignalR. But nothing is appearing in Fiddler when I send a message to the hub or receive one back. I am assuming I have to configure something in order to see these messages. Fiddler is picking up when I refresh the page and connect but nothing else appears. The purpose is so I can get the correct message format when using SignalR-Objc
Upvotes: 5
Views: 7134
Reputation: 18301
Update: See @J. Polfer's answer below on how to see Websocket messages in Fiddler.
Upvotes: 5
Reputation: 12481
As of Fiddler 4.5, you can view Websocket data natively in Fiddler.
Simply double-click on the connection (look for signalr/connect? HTTP requests), and click on the WebSocket tab in Fiddler.
Upvotes: 6
Reputation: 97
It worked once I removed websockets from the transports. All the information showed up when I just used Longpolling.
Upvotes: 1