2016-10-17 28 views
0

美好的一天!試圖讓RightFax COM API爲我們工作。在obj_Fax.Send();,我得到一個錯誤0x80042710,我不知道爲什麼。我在網上找不到任何細節,希望得到一些建議。RightFax COM API 0x80072710無效所有者ID

錯誤消息:

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 
     } 
    } 

回答

0

爲了公平起見,我們並沒有真正 「解決」 這一點,但沒有一個解決辦法。我們部署到RightFax安裝所在的服務器。無論出於何種原因,這都是問題所在。部署本地或任何其他服務器和安裝RF客戶端是所有需要的。問題解決了。

相關問題