https://github.com/shuttle/shuttle.esb.corrupttransportmessage
The CorruptTransportMessage extension writes any transport messages that fail to deserialize to disk.
https://github.com/shuttle/shuttle.esb.corrupttransportmessage
Last synced: 24 days ago
JSON representation
The CorruptTransportMessage extension writes any transport messages that fail to deserialize to disk.
- Host: GitHub
- URL: https://github.com/shuttle/shuttle.esb.corrupttransportmessage
- Owner: Shuttle
- License: bsd-3-clause
- Created: 2024-02-04T16:08:20.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-03-02T14:07:05.000Z (about 1 year ago)
- Last Synced: 2025-11-01T10:19:19.685Z (4 months ago)
- Language: C#
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Corrupt Transport Message
```
PM> Install-Package Shuttle.Esb.CorruptTransportMessage
```
## Configuration
```c#
services.AddCorruptTransportMessage(builder =>
{
builder.Options.MessageFolder = ".\\corrupt-transport-messages"; // default
});
```
The default JSON settings structure is as follows:
```json
{
"Shuttle": {
"Modules": {
"CorruptTransportMessage": {
"MessageFolder": ".\\folder"
}
}
}
}
```