|
Home > Archive > BizTalk Server Tools > January 2005 > Remove assemblies with linked map etc.
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 |
Remove assemblies with linked map etc.
|
|
| Ben Jiang 2005-01-20, 5:51 pm |
| Hi,
You need to remove any maps or customed pipelines linked to an assembly
before you can remove the assembly within Biztalk Explorer.
Now my question is do we have a way by using WMI to create script (like the
ones under samples SDK) to automatically remove receive port(with customed
pipeline or map) first and then to remove the linked assembly?
The reason to do this is because I update my assembly and need to replace
the old one in our production environment (without BT explorer installed).
Another problem is that after I imports the binding file to my production
environment, how do I update sending port credential information such as
username and password?(as we all know that we have to delete username and
password information in our binding xml before we can import into a new
environment). We all know that BT administration console does NOT have
ability to modify thingy!!!??? (I do NOT want to install VS on my production
environment!)
Your help will be highly appreciated.
Cheers
Ben Jiang
| |
| Matt Milner 2005-01-21, 7:47 am |
| You don't have to remove the username and password information, the pwd just
gets masked when you export. You can edit hte binding file and put the
password in there. It will apply fine when you do.
matt
"Ben Jiang" <BenJiang@discussions.microsoft.com> wrote in message
news:DC6FE779-A136-42A2-914E-CC39C3865C00@microsoft.com...
> Hi,
> You need to remove any maps or customed pipelines linked to an assembly
> before you can remove the assembly within Biztalk Explorer.
>
> Now my question is do we have a way by using WMI to create script (like
> the
> ones under samples SDK) to automatically remove receive port(with customed
> pipeline or map) first and then to remove the linked assembly?
>
> The reason to do this is because I update my assembly and need to replace
> the old one in our production environment (without BT explorer installed).
>
> Another problem is that after I imports the binding file to my production
> environment, how do I update sending port credential information such as
> username and password?(as we all know that we have to delete username and
> password information in our binding xml before we can import into a new
> environment). We all know that BT administration console does NOT have
> ability to modify thingy!!!??? (I do NOT want to install VS on my
> production
> environment!)
>
> Your help will be highly appreciated.
>
> Cheers
> Ben Jiang
>
| |
| Ben Jiang 2005-01-26, 8:47 pm |
| Thank Matt,
Can you give me the indicate how to edit binding file so that we can specify
Password? (in what format? <Password vt="?" /> )
I always get error when I try to deploy it in production if I do not remove
the password and username tag in binding xml.
(I try to specify in different way for the tag <Password
vt="?">Mypassword</Password> here I try ?= 1,2,3,4,5,8 it never works!!!)
Your help will be great.
Cheers
Ben Jiang
"Matt Milner" wrote:
> You don't have to remove the username and password information, the pwd just
> gets masked when you export. You can edit hte binding file and put the
> password in there. It will apply fine when you do.
>
> matt
>
>
> "Ben Jiang" <BenJiang@discussions.microsoft.com> wrote in message
> news:DC6FE779-A136-42A2-914E-CC39C3865C00@microsoft.com...
>
>
>
| |
| Matt Milner 2005-01-28, 2:46 am |
| <Password vt="8">mypassword</Password> should do it for you. Keep in mind
that you are escaping this so it will actually look something like this in a
binding file:
<Password vt="8">mypassword</Password>
See the topic "programmatically configuring the HTTP adapter" or something
like that for an example of the XML to use.
Matt
"Ben Jiang" <BenJiang@discussions.microsoft.com> wrote in message
news:865A63F5-C3FA-4265-B319-FA6487CDAC15@microsoft.com...[vbcol=seagreen]
> Thank Matt,
> Can you give me the indicate how to edit binding file so that we can
> specify
> Password? (in what format? <Password vt="?" /> )
> I always get error when I try to deploy it in production if I do not
> remove
> the password and username tag in binding xml.
> (I try to specify in different way for the tag <Password
> vt="?">Mypassword</Password> here I try ?= 1,2,3,4,5,8 it never works!!!)
>
> Your help will be great.
>
> Cheers
> Ben Jiang
>
> "Matt Milner" wrote:
>
|
|
|
|
|