Home Page › Forums › BizTalk 2004 – BizTalk 2010 › FTP connection failure
- This topic has 6 replies, 1 voice, and was last updated 8 years, 4 months ago by
community-content.
-
AuthorPosts
-
-
June 23, 2008 at 3:16 AM #19970
Hi,
I am transferring a flat file to ftp folder dynamically. In the orchestration i have added exception handler to catch delivery failure and routed to failure folder. My issue is if the ftp connection is stopped thru iis it is not routed to failure folder. Instead i get the below message :
The “FTP” adapter is suspending an outbound message going to destination URL:”ftp://10.100.34.72/TestIntegrationFTP/Test1.txt”. Details:”Unable to connect to the FTP server “10.100.34.72” as user “administrator” verify address, port and logon credentials “.
[Code : Expression Shape]
NewCopyMsg = InputFFMsg;
SendFTPPort(Microsoft.XLANGs.BaseTypes.Address) = “ftp://10.100.1.1/TestIntegrationFTP/Test1.txt” ;
NewCopyMsg(FTP.UserName) = “administrator”;
NewCopyMsg(FTP.Password) = “admin123”;
NewCopyMsg(BTS.RetryCount) = 0;
NewCopyMsg(BTS.RetryInterval) = 0;
[/Code]
-
June 24, 2008 at 3:08 AM #19976
Bringing up again
-
June 24, 2008 at 4:24 AM #19978
Not sure there is much you can do with Biztalk 2004.
With Biztalk 2006 you would have the option of enabling routing on failed messages to handle this issue.
-
June 24, 2008 at 4:43 AM #19980
In BTS 2006 how will catch the ftp connection error when it is configured dynamically. Please shed some light to overcome this issue.
-
June 24, 2008 at 5:02 AM #19981
On the dynamic Send port under Transport Advanced Options in Biztalk Admin Console you can set “Enable routing on failed messages”
Failed messages are changed to Error messages and published to the Messagebox. You can subscribe to these messages and take what action you require.
-
June 24, 2008 at 5:20 AM #19982
Hi Greg,
I really thank for your replies. Please tell me if i can do anything out of box to solve this issue in BTS 2004. This is critical issue in our app.
Thanks and Regards
Vijaykishan S
-
June 25, 2008 at 11:54 AM #19989
All I can think of is using an external service to monitor Suspended messages and then taking action.
http://martijnh.blogspot.com/2004/07/biztalk-2004-suspended-queue-listener.html
-
-
-
-
-
-
-
AuthorPosts
- The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies.