Home Page › Forums › BizTalk 2004 – BizTalk 2010 › Call a custom .NET component to move large file from one file location to another › Re: Call a custom .NET component to move large file from one file location to another
May 21, 2009 at 7:54 PM
#22449
If your goal is only to move a file from one location to another, you can setup a FILE send port with filter to subscribe any message/file that’s coming from a specific send port, location that meets certain criterias.
Otherwise, you could write all your code in a helper .net class and call your function to write move the file to the new location. Hope this helps.