-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for wildcards in gateway channel uris
- Loading branch information
Showing
3 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
nservicebus/gateway/multi-site-deployments_wildcard_gateway_[2,].partial.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
## Incoming channels with wildcard uris | ||
|
||
Hosting in a dynamic environment, like Azure Service Fabric, can make it difficult to find the correct hostname to bind incoming channels too. Incoming channels with wildcard uris are supported from version 2.0.1 of the gateway to support this scenario. | ||
|
||
The supported format is `http://+:port/{name of the endpoint}`. `http://+:25899/` will listen on port 25899 on any ip/hostname available on the machine. | ||
|
||
The channel uri is used to populate the ReplyTo header of any messages sent by the gateway instance. Using a wildcard in the `ReplyTo` header makes little sense as it would not be routable back from a replying gateway. An additional default channel with a fully qualified uri is therefore required whenever incoming channels with wildcard uris are used. The default channel uri will be used in the `ReplyTo` header of any message sent. | ||
|
||
#### Example | ||
snippet: configureWildcardGatewayChannel |