You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement ability to pass json message body via a file
Implement a cross-platform what to send the message body through a file on the file system. This helps avoid some of the shenanigans with terminal escaping of json (most specifically with powershell!!).
|`-c`, `--content-type`| The fully qualified .NET type name of the enclosed message (ex: Ordering.Commands.CreateOrder ) |
16
16
|`-e`, `--enclosed-message-type`| The type of serialization used for the message |
17
-
|`-m`, `--message-body`| The content of the message body |
18
-
|`-d`, `--destination-endpoint`| The destination endpoint to send a message to |
17
+
|`-m`, `--message-body`| The content of the message body. Accepts a raw JSON string or a path to a file using curl-style `@` syntax (e.g. `@payload.json`). |
|`-c`, `--content-type`| The fully qualified .NET type name of the enclosed message (ex: Ordering.Commands.CreateOrder ) |
16
16
|`-e`, `--enclosed-message-type`| The type of serialization used for the message |
17
-
|`-m`, `--message-body`| The content of the message body|
17
+
|`-m`, `--message-body`| The content of the message body. Accepts a raw JSON string or a path to a file using curl-style `@` syntax (e.g. `@payload.json`).|
0 commit comments