|
Home > Archive > BizTalk Server Applications Integration > August 2004 > Registering AIC for Primary Transport
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Registering AIC for Primary Transport
|
|
| orion2347 2004-07-22, 6:03 am |
| Hi,
I'm having this problem with registering an AIC for the Primary Transport in the Biztalk Messenging Services. I've coded the AIC in VB .Net, and the following is the code that I assumed would have done the registration for me after compilation.
<ComClass(AICTest.ClassId, AICTest.InterfaceId, AICTest.EventsId)> _
Public Class AICTest
Inherits ServicedComponent
Implements IBTSAppIntegration
#Region " COM GUIDs"
' These GUIDs provide the COM identity for this class
' and its COM interfaces. If you change them, existing
' clients will no longer be able to access the class.
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
...
Now, the thing is they can be accessed in Orchestration when drag out a COM Component implementation shape. Am I missing something?
Any help would be greatly appreciated.
Thanks! | |
| Delfin Heras 2004-08-05, 5:49 pm |
|
You could try to register your aic in COM+. This way you wont need to touch
the registy...
"orion2347" <orion2347.19spt2@mail.webservertalk.com> wrote in message
news:orion2347.19spt2@mail.webservertalk.com...
>
> Hi,
>
> I'm having this problem with registering an AIC for the Primary
> Transport in the Biztalk Messenging Services. I've coded the AIC in VB
> Net, and the following is the code that I assumed would have done the
> registration for me after compilation.
>
> <ComClass(AICTest.ClassId, AICTest.InterfaceId, AICTest.EventsId)> _
> Public Class AICTest
>
> Inherits ServicedComponent
> Implements IBTSAppIntegration
>
>
> #Region " COM GUIDs"
> ' These GUIDs provide the COM identity for this class
> ' and its COM interfaces. If you change them, existing
> ' clients will no longer be able to access the class.
> 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
>
> ..
>
> Now, the thing is they can be accessed in Orchestration when drag out a
> COM Component implementation shape. Am I missing something?
>
> Any help would be greatly appreciated.
>
> Thanks!
>
>
>
> --
> orion2347
> ------------------------------------------------------------------------
> Posted via http://www.webservertalk.com
> ------------------------------------------------------------------------
> View this thread: http://www.webservertalk.com/message318714.html
>
|
|
|
|
|