vote up 1 vote down star

Overview

I have a Microsoft Word Add-In, written in VBA (Visual Basic for Applications), that compresses a document and all of it's related contents (embedded media) into a zip archive. After creating the zip archive it then turns the file into a byte array and posts it to an ASMX web service. This mostly works.

Issues

The main issue I have is transferring large files to the web site. I can successfully upload a file that is around 40MB, but not one that is 140MB (timeout/general failure).

A secondary issue is that building the byte array in the VBScript Word Add-In can fail by running out of memory on the client machine if the zip archive is too large.

Potential Solutions

I am considering the following options and am looking for feedback on either option or any other suggestions.

Option One

Opening a file stream on the client (MS Word VBA) and reading one "chunk" at a time and transmitting to ASMX web service which assembles the "chunks" into a file on the server.

This has the benefit of not adding any additional dependencies or components to the application, I would only be modifying existing functionality. (Fewer dependencies is better as this solution should work in a variety of server environments and be relatively easy to set up.)

Question:

  • Are there examples of doing this or any recommended techniques (either on the client in VBA or in the web service in C#/VB.NET)?

Option Two

I understand WCF may provide a solution to the issue of transferring large files by "chunking" or streaming data. However, I am not very familiar with WCF, and am not sure what exactly it is capable of or if I can communicate with a WCF service from VBA. This has the downside of adding another dependency (.NET 3.0). But if using WCF is definitely a better solution I may not mind taking that dependency.

Questions:

  • Does WCF reliably support large file transfers of this nature? If so, what does this involve? Any resources or examples?
  • Are you able to call a WCF service from VBA? Any examples?
flag

Can't FTP be used instead? – shahkalpesh Apr 29 at 20:30
Unfortunately it isn't an ideal solution as it requires additional setup and configuration on the client's server - which is adding unwanted complexity. I think Option Two (above) is out, and I'm going down the path of Option One currently. If it doesn't work out, we'll probably have to resort to FTP. – Ian Robinson Apr 30 at 15:10

1 Answer

vote up 0 vote down

I've transmitted large files like this using MTOM encoding.

More info on MTOM here: http://msdn.microsoft.com/en-us/library/aa395209.aspx

You can download an MTOM sample here: http://msdn.microsoft.com/en-us/library/ms751514.aspx

Check out Bustamante's book on WCF if you want more on MTOM.

As for the VBA call, I'm not an expert in that area therefore I don't have any info in regards to it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.