良い一日!RightFax COM API を動作させようとしています。でobj_Fax.Send();
、エラー 0x80042710 が発生しましたが、理由がわかりません。いくつかの提案を期待して、これについてオンラインで詳細を見つけることができません。
エラーメッセージ:
System.Runtime.InteropServices.COMException (0x80042710): Invalid owner ID.
SendFax メソッド:
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
}
}