再会!试图让 RightFax COM API 为我们工作。在obj_Fax.Send();
,我收到一个错误 0x80042710,我不知道为什么。我在网上找不到有关此的任何详细信息,希望提供一些建议。
错误信息:
System.Runtime.InteropServices.COMException (0x80042710): Invalid owner ID.
发送传真方法:
public DataPackage<FaxInfoResponse> SendFax(string faxNumber, string recipientName, byte[] data)
{
try
{
DataPackage<FaxInfoResponse> dp = new DataPackage<FaxInfoResponse>();
if ((faxNumber.Length != 10) || (!faxNumber.All(Char.IsDigit)))
{
dp.ErrorId = Guid.NewGuid().ToString();
dp.ErrorMessage = "Fax Number must consist of 10 numbers";
dp.Data = new FaxInfoResponse();
return dp;
}
RFCOMAPILib.Fax obj_Fax = (RFCOMAPILib.Fax)_server.get_CreateObject(RFCOMAPILib.CreateObjectType.coFax);
obj_Fax.ToFaxNumber = faxNumber;
obj_Fax.ToName = recipientName;
var filePath = String.Format("{0}{1}.pdf", ConfigurationManager.AppSettings["TempWriteDirectory"], faxNumber);
using (var fStream = new FileStream(filePath, FileMode.Create))
{
fStream.Write(data, 0, data.Length);
}
obj_Fax.Attachments.Add(filePath, RFCOMAPILib.BoolType.True);
/*********** ERROR OCCURS HERE ***********/
obj_Fax.Send();
/*****************************************/
int faxHandle = obj_Fax.Handle;
obj_Fax = _server.get_Fax(faxHandle);
dp.ErrorMessage = "";
dp.ErrorId = "";
FaxInfoResponse resp = new FaxInfoResponse { FaxHandle = faxHandle, FaxStatus = obj_Fax.FaxStatus.ToString(), FaxUniqueId = obj_Fax.UniqueID.ToString() };
dp.Data = resp;
Log.Info("Fax successfully sent for fax: Fax Number = " + faxNumber + " Recipient Name = " + recipientName);
return dp;
}
catch (Exception ex)
{
// Blah blah error handling
}
}