Hi,
I have a VBScript to configurate a messaging services in BIZTALK 2002.
In that script I have the following instructions:
———————————–
Function Create_lOrg110007
org.clear
org.name = \”MyOrg\”
org.Comments = \”\”
lOrg110007 = org.Create
Call ErrCheck(lOrg110007) lAlias120008 = GetOrgNameAliasID ( org )
End Function
Function Create_lChannel180004
channel.clear
channel.name = \”MyChannel\”
channel.SourceEndPoint.Organization = lOrg110007
channel.SourceEndPoint.Alias = lAlias120008
————————————-
The problem with this script is that I need to create a new organization. However that I need is to use a created organization. Probably I need to change the line \”lOrg110007 = org.Create\”, but I don’t know what is the VB code for doing this.
I will appreciate your help on this issue.
Thanks in advance.