We are trying to send fax using RFCOMAPILIb.dll using below code (we got sample from stack overflow itself)
RFCOMAPILib.FaxServerClass faxserver = new RFCOMAPILib.FaxServerClass();
faxserver.ServerName = "ServerName";
faxserver.Protocol = RFCOMAPILib.CommunicationProtocolType.cpNamedPipes;
faxserver.UseNTAuthentication = RFCOMAPILib.BoolType.True;
faxserver.OpenServer();
RFCOMAPILib.Fax fax = (RFCOMAPILib.Fax) faxserver.get_CreateObject(RFCOMAPILib.CreateObjectType.coFax);
// set up your 'fax' object the way you want it, below is just some sample options
fax.ToName = "dummy";
fax.ToFaxNumber = "dummy";
fax.ToVoiceNumber = "dummy";
fax.ToCompany = "dummy";
fax.FromName = "My Company";
fax.FromVoiceNumber = "dummy";
fax.Send();
string status=fax.faxstatus.tostring();
we are getting faxstatus as 110. User is not able to receive fax.
Any idea what can be the issue. Do we need to install any software specific to right fax on client machine. INterestingly from same machine we can send fax using UI provided after installing the Right Fax client hence we don't think so there is any issue with Port,firewall etc. Any help would be greatly appreciated.