|
Home > Archive > BizTalk Server General > December 2004 > How to use FTP adapter in Orchestration Designer?
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 |
How to use FTP adapter in Orchestration Designer?
|
|
|
| HI , ALL
I have configured the Send ports and Receive ports in the BizTalk explorer
with FTP Adapter. But it seems it's only in the Biztalk server itself, I
cannot use it as PortType in my VS.net Orchestration Designer.
So how can I reference this FTP portType?
Thanks in advance
alvin
| |
|
| Hi,
it is perfectly possible to use the FTP adapter from within an orchestration.
What must you do:
1) use a dynamic send port
2) fill in the address of the send port in an expression box
port(Microsoft.XLANGs.BaseTypes.Address) = "ftp://<server><path><name>
This will send your file to this ftp server.
You also have the possibility to set some FTP properties for the message
that you send to this port in a message assignment box
message(FTP.Password) = "password";
message(FTP.UserName) = "user";
message(FTP.AfterPut) = "Raw ftp commands to execute after a put, seperated
with a ;";
message(FTP.BeforePut) = "Raw ftp commands to execute before a put,
seperated with a ;"
// Some message retry values that must be set
message(BTS.RetryCount) = 1;
message(BTS.RetryInterval) = 1;
Koen
"alvin" wrote:
> HI , ALL
>
> I have configured the Send ports and Receive ports in the BizTalk explorer
> with FTP Adapter. But it seems it's only in the Biztalk server itself, I
> cannot use it as PortType in my VS.net Orchestration Designer.
> So how can I reference this FTP portType?
> Thanks in advance
>
> alvin
>
>
>
|
|
|
|
|