To send a fax internally, we used the following Coldfusion code to create the fax processing object:
<cfobject type="COM" action="Create" name="objFaxServer"
class="FaxServer.FaxServer.1">
While we are staying on ColdFusion 8, we are moving our server to Windows Server 2008, which is a 64-bit system. As a result, we are no longer able to call COM objects, such as FaxServer, to process such requests. I am looking for an internal alternative (there is no third party such as InterFax.net), but I could not find any advice to deal with this situation.
Any suggestions on what to use or how to internally send faxes through coldfusion?
source
share