public
Description: My /dev/null Adapter for BizTalk Server
Homepage: http://winterdom.com/weblog/2005/03/06/BizTalk2004NullSendAdapterSample.aspx
Clone URL: git://github.com/tomasr/nulladapter.git
nulladapter / NullAdapter / NullAdapter.reg
100644 58 lines (36 sloc) 2.349 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
Windows Registry Editor Version 5.00
 
'
' Besides registering this .reg file, also remember
' to register the assembly for com interop using the command
' regasm /codebase Path/To/Winterdom.BizTalk.Adapters.NullAdapter.dll
'
 
[HKEY_CLASSES_ROOT\CLSID\{C98D3C74-F722-4F50-8AFC-4C2A9CB1D961}]
@="/dev/null Adapter"
 
[HKEY_CLASSES_ROOT\CLSID\{C98D3C74-F722-4F50-8AFC-4C2A9CB1D961}\BizTalk]
@="BizTalk"
'Type of the transport adapter
"TransportType"="/dev/null Adapter"
 
'Constraints define the capabilities of the adapter: e.g send, receive, request-response, etc
"Constraints"=dword:2012
 
'============= Registration for send side of adapter ==============
 
'Adapter framework property page for send location configuration
"TransmitLocation_PageProv"="{c6085098-b9f6-4214-be1c-b07ef5265e4d}"
 
'Class ID of the class that implements send part of adapter
"OutboundEngineCLSID"="{95810FF9-F609-4395-AEBE-995855430547}"
 
'Type name of the class that implements send part of the adapter
"OutboundTypeName"="Winterdom.BizTalk.Adapters.NullSendAdapter"
 
'Path to the assembly that implements sending part of the adapter
"OutboundAssemblyPath"="E:\\Projects\\Biztalk\\NullAdapter\\NullAdapter\\bin\\Debug\\Winterdom.BizTalk.Adapters.NullAdapter.dll"
 
'URL prefixes used for dynamic port transport resolution
"AliasesXML"="<AdapterAliasList><AdapterAlias>null://</AdapterAlias></AdapterAliasList>"
 
'SSO registration of the adapter framework property page for send location
"SendLocationPropertiesXML"="<CustomProps><AdapterConfig vt=\"8\"/></CustomProps>"
 
'============= End of registration for send side of adapter ==============
 
'Namespace of the adapter properties. The properties will be stored on message context under this namespace
"PropertyNameSpace"="urn:schemas-winterdom-com:nulladapter"
 
'Type name of the class that provides UI for adapter property pages
"AdapterMgmtTypeName"="Winterdom.BizTalk.Adapters.NullAdapterMgmt"
 
'Path to the assembly that implements UI for adapter property pages
"AdapterMgmtAssemblyPath"="E:\\Projects\\Biztalk\\NullAdapter\\NullAdapter\\bin\\Debug\\Winterdom.BizTalk.Adapters.NullAdapter.dll"
 
 
[HKEY_CLASSES_ROOT\CLSID\{C98D3C74-F722-4F50-8AFC-4C2A9CB1D961}\Implemented Categories]
 
[HKEY_CLASSES_ROOT\CLSID\{C98D3C74-F722-4F50-8AFC-4C2A9CB1D961}\Implemented Categories\{7F46FC3E-3C2C-405B-A47F-8D17942BA8F9}]