Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Registering an AIC

Status
Not open for further replies.

orion2347

IS-IT--Management
Mar 4, 2002
10
0
0
SG
Hi,

I've created an AIC inside my Visual Basic project and I need to register it to allow BizTalk to access it. At the moment, I've written this to do the registration.

<ComClass(AICOBRIndent.ClassId, AICOBRIndent.InterfaceId, AICOBRIndent.EventsId)> _
Public Class AICOBRIndent

Inherits ServicedComponent
Implements IBTSAppIntegration

#Region " COM GUIDs"
Public Const ClassId As String = "05D81DFD-A83E-445D-9819-054C968CDC00"
Public Const InterfaceId As String = "31D37B75-B6A6-45A0-AA5F-DD2BE6D52EF9"
Public Const EventsId As String = "EC4E966C-D213-46B4-8402-C534F46F1414"
#End Region

...

I assumed that this would handle the registration for me. However, when I go into BizTalk Messenging Manager, I want to specify this AIC as the Primary Transport Address. The component does not appear in the list.

Any help would be much appreciated.

Thanks!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top