forked from paolosalvatori/ServiceBusExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.config
More file actions
125 lines (124 loc) · 9.69 KB
/
App.config
File metadata and controls
125 lines (124 loc) · 9.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="serviceBusNamespaces"
type="System.Configuration.DictionarySectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
<section name="brokeredMessageInspectors"
type="System.Configuration.DictionarySectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
<section name="eventDataInspectors"
type="System.Configuration.DictionarySectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
<section name="brokeredMessageGenerators"
type="System.Configuration.DictionarySectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
<section name="eventDataGenerators"
type="System.Configuration.DictionarySectionHandler, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
</configSections>
<serviceBusNamespaces>
<add key="CustomConnectionString" value="namespace=NAMESPACE;servicePath=;issuerName=owner;issuerSecret=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX="/>
<add key="ACSConnectionString" value="endpoint=sb://NAMESPACE.servicebus.windows.net/;sharedSecretIssuer=owner;sharedSecretValue=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX="/>
<add key="SASConnectionString" value="Endpoint=sb://NAMESPACE.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX="/>
<add key="PaoloSalvatori" value="Endpoint=sb://paolosalvatori.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=yeZZL+AEWfa7c7o1S8kf02Dlpmr7x/Ne1lojs4+fXLo=" />
<add key="Baboland" value="namespace=baboland;servicePath=;issuerName=owner;issuerSecret=p8XV6QiRjunU2KgRZXfSRb4uGnqF6+JNBDq4NM09Ktc=" />
<add key="BabosBird" value="Endpoint=sb://babosbird.servicebus.windows.net/;SharedSecretIssuer=owner;SharedSecretValue=ORy3Nej43/vlsNrQxQeC5mqgg6ySPygrF79QKV4wSF0=" />
<add key="AngryBirds" value="Endpoint=sb://angrybirds.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=ptdVSSBL/NTpIKWJhL24zvNh4Qw6doYbLFKa5sNz48c=" />
<add key="USBabo" value="Endpoint=sb://usbabo.servicebus.windows.net/;SharedSecretIssuer=owner;SharedSecretValue=XlW+dQkS+Yon0EW0Cle0TqYvPYHbZHnsJMCpBCm7Tpc=" />
<add key="SouthBabo" value="Endpoint=sb://southbabo.servicebus.windows.net/;SharedSecretIssuer=owner;SharedSecretValue=WDafWhilRd6dJqU8RavjBwp8o5Lona7O6mKkHxKqZHc=;TransportType=Amqp" />
<add key="Tribble" value="Endpoint=sb://tribble.servicebus.windows.net/;SharedSecretIssuer=owner;SharedSecretValue=yPteZbk1dgJci5EGjS9Am2cXwxBA3xOUnezLzIJ9LYg=" />
<add key="UglyDolls" value="Endpoint=sb://uglydolls.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=o1RurzyDFZ9WY9314TaXjUrJ4FrZMcZSUzqrl3eJeiI=" />
<add key="IoTLand" value="Endpoint=sb://iotland.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=ewniN1cBNBi9I2WCYKGr6k/bSg1q5C25l04gCqixXJo=" />
<add key="EventHubs" value="Endpoint=sb://eventhubs.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=GyNaU6zBgrOAKuSLwKsyaqToZ4lXBBokTDDNb0s9sVs=" />
</serviceBusNamespaces>
<brokeredMessageInspectors>
<add key="LogBrokeredMessageInspector" value="Microsoft.WindowsAzure.CAT.ServiceBusExplorer.LogBrokeredMessageInspector,ServiceBusExplorer"/>
<add key="ZipBrokeredMessageInspector" value="Microsoft.WindowsAzure.CAT.ServiceBusExplorer.ZipBrokeredMessageInspector,ServiceBusExplorer"/>
</brokeredMessageInspectors>
<eventDataInspectors>
<add key="LogEventDataInspector" value="Microsoft.WindowsAzure.CAT.ServiceBusExplorer.LogEventDataInspector,ServiceBusExplorer"/>
<add key="ZipEventDataInspector" value="Microsoft.WindowsAzure.CAT.ServiceBusExplorer.ZipEventDataInspector,ServiceBusExplorer"/>
</eventDataInspectors>
<brokeredMessageGenerators>
<add key="OnOffDeviceBrokeredMessageGenerator" value="Microsoft.WindowsAzure.CAT.ServiceBusExplorer.OnOffDeviceBrokeredMessageGenerator,ServiceBusExplorer"/>
<add key="ThresholdDeviceBrokeredMessageGenerator"
value="Microsoft.WindowsAzure.CAT.ServiceBusExplorer.ThresholdDeviceBrokeredMessageGenerator,ServiceBusExplorer"/>
</brokeredMessageGenerators>
<eventDataGenerators>
<add key="OnOffDeviceEventDataGenerator" value="Microsoft.WindowsAzure.CAT.ServiceBusExplorer.OnOffDeviceEventDataGenerator,ServiceBusExplorer"/>
<add key="ThresholdDeviceEventDataGenerator" value="Microsoft.WindowsAzure.CAT.ServiceBusExplorer.ThresholdDeviceEventDataGenerator,ServiceBusExplorer"/>
</eventDataGenerators>
<appSettings>
<add key="debug" value="true"/>
<add key="connectivityMode" value="AutoDetect"/>
<add key="selectedEntities" value="Queues,Topics,Relays,Event Hubs,Notification Hubs"/>
<add key="encoding" value="UTF8"/>
<add key="showMessageCount" value="true"/>
<add key="saveMessageToFile" value="true"/>
<add key="savePropertiesToFile" value="true"/>
<add key="saveCheckpointsToFile" value="true"/>
<add key="scheme" value="sb"/>
<add key="message" value="<message>Hi mate, how are you?</message>"/>
<add key="file" value=""/>
<add key="label" value="Service Bus Explorer"/>
<add key="retryCount" value="10"/>
<add key="retryTimeout" value="100"/>
<add key="top" value="10"/>
<add key="receiveTimeout" value="1"/>
<add key="serverTimeout" value="5"/>
<add key="prefetchCount" value="0"/>
<add key="senderThinkTime" value="500"/>
<add key="receiverThinkTime" value="500"/>
<add key="monitorRefreshInterval" value="30"/>
<add key="subscriptionId" value="1a45a694-ae23-4650-9774-89a571c462f6" />
<add key="certificateThumbprint" value="4AEA75244040D33F6E51ACD64594CB0727302507" />
<add key="messageDeferProvider" value="Microsoft.WindowsAzure.CAT.ServiceBusExplorer.InMemoryMessageDeferProvider,ServiceBusExplorer"/>
<add key="Microsoft.ServiceBus.X509RevocationMode" value="NoCheck"/>
<add key="ClientSettingsProvider.ServiceUri" value=""/>
</appSettings>
<system.net>
<connectionManagement>
<add address="*" maxconnection="50"/>
</connectionManagement>
</system.net>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
</startup>
<system.serviceModel>
<extensions>
<!-- In this extension section we are introducing all known service bus extensions. User can remove the ones they don't need. -->
<behaviorExtensions>
<add name="connectionStatusBehavior"
type="Microsoft.ServiceBus.Configuration.ConnectionStatusElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="transportClientEndpointBehavior"
type="Microsoft.ServiceBus.Configuration.TransportClientEndpointBehaviorElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="serviceRegistrySettings"
type="Microsoft.ServiceBus.Configuration.ServiceRegistrySettingsElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</behaviorExtensions>
<bindingElementExtensions>
<add name="netMessagingTransport"
type="Microsoft.ServiceBus.Messaging.Configuration.NetMessagingTransportExtensionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="tcpRelayTransport"
type="Microsoft.ServiceBus.Configuration.TcpRelayTransportElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="httpRelayTransport"
type="Microsoft.ServiceBus.Configuration.HttpRelayTransportElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="httpsRelayTransport"
type="Microsoft.ServiceBus.Configuration.HttpsRelayTransportElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="onewayRelayTransport"
type="Microsoft.ServiceBus.Configuration.RelayedOnewayTransportElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</bindingElementExtensions>
<bindingExtensions>
<add name="basicHttpRelayBinding"
type="Microsoft.ServiceBus.Configuration.BasicHttpRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="webHttpRelayBinding"
type="Microsoft.ServiceBus.Configuration.WebHttpRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="ws2007HttpRelayBinding"
type="Microsoft.ServiceBus.Configuration.WS2007HttpRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="netTcpRelayBinding"
type="Microsoft.ServiceBus.Configuration.NetTcpRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="netOnewayRelayBinding"
type="Microsoft.ServiceBus.Configuration.NetOnewayRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="netEventRelayBinding"
type="Microsoft.ServiceBus.Configuration.NetEventRelayBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="netMessagingBinding"
type="Microsoft.ServiceBus.Messaging.Configuration.NetMessagingBindingCollectionElement, Microsoft.ServiceBus, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</bindingExtensions>
</extensions>
</system.serviceModel>
</configuration>