An open API service indexing awesome lists of open source software.

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.

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"
}
}
}
}
```