Home Page › Forums › BizTalk 2004 – BizTalk 2010 › How to handle large size attachment in Biztalk while consuming SOAP request › Re: How to handle large size attachment in Biztalk while consuming SOAP request
I have 2 options
1) Allow biztalk to accept the SOAP message with big attachment (size varing from 1 MB to 10 MB). and choose a system configuration (hardware and software) to handle such a big data transaction.
2) Change the design to :
Web Portal ==> Proxy web service (C# .Net) ==> BizTalk Hub ==> FTP folder
With this design new component “Proxy web service (C# .Net) ” introduced to accept SOAP request with big attachment. This component will seperate the attachment file from SOAP request message and create attachment file in filesystem and will pass the path of that file and rest of the XML message to BizTalk. BizTalk will use the file path to move that file from local folder to FTP path (by means of external scipt.)
IN ABOVE 2 OPTIONS WHICH IS THE STANDARD WAY OF IMPLEMENTATION???