forked from Particular/docs.particular.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.yaml
1116 lines (1110 loc) · 40 KB
/
menu.yaml
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- Name: Getting Started
Url: get-started
Topics:
- Url: get-started
Title: Getting Started
Articles:
- Url: tutorials/quickstart
Title: Quick Start Tutorial
- Url: tutorials/intro-to-nservicebus
Title: Messaging Basics Tutorial
Articles:
- Url: tutorials/intro-to-nservicebus/1-getting-started
Title: Getting Started
- Url: tutorials/intro-to-nservicebus/2-sending-a-command
Title: Sending a command
- Url: tutorials/intro-to-nservicebus/3-multiple-endpoints
Title: Multiple endpoints
- Url: tutorials/intro-to-nservicebus/4-publishing-events
Title: Publishing events
- Url: tutorials/intro-to-nservicebus/5-retrying-errors
Title: Retrying errors
- Url: tutorials
Title: More tutorials
- Url: get-started/high-level-content
Title: High-level content
- Name: NServiceBus
Topics:
- Url: nservicebus
Title: General
Articles:
- Url: platform
Title: Service Platform
- Url: samples/step-by-step
Title: Step by Step Sample
- Url: samples/endpoint-configuration
Title: Configuration choices Sample
- Url: nservicebus/concept-overview
Title: Concepts
- Url: nservicebus/dotnet-templates
Title: dotnet new Templates
- Url: platform/installer
Title: Platform Installer
- Url: nservicebus/licensing
Title: License
- Url: components
Title: Extensions
- Url: platform/contributing
Title: Contributing
- Url: nservicebus/architecture/principles
Title: Architectural Principles
- Url: nservicebus/architecture
Title: Bus vs. Broker
- Url: nservicebus/upgrades
Title: Upgrade Guides
Articles:
- Url: nservicebus/upgrades/support-policy
Title: Support Policy
Articles:
- Url: nservicebus/upgrades/supported-versions
Title: Supported versions
- Url: nservicebus/upgrades/all-versions
Title: All versions
- Url: nservicebus/upgrades/supported-platforms
Title: Supported platforms
- Url: nservicebus/upgrades/release-policy
Title: Release Policy
- Url: security-advisories
Title: Security Advisories
Articles:
- Url: security-advisories/msmq-permissions
Title: 2017-01-10
- Url: security-advisories/sqlserver-sqlinjection
Title: 2016-07-05
- Url: nservicebus/upgrades/callbacks-1to2
Title: Callbacks 1 to 2
- Url: nservicebus/upgrades/6to7
Title: NServiceBus 6 to 7
Articles:
- Url: nservicebus/upgrades/encryption-1to2
Title: Encryption
- Url: nservicebus/upgrades/6to6.2
Title: NServiceBus 6 to 6.2
- Url: nservicebus/upgrades/5to6
Title: NServiceBus 5 to 6
Articles:
- Url: nservicebus/upgrades/5to6/moving-away-from-ibus
Title: Migrating off IBus
- Url: nservicebus/upgrades/5to6/endpoint
Title: Endpoint API changes
- Url: nservicebus/upgrades/5to6/handlers-and-sagas
Title: Handlers and Sagas
- Url: nservicebus/upgrades/5to6/async-suffix
Title: Async Suffix
- Url: nservicebus/upgrades/5to6/transaction-configuration
Title: Transaction configuration
- Url: nservicebus/upgrades/5to6/headers
Title: Headers
- Url: nservicebus/upgrades/5to6/callbacks
Title: Callbacks
- Url: nservicebus/upgrades/5to6/messaging
Title: Messaging
- Url: nservicebus/upgrades/5to6/serialization
Title: Serialization
- Url: nservicebus/upgrades/5to6/recoverability
Title: Recoverability
- Url: nservicebus/upgrades/5to6/subscriptions
Title: Subscriptions
- Url: nservicebus/upgrades/5to6/assembly-scanning
Title: Assembly Scanning
- Url: nservicebus/upgrades/5to6/deprecated-transportmessage
Title: Deprecated TransportMessage
- Url: nservicebus/upgrades/5to6/distributor
Title: Distributor
- Url: nservicebus/upgrades/5to6/extension-seams
Title: Extension Seams
- Url: nservicebus/upgrades/5to6/dependency-injection
Title: Dependency Injection
- Url: nservicebus/upgrades/5to6/tools-and-helpers
Title: Tools and Helpers
- Url: nservicebus/upgrades/4to5
Title: NServiceBus 4 to 5
- Url: nservicebus/upgrades/3to4
Title: NServiceBus 3 to 4
- Url: nservicebus/upgrades/encryption-key-identifiers
Title: Upgrade encryption configuration
- Title: Metrics
Articles:
- Url: nservicebus/upgrades/metrics-1to2
Title: Version 1 to 2
- Url: nservicebus/upgrades/metrics-1to1.1
Title: Version 1 to 1.1
- Title: NServiceBus Host
Articles:
- Url: nservicebus/upgrades/host-4to5
Title: Version 4 to 5
- Url: nservicebus/upgrades/host-7to8
Title: Version 7 to 8
- Url: nservicebus/upgrades/host-6to7
Title: Version 6 to 7
- Title: NServiceBus.Azure deprecated
Url: nservicebus/upgrades/azure-deprecation
- Title: MessagePack changes
Url: nservicebus/upgrades/messagepack-changes
- Title: Azure BlobStorage DataBus
Articles:
- Url: nservicebus/upgrades/absdatabus-6to1
Title: Migrating off NServiceBus.Azure
- Url: nservicebus/upgrades/absdatabus-1to2
Title: Version 1 to 2
- Title: Azure Cloud Services Host
Articles:
- Url: nservicebus/upgrades/acs-host-7to8
Title: Version 7 to 8
- Url: nservicebus/upgrades/acs-host-6to7
Title: Version 6 to 7
- Title: Gateway
Articles:
- Url: nservicebus/upgrades/gateway-1to2
Title: Version 1 to 2
- Title: NServiceBus Testing
Articles:
- Url: nservicebus/upgrades/testing-5to6
Title: Version 5 to 6
- Url: nservicebus/upgrades/testing-6to7
Title: Version 6 to 7
- Title: Message Property Encryption
Articles:
- Url: nservicebus/upgrades/externalize-encryption
Title: Migrate To External Nuget
- Title: Performance Counters
Articles:
- Url: nservicebus/upgrades/externalize-perfcounters
Title: Migrate To External Nuget
- Url: nservicebus/upgrades/perfcounters-1to2
Title: Version 1 to 2
- Title: ServiceControl Plugins
Articles:
- Url: nservicebus/upgrades/nsb6-sc-plugins-1to2
Title: Version 1 to 2
- Url: nservicebus/upgrades/nservicebus.sagaaudit
Title: ServiceControl.Plugin.X.SagaAudit to NServiceBus.SagaAudit
- Url: nservicebus/upgrades/nservicebus.customchecks
Title: ServiceControl.Plugin.X.CustomChecks to NServiceBus.CustomChecks
- Url: nservicebus/upgrades/nservicebus.heartbeat
Title: ServiceControl.Plugin.X.Hartbeat to NServiceBus.Hartbeat
- Url: nservicebus/messaging
Title: Messaging
Articles:
- Url: nservicebus/messaging/messages-events-commands
Title: Messages, Events and Commands
Articles:
- Url: nservicebus/messaging/message-identity
Title: Message Identity
- Url: nservicebus/messaging/messages-as-interfaces
Title: Messages as Interfaces
- Url: nservicebus/messaging/conventions
Title: Conventions
- Url: nservicebus/messaging/unobtrusive-mode
Title: Unobtrusive Mode
- Url: nservicebus/messaging/best-practice-enforcement
Title: Best practice enforcement
- Url: nservicebus/messaging/evolving-contracts
Title: Evolving contracts
- Url: nservicebus/messaging/send-a-message
Title: Sending messages
Articles:
- Url: nservicebus/messaging/reply-to-a-message
Title: Replying
- Url: nservicebus/messaging/batched-dispatch
Title: Batched message dispatch
- Url: nservicebus/messaging/callbacks
Title: Client side Callbacks
- Url: nservicebus/messaging/uniformsession
Title: Uniform Session between message session and pipeline
- Url: nservicebus/messaging/discard-old-messages
Title: Discarding Expired Messages
- Url: nservicebus/messaging/non-durable-messaging
Title: Non-Durable Messaging
- Url: nservicebus/messaging/forwarding
Title: Forwarding
- Url: nservicebus/messaging/delayed-delivery
Title: Delayed Delivery
Articles:
- Url: nservicebus/messaging/timeout-manager
Title: Timeout Manager
- Url: nservicebus/messaging/publish-subscribe
Title: Publish Subscribe
Articles:
- Url: nservicebus/messaging/publish-subscribe/publish-handle-event
Title: Publish and Handle an Event
- Url: nservicebus/messaging/publish-subscribe/controlling-what-is-subscribed
Title: Subscription configuration
- Url: nservicebus/messaging/headers
Title: Message Headers
Articles:
- Url: nservicebus/messaging/header-manipulation
Title: Header Manipulation
- Url: nservicebus/messaging/third-party-integration
Title: Third Party Integration
- Url: nservicebus/endpoints/specify-endpoint-name
Title: Specify Endpoint Name
- Url: nservicebus/messaging/routing
Title: Routing
Articles:
- Url: nservicebus/messaging/routing-extensibility
Title: Routing extensibility points
- Url: nservicebus/messaging/file-based-routing
Title: Centralized file-based routing
- Url: nservicebus/scheduling
Title: Scheduling
- Url: nservicebus/gateway
Title: Gateway
Articles:
- Url: nservicebus/gateway/multi-site-deployments
Title: Multi-Site Deployments
- Url: nservicebus/gateway/troubleshooting
Title: Troubleshooting
- Url: nservicebus/gateway/scale-out
Title: Scale-Out
- Url: nservicebus/bridge
Title: Transport Bridge
- Url: nservicebus/rawmessaging
Title: Raw messaging
- Url: nservicebus/wormhole
Title: Wormhole Gateway
- Url: nservicebus/audit-filter
Title: AuditFilter
- Url: nservicebus/mailer
Title: Mailer
- Url: nservicebus/outbox
Title: Outbox
- Url: nservicebus/messaging/attachments-fileshare
Title: FileShare Attachments
- Url: nservicebus/messaging/attachments-sql
Title: Sql Attachments
- Url: nservicebus/messaging/databus
Title: Databus
Articles:
- Url: nservicebus/messaging/databus/file-share
Title: File Share
- Url: nservicebus/messaging/databus/azure-blob-storage
Title: Azure Blob Storage
- Url: nservicebus/messaging/databus/mongodb-tekmaven
Title: MongoDB DataBus
- Url: nservicebus/messaging/databus/custom
Title: Custom
- Url: nservicebus/hosting
Title: Hosting
Articles:
- Url: nservicebus/endpoints
Title: Endpoints
Articles:
- Url: nservicebus/endpoints/specify-endpoint-name
Title: Endpoint Name
- Url: nservicebus/endpoints/decommissioning-endpoints
Title: Decommissioning Endpoints
- Url: nservicebus/hosting/windows-service
Title: Windows Service
- Url: nservicebus/hosting/override-hostid
Title: Overriding the host identifier
- Url: nservicebus/hosting/custom-configuration-providers
Title: Overriding app.config settings
- Url: nservicebus/hosting/assembly-scanning
Title: Assembly scanning
- Url: nservicebus/hosting/critical-errors
Title: Critical Errors
- Url: nservicebus/hosting/web-application
Title: Web Application
- Url: nservicebus/hosting/service-fabric-hosting
Title: Service Fabric
Articles:
- Url: nservicebus/hosting/service-fabric-hosting/hosting-gateway
Title: Hosting Gateway
- Url: nservicebus/hosting/publishing-from-web-applications
Title: Publishing from Web Applications
- Url: nservicebus/wcf
Title: Exposing endpoints via WCF
- Url: nservicebus/hosting/nservicebus-host
Title: NServiceBus Host
Articles:
- Url: nservicebus/hosting/nservicebus-host/installation
Title: Installation
- Url: nservicebus/hosting/nservicebus-host/profiles
Title: Profiles
- Url: nservicebus/hosting/nservicebus-host/profiles-customization
Title: Profiles customization
- Url: nservicebus/hosting/nservicebus-host/logging-configuration
Title: Logging configuration
- Url: nservicebus/hosting/docker-host
Title: Docker Container Host
- Url: nservicebus/hosting/cloud-services-host
Title: Azure Cloud Services Host
Articles:
- Url: nservicebus/hosting/cloud-services-host/configuration
Title: Configuration
- Url: nservicebus/hosting/cloud-services-host/logging
Title: Logging
- Url: nservicebus/hosting/cloud-services-host/startup
Title: Startup Behavior
- Url: nservicebus/hosting/cloud-services-host/shared-hosting
Title: Shared Hosting
- Url: nservicebus/hosting/cloud-services-host/critical
Title: Critical Errors
- Url: nservicebus/hosting/cloud-services-host/running-without-emulator
Title: Running without emulator
- Url: nservicebus/hosting/cloud-services-host/faq
Title: FAQ
- Url: nservicebus/lifecycle
Title: Interface life-cycles
Articles:
- Url: nservicebus/lifecycle/ineedinitialization
Title: Initialization
- Url: nservicebus/lifecycle/iwanttorunbeforeconfigurationisfinalized
Title: Before Configuration Finalized
- Url: nservicebus/lifecycle/iwanttorunwhenconfigurationiscomplete
Title: Configuration Ends
- Url: nservicebus/lifecycle/endpointstartandstop
Title: Endpoint Instance Starts and Stops
- Url: nservicebus/handlers-and-sagas
Title: Handlers and Sagas
Articles:
- Url: nservicebus/handlers/async-handlers
Title: Asynchronous Handlers
- Url: nservicebus/handlers
Title: Handlers
Articles:
- Url: nservicebus/handlers/accessing-data
Title: Accessing data
- Url: nservicebus/handlers/handler-ordering
Title: Handler Order
- Url: nservicebus/handlers/handler-ordering-by-interface
Title: Handler Order by interface
- Url: nservicebus/sagas
Title: Sagas
Articles:
- Url: nservicebus/sagas/message-correlation
Title: Message Correlation
- Url: nservicebus/sagas/timeouts
Title: Timeouts
- Url: nservicebus/sagas/saga-finding
Title: Complex finding logic
- Url: nservicebus/sagas/saga-not-found
Title: Not Found
- Url: nservicebus/sagas/concurrency
Title: Concurrency
- Url: nservicebus/sagas/reply-replaytooriginator-differences
Title: Reply and ReplyToOriginator differences
- Url: nservicebus/sagas/saga-audit
Title: Debugging sagas in ServiceInsight
- Url: nservicebus/testing
Title: Testing
Articles:
- Url: samples/unit-testing
Title: AAA style tests
- Url: nservicebus/testing/fluent
Title: Fluent style tests
- Url: nservicebus/messaging/callbacks-testing
Title: Callbacks
- Url: nservicebus/recoverability
Title: Recoverability
Articles:
- Url: nservicebus/recoverability/configure-error-handling
Title: Configure error handling
- Url: nservicebus/recoverability/configure-immediate-retries
Title: Configure immediate retries
- Url: nservicebus/recoverability/configure-delayed-retries
Title: Configure delayed retries
- Url: nservicebus/recoverability/exception-caveats
Title: Exception Caveats
- Url: nservicebus/recoverability/custom-recoverability-policy
Title: Custom Policy
- Url: nservicebus/recoverability/subscribing-to-error-notifications
Title: Error notifications
- Url: nservicebus/pipeline
Title: Pipeline
Articles:
- Url: nservicebus/pipeline/steps-stages-connectors
Title: Steps, Stages and Connectors
- Url: nservicebus/pipeline/manipulate-with-behaviors
Title: Manipulate with Behaviors
- Url: nservicebus/pipeline/message-mutators
Title: Message Mutators
- Url: nservicebus/pipeline/unit-of-work
Title: Unit of Work
- Url: nservicebus/pipeline/aborting
Title: Abort execution
- Url: nservicebus/pipeline/events
Title: Subscribing to notification events
- Url: nservicebus/pipeline/features
Title: Features
- Url: nservicebus/pipeline/customizing-error-handling
Title: Customizing Error Handling
- Url: nservicebus/satellites
Title: Satellites
- Url: nservicebus/serialization
Title: Serialization
Articles:
- Url: nservicebus/serialization/newtonsoft
Title: Json.NET
- Url: nservicebus/serialization/json
Title: JSON
- Url: nservicebus/serialization/xml
Title: Xml
- Url: nservicebus/serialization/jil
Title: Jil
- Url: nservicebus/serialization/utf8json
Title: Utf8Json
- Url: nservicebus/serialization/wire
Title: Wire
- Url: nservicebus/serialization/hyperion
Title: Hyperion
- Url: nservicebus/serialization/messagepack
Title: MessagePack
- Url: nservicebus/serialization/msgpack
Title: MsgPack
- Url: nservicebus/serialization/protobufgoogle
Title: ProtoBuf-Google
- Url: nservicebus/serialization/protobufnet
Title: ProtoBuf-Net
- Url: nservicebus/serialization/bond
Title: Bond
- Url: nservicebus/serialization/zeroformatter
Title: ZeroFormatter
- Url: nservicebus/serialization/binary
Title: Binary
- Url: nservicebus/serialization/custom-serializer
Title: Custom
- Url: nservicebus/dependency-injection
Title: Dependency Injection
Articles:
- Url: nservicebus/dependency-injection/child-lifetime
Title: Child Lifetimes
- Url: nservicebus/dependency-injection/property-injection
Title: Property injection
- Url: nservicebus/dependency-injection/autofac
Title: Autofac
- Url: nservicebus/dependency-injection/castlewindsor
Title: Castle Windsor
- Url: nservicebus/dependency-injection/ninject
Title: Ninject
- Url: nservicebus/dependency-injection/spring
Title: Spring
- Url: nservicebus/dependency-injection/simpleinjector
Title: SimpleInjector
- Url: nservicebus/dependency-injection/structuremap
Title: StructureMap
- Url: nservicebus/dependency-injection/unity
Title: Unity
- Url: nservicebus/logging
Title: Logging
Articles:
- Url: nservicebus/logging/message-contents
Title: Message contents
- Url: nservicebus/logging/usage
Title: Writing a log entry
- Url: nservicebus/logging/log4net
Title: Log4Net
- Url: nservicebus/logging/microsoft
Title: Microsoft Logging
- Url: nservicebus/logging/nlog
Title: NLog
- Url: nservicebus/logging/common-logging
Title: CommonLogging
- Url: nservicebus/logging/serilog
Title: Serilog
- Url: nservicebus/logging/serilog-tracing
Title: Serilog Tracing
- Url: nservicebus/logging/eventsourcelogging
Title: EventSourceLogging
- Url: nservicebus/operations/auditing
Title: Auditing Messages
- Url: nservicebus/security
Title: Security
- Url: nservicebus/operations
Title: Operations
Articles:
- Url: nservicebus/operations/transactions-message-processing
Title: Transactions and Message Processing
- Url: nservicebus/operations/auditing
Title: Auditing Messages
- Url: nservicebus/security/property-encryption
Title: Message Property Encryption
- Url: nservicebus/operations/configuring-aws
Title: NServiceBus in AWS
- Url: nservicebus/operations/dotnet-framework-version-requirements
Title: .NET Framework requirements
- Url: nservicebus/operations/installers
Title: Installers
- Url: nservicebus/operations/management-using-powershell
Title: PowerShell
- Url: nservicebus/operations/tuning
Title: Tuning endpoint message processing
- Url: nservicebus/operations/running-on-windows
Title: Running on Windows
- Url: nservicebus/endpoints/decommissioning-endpoints
Title: Decommissioning Endpoints
- Name: Transports
Url: transports
Topics:
- Url: transports
Title: General
Articles:
- Url: transports/transactions
Title: Transactions
- Url: transports/scale-out
Title: Scaling out
- Url: transports/queuecreation
Title: Creating queues
- Url: transports/upgrades
Title: Upgrade Guides
Articles:
- Title: Azure Storage Queues
Articles:
- Url: transports/upgrades/asq-6to7
Title: Version 6 to 7
- Url: transports/upgrades/asq-7to8
Title: Version 7 to 8
- Title: Azure Service Bus
Articles:
- Url: transports/upgrades/asb-7to8
Title: Version 7 to 8
- Url: transports/upgrades/asb-6to7
Title: Version 6 to 7
- Title: RabbitMQ
Articles:
- Url: transports/upgrades/rabbitmq-4to5
Title: Version 4 to 5
- Url: transports/upgrades/rabbitmq-4.0to4.1
Title: Version 4.0 to 4.1
- Url: transports/upgrades/rabbitmq-3to4
Title: Version 3 to 4
- Title: SQL Server
Articles:
- Url: transports/upgrades/sqlserver-31to4
Title: Version 3.1 to 4
- Url: transports/upgrades/sqlserver-3to31
Title: Version 3 to 3.1
- Url: transports/upgrades/sqlserver-unicode-headers
Title: Unicode characters in headers
- Url: transports/upgrades/sqlserver-2to3
Title: Version 2 to 3
- Url: transports/upgrades/sqlserver-2.x-2.2.4
Title: Version 2.x to 2.2.4
- Url: transports/upgrades/sqlserver-1.x-1.2.5
Title: Version 1.x to 1.2.5
- Title: Amazon SQS
Articles:
- Url: transports/upgrades/amazonsqs-3to4
Title: Version 3 to 4
- Url: transports/upgrades/amazonsqs-2to3
Title: Version 2 to 3
- Url: transports/learning
Title: Learning Transport
Articles:
- Url: transports/learning/viewing-messages
Title: Viewing content
- Url: transports/azure-service-bus
Title: Azure Service Bus
Articles:
- Url: transports/azure-service-bus/topologies
Title: Topologies
- Url: transports/azure-service-bus/configuration
Title: Configuration
Articles:
- Url: transports/azure-service-bus/configuration/full
Title: Full API
- Url: transports/azure-service-bus/retries
Title: Retry behavior
- Url: transports/azure-service-bus/sanitization
Title: Sanitization
- Url: transports/azure-service-bus/addressing-logic
Title: Addressing Logic
- Url: transports/azure-service-bus/securing-connection-strings
Title: Securing Namespace Connections
- Url: transports/azure-service-bus/namespace-hierarchy
Title: Namespace hierarchy
- Url: transports/azure-service-bus/token-provider
Title: Token Provider
- Title: Routing
Articles:
- Url: transports/azure-service-bus/publisher-names-configuration
Title: Publishers name configuration
- Url: transports/azure-service-bus/multiple-namespaces-support
Title: Multiple namespaces
- Url: nservicebus/azure/data-distribution
Title: Data distribution
- Url: transports/azure-service-bus/performance-tuning
Title: Performance Tuning
Articles:
- Url: transports/azure-service-bus/batching
Title: Batching
- Url: transports/azure-service-bus/message-lock-renewal
Title: Message lock renewal
- Url: transports/azure-service-bus/transaction-support
Title: Transaction Support
Articles:
- Url: nservicebus/azure/understanding-transactionality-in-azure
Title: Transactions in Azure
- Url: nservicebus/azure/ways-to-live-without-transactions
Title: Avoiding Transactions
- Url: transports/azure-service-bus/understanding-transactions-and-delivery-guarantees
Title: Internal transaction and delivery guarantees
- Url: transports/azure-service-bus/error-handling
Title: Error Handling
Articles:
- Url: transports/azure-service-bus/dlq-forwarding
Title: Forwarding
- Url: transports/azure-service-bus/oversized-sends
Title: Oversized Sends
- Url: transports/azure-service-bus/native-integration
Title: Native Integration
- Url: transports/azure-service-bus/brokered-message-creation
Title: Brokered Message Creation
- Url: transports/azure-service-bus/operational-scripting
Title: Operational Scripting
- Url: transports/azure-service-bus/faq
Title: FAQ
- Url: transports/azure-storage-queues
Title: Azure Storage Queues
Articles:
- Url: transports/azure-storage-queues/faq
Title: FAQ
- Url: transports/azure-storage-queues/transaction-support
Title: Transaction Support
- Url: nservicebus/azure/understanding-transactionality-in-azure
Title: Transactions in Azure
- Url: nservicebus/azure/ways-to-live-without-transactions
Title: Avoiding Transactions
- Url: transports/azure-storage-queues/configuration
Title: Configuration
- Url: transports/azure-storage-queues/delayed-delivery
Title: Delayed Delivery
- Url: transports/azure-storage-queues/sanitization
Title: Sanitization
- Url: transports/azure-storage-queues/performance-tuning
Title: Performance Tuning
- Url: transports/azure-storage-queues/multi-storageaccount-support
Title: Multiple storage accounts
- Url: nservicebus/azure/data-distribution
Title: Data distribution
- Url: transports/sql
Title: SQL Server
Articles:
- Url: transports/sql/design
Title: Design
- Url: transports/sql/native-delayed-delivery
Title: Native Delayed Delivery
- Url: transports/sql/connection-settings
Title: Connection settings
- Url: transports/sql/addressing
Title: Addressing
- Url: transports/sql/transactions
Title: Transaction support
- Url: transports/sql/discard-expired-messages
Title: Discarding expired messages
- Url: transports/sql/deployment-options
Title: Deployment options
- Url: transports/sql/operations-scripting
Title: Troubleshooting and scripting
- Url: transports/sql/sql-native
Title: SQL Transport - Native
- Url: transports/sql/sql-statements
Title: SQL statements
- Url: transports/sql/entity-framework
Title: Entity Framework caveats
- Url: transports/sql/callbacks
Title: Callback support
- Url: transports/msmq
Title: MSMQ
Articles:
- Url: transports/msmq/routing
Title: Physical routing
- Url: transports/msmq/connection-strings
Title: Connection strings
- Url: transports/msmq/dead-letter-queues
Title: Dead Letter Queues
- Url: transports/msmq/viewing-message-content-in-msmq
Title: Viewing content
- Url: transports/msmq/transportconfig
Title: Configuration
- Url: transports/msmq/troubleshooting
Title: Troubleshooting
- Url: transports/msmq/subscription-authorisation
Title: Subscription Authorization
- Url: transports/msmq/operations-scripting
Title: Scripting
- Url: transports/msmq/uninstalling-msmq
Title: Uninstalling MSMQ
- Url: transports/msmq/full-qualified-domain-name
Title: Fully Qualified Domain Names
- Url: transports/msmq/scaling-out
Title: Scaling out
- Url: transports/msmq/sender-side-distribution
Title: Scaling out with Sender-Side Distribution
- Url: transports/msmq/distributor
Title: Scaling with the Distributor
Articles:
- Url: transports/msmq/distributor/configuration
Title: Configuration
- Url: transports/msmq/distributor/deploying-to-a-cluster
Title: Deploying to Failover Cluster
- Url: transports/msmq/distributor/when-worker-goes-down
Title: When a worker goes down
- Url: transports/msmq/distributor/disconnect-workers
Title: Disconnect Workers
- Url: transports/msmq/distributor/publish-subscribe
Title: Publish-Subscribe
- Url: transports/msmq/distributor/error-handling
Title: Error handling
- Url: transports/msmq/distributor/troubleshooting
Title: Troubleshooting
- Url: transports/rabbitmq
Title: RabbitMQ
Articles:
- Url: transports/rabbitmq/connection-settings
Title: Connection settings
- Url: transports/rabbitmq/routing-topology
Title: Routing topology
- Url: transports/rabbitmq/delayed-delivery
Title: Delayed Delivery
- Url: transports/rabbitmq/message-id-strategy
Title: Message Id strategy
- Url: transports/rabbitmq/callbacks
Title: Callback support
- Url: transports/rabbitmq/transactions-and-delivery-guarantees
Title: Transactions and delivery guarantees
- Url: transports/rabbitmq/cluster
Title: In a cluster
- Url: transports/rabbitmq/operations-scripting
Title: Scripting
- Url: transports/rabbitmq/rabbitmqclient-nuget
Title: RabbitMQ.Client NuGet usage
- Url: transports/sqs
Title: Amazon SQS
Articles:
- Url: transports/sqs/configuration-options
Title: Configuration Options
- Url: transports/sqs/delayed-delivery
Title: Delayed Delivery
- Url: transports/sqs/why-use-sqs
Title: Why use SQS
- Url: transports/sqs/topology
Title: Topology
- Url: transports/sqs/transaction-support
Title: Transaction
- Url: transports/sqs/operations-scripting
Title: Scripting
- Url: transports/eventstore
Title: Event Store
- Url: transports/kafka
Title: Kafka
- Name: Persistence
Url: persistence
Topics:
- Url: persistence
Title: General
Articles:
- Url: persistence/order
Title: Persistence order
- Url: persistence/upgrades
Title: Upgrade Guides
Articles:
- Title: Azure Storage
Articles:
- Url: persistence/upgrades/asp-1to2
Title: Version 1 to 2
- Url: persistence/upgrades/asp-6to1
Title: NServiceBus.Azure Version 6 to Version 1
- Url: persistence/upgrades/asp-saga-pruning
Title: Version 6.2.4 to 6.2.5
- Url: persistence/upgrades/asp-saga-deduplication
Title: Version 6.2.3 to 6.2.4
- Title: NHibernate
Articles:
- Url: persistence/upgrades/nhibernate-6to7
Title: Version 6 to 7
- Url: persistence/upgrades/nhibernate-timeouts-index
Title: Resolving incorrect timeout table indexes
- Url: persistence/upgrades/nhibernate-saga-index-fix
Title: Adding unique constraints on saga data tables
- Title: RavenDB
Articles:
- Url: persistence/upgrades/ravendb-4to5
Title: Version 4 to 5
- Url: persistence/upgrades/ravendb-3to4
Title: Version 3 to 4
- Title: SQL
Articles:
- Url: persistence/upgrades/sql-2to3
Title: Version 2 to 3
- Url: persistence/upgrades/sql-1to2
Title: Version 1 to 2
- Url: persistence/upgrades/sql-1.0.0-1.0.1
Title: Version 1 to 1.0.1
- Url: persistence/upgrades/sql-null-endpoint
Title: Support NServiceBus 5 subscribers
- Url: persistence/learning
Title: Learning Persistence
- Url: persistence/in-memory
Title: In-Memory
- Url: persistence/sql
Title: SQL
Articles:
- Url: persistence/sql/dialect-mssql
Title: SQL Server
Articles:
- Url: persistence/sql/sqlserver-scripts
Title: Scripts
- Url: persistence/sql/dialect-mysql
Title: MySQL
Articles:
- Url: persistence/sql/mysql-scripts
Title: Scripts
- Url: persistence/sql/dialect-oracle
Title: Oracle
Articles:
- Url: persistence/sql/oracle-scripts
Title: Scripts
- Url: persistence/sql/dialect-postgresql
Title: PostgreSQL
Articles:
- Url: persistence/sql/postgresql-scripts
Title: Scripts
- Url: persistence/sql/controlling-script-generation
Title: Script generation
- Url: persistence/sql/accessing-data
Title: Business data
- Url: persistence/sql/saga
Title: Sagas
- Url: persistence/sql/saga-finder
Title: Saga finders
- Url: persistence/sql/saga-concurrency
Title: Saga concurrency
- Url: persistence/sql/subscriptions
Title: Subscriptions
- Url: persistence/sql/outbox
Title: Outbox
- Url: persistence/sql/install
Title: Installation and deployment
- Url: persistence/sql/installer-workflow
Title: Installer Workflow
- Url: persistence/azure-storage
Title: Azure Storage
Articles:
- Url: persistence/azure-storage/configuration
Title: Configuration
- Url: nservicebus/azure/understanding-transactionality-in-azure
Title: Transactions in Azure
- Url: persistence/azure-storage/performance-tuning
Title: Performance Tuning
- Url: persistence/azure-storage/scripting
Title: Scripting
- Url: persistence/ravendb
Title: RavenDB
Articles:
- Url: persistence/ravendb/connection
Title: Connection Options
- Url: persistence/ravendb/saga-concurrency
Title: Saga concurrency
- Url: persistence/ravendb/operations-scripting
Title: Scripting
- Url: persistence/ravendb/installation
Title: Installation
- Url: persistence/ravendb/manual-dtc-settings
Title: Configure DTC
- Url: persistence/ravendb/outbox
Title: Outbox
- Url: persistence/ravendb/version-compatibility
Title: RavenDB Client Versions
- Url: persistence/ravendb/reroute-existing-timeouts
Title: Reroute Existing Timeouts
- Url: persistence/ravendb/subscription-versioning
Title: Subscription versioning
- Url: persistence/ravendb/licensing
Title: Licensing
- Url: persistence/ravendb/dtc
Title: DTC not supported
- Url: persistence/service-fabric
Title: Service Fabric
Articles:
- Url: persistence/service-fabric/sagas
Title: Sagas
- Url: persistence/service-fabric/outbox
Title: Outbox
- Url: persistence/service-fabric/transaction-sharing
Title: Transaction Sharing
- Url: persistence/nhibernate
Title: NHibernate
Articles:
- Url: persistence/nhibernate/accessing-data
Title: Business data
- Url: persistence/nhibernate/saga-concurrency
Title: Saga concurrency
- Url: persistence/nhibernate/outbox
Title: Outbox
- Url: persistence/nhibernate/sql-azure
Title: SQL Azure
- Url: persistence/nhibernate/scripting
Title: Scripting
- Url: persistence/msmq/subscription
Title: MSMQ Subscription
- Url: persistence/mongodb-tekmaven
Title: MongoDB
- Name: ServiceInsight
Topics:
- Title: Getting Started
Url: serviceinsight
Articles:
- Url: serviceinsight/license
Title: License installation
- Title: Usage
Articles:
- Url: serviceinsight/application-invocation
Title: Application Invocation
- Url: serviceinsight/managing-errors-and-retries
Title: Managing Errors and Retries
- Url: serviceinsight/sequence-diagram
Title: Sequence Diagram
- Url: serviceinsight/logging
Title: Logging
- Url: serviceinsight/no-data-available
Title: Data not available
- Name: ServicePulse
Topics:
- Title: Introduction
Articles:
- Url: servicepulse/installation
Title: Installation
- Url: servicepulse/intro-failed-messages
Title: Failed Messages
- Url: servicepulse/intro-failed-message-retries
Title: Retrying Failed Messages
- Url: servicepulse/intro-archived-messages
Title: Archived Messages
- Url: servicepulse/intro-pending-retries
Title: Pending Retries
- Url: servicepulse/redirect
Title: Redirects
- Url: servicepulse/event-types
Title: Events
- Title: Configuration
Articles:
- Url: servicepulse/host-config
Title: Hosting
- Url: servicepulse/how-to-configure-endpoints-for-monitoring
Title: Monitoring endpoints
- Url: servicepulse/install-servicepulse-in-iis
Title: Install in IIS
- Url: servicepulse/troubleshooting
Title: Troubleshooting
- Name: ServiceControl
Topics:
- Title: Licensing
Url: servicecontrol/license
- Title: Powershell