| Author |
Ftp and decryption
|
|
|
| The files we currently exchange with business partners are encrypted with public private keys. The encryption is performed from the command line in a batch script. What would be the best way to perform this in BizTalk?
--
BenW MCAD
| |
| Christof [MVP] 2004-07-13, 8:47 pm |
| BizTalk Server supports encryption in the pipeline architecture. It depends
on your needs wether this would fit.
Regards,
--
Christof [Microsoft BizTalk Server MVP]
"BenW" <BenW@discussions.microsoft.com> wrote in message
news:6F084ECA-F8F4-4C5A-B745-95ECBF6F14B9@microsoft.com...
> The files we currently exchange with business partners are encrypted with
public private keys. The encryption is performed from the command line in a
batch script. What would be the best way to perform this in BizTalk?
>
>
> --
> BenW MCAD
| |
| Gilles [MSFT] 2004-07-13, 8:47 pm |
| Hello,
>The files we currently exchange with business partners are encrypted with public private keys.
>The encryption is performed from the command line in a batch script. What would be the best way to perform this in BizTalk?
The best way would be to write a custom pipeline decode (and encode if needed) component.
Once this is done, create a new pipeline, add this component at decode stage. You can then associate this pipeline with the receive
location (or send port). As soon as a message is received (or sent), it will then be decoded.
A sample of custom component is in the SDK: FisMsg. You can also visit my gallery of custom pipeline components at
http://weblogs.asp.net/gzunino/cate...7.aspx?Show=All
Thanks.
-Gilles.
| |
|
| Giles thank you. The custom pipline decode, presumably I write this in C# implementing some interface...?
--
BenW MCAD
"Gilles [MSFT]" wrote:
> Hello,
>
>
> The best way would be to write a custom pipeline decode (and encode if needed) component.
> Once this is done, create a new pipeline, add this component at decode stage. You can then associate this pipeline with the receive
> location (or send port). As soon as a message is received (or sent), it will then be decoded.
>
> A sample of custom component is in the SDK: FisMsg. You can also visit my gallery of custom pipeline components at
>
> http://weblogs.asp.net/gzunino/cate...7.aspx?Show=All
>
> Thanks.
> -Gilles.
>
>
| |
|
|
|
|
| Bob Corcoran 2004-12-15, 6:27 pm |
| We also exchange encrypted documents with business partners using public
private keys. Has anybody written a commercial component to address this
common issue?
"BenW" wrote:
> The files we currently exchange with business partners are encrypted with public private keys. The encryption is performed from the command line in a batch script. What would be the best way to perform this in BizTalk?
>
>
> --
> BenW MCAD
|
|
|
|