NServiceBus网关公共网址

时间:2012-04-17 07:15:11

标签: nservicebus

在我的应用程序中,我在端点上设置了NServiceBus网关,并且我能够使用同一台机器上的URL http://localhost/ {端点名称}来访问它。

我的问题是如何使用公共IP地址或域名从外部计算机访问该端点。

例如如何使用URL http:// {My Public ip address} / {Endpoint name}

访问网关端点

1 个答案:

答案 0 :(得分:1)

我自己找到了答案,你要做的只是将频道地址更改为你想要的域名

<GatewayConfig>    
  <Channels>
    <Channel Address="http://{Your domain name}/{Endpoint name}/" ChannelType="Http" Default="true"/>
   </Channels>
</GatewayConfig>