I'm trying to send faxes through RightFax in an efficient manner.

My users need to fax PDFs and even though the application is working fine, it is very slow for bulk sending (> 20 recipients, taking abt 40 seconds per fax).

// Fax created 
fax.Attachments.Add(@"C:\\Test Attachments\\Products.pdf", BoolType.False);
fax.Send();

RightFax has this concept of *Library Documents, so what I though we could do was store the PDF document as a Library Document on the server and then reuse it so there is no need to upload this PDF for n users.

I can create Library Documents without problems (I can retrieve them etc) but...what I don't know is how to add a PDF to this. ( I have rights on the server )

LibraryDocument doc2 = server.LibraryDocuments.Create;
doc2.Description = "Test Doc 1";
doc2.ID = "568"; // tried ints everything!
doc2.IsPublishedForWeb = BoolType.True;
doc2.PageCount = 2;
doc2.Save();

Also once I created a fax, the API gives you an option to "StoreAsNewLibraryDocument", which is throwing an exception when run. System.ArgumentException: Value does not fall within the expected range

fax.StoreAsNewLibraryDocument("PRODUCTS","the products");

What matters for us is how to send say 500 faxes in the most efficient way possible using the API through RFCOMAPILib. I think that if we can reuse the PDF attached, it would greatly improve perfomance. Clearly, sending a fax in 40 seconds is unacceptable when you have hundreds of recipients.

My question is: How do we send faxes with attachments in the most efficient mode through the API? If there are any experts out there, I'd love to hear from you and your help will be greatly appreciated.

Thanks all,

elsharpos

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.