Send a fax (using the Right Fax COM API rfcomapi.dll API) from SSIS

We are trying to automatically send faxes from the SSIS package.

We figured out how to send faxes using the Right Fax COM API (rfcomapi.dll)

But our problem is that in order to reference any external assembly in SSIS, this assembly must be in the GAC, because SSIS uses VSA, and not a full-blown development environment.

What are our faxing capabilities in SSIS?

+4
source share
2 answers

I built the Interop assembly by doing the following (not sure if this is the best way):

  • Launched a new empty project
  • rfcomapi.dll is included in the project
  • Signed the assembly of the project with a new strong name
  • Created a project - this created the Interop.RFCOMAPILib.dll file
  • Installed Interop assembly in the GAC
  • Link to the GAC'd Interop assembly in my SSIS project.

=)

+1
source

Create a small console application and use the Execute Process Task to launch it. Use SSIS expressions to create the Arguments property of the process’s task as you like.

+2
source

Source: https://habr.com/ru/post/1286442/


All Articles