Questions tagged [rightfax]
41 questions
7
votes
3 answers
RightFax and .NET?
How easy is it to integrate RightFax with .NET/C#? We are considering FaxMan, Windows Fax Server also, but we came across RightFax. We basically need to be able to send faxes through a .NET App, monitor status etc.

Prabhu
- 12,995
- 33
- 127
- 210
4
votes
2 answers
Getting a 'System.AccessViolationException' exception in C# using RightFax
I'm trying to send faxes through RightFax COM API Library:
RFCOMAPILib.FaxServer server = new RFCOMAPILib.FaxServer();
server.ServerName = "xxx";
server.Protocol = CommunicationProtocolType.cpTCPIP;
server.UseNTAuthentication =…

Intrigue
- 672
- 6
- 15
4
votes
4 answers
PDF to PCL conversion
In my Java application, I have PDF files that I eventually need to convert to PCL and send to a RightFax server. I'll also need to embed codes in the PCL files that RightFax will read to know where to send the fax.
What's the best approach towards…

Khandelwal
- 661
- 2
- 14
- 24
4
votes
2 answers
Send fax (with Right Fax COM API rfcomapi.dll) from SSIS
We are trying to have faxes automatically be sent from within an SSIS package.
We have figured out how to send faxes utilizing the Right Fax COM API (rfcomapi.dll)
But our issue is that in order to reference any external assembly within SSIS, that…

Jon Erickson
- 112,242
- 44
- 136
- 174
3
votes
4 answers
How to generate a fax and send it in code
I have a business requirement to generate a fax and send it to the recipient. I know the recipients name and fax number and there is a PDF that will be attached. This process will run daily and consist of 100 records to process each time. I was…

RSolberg
- 26,821
- 23
- 116
- 160
3
votes
2 answers
Access denied attempting to watch completed events
We're currently using RightFax v9.3.2.89 with the rfcomlib API. Currently, we simply installed RightFax on everyone's computer as the application generating these faxes is on the desktop. Since we're moving to a web solution we will be only…

Nosila
- 540
- 7
- 20
3
votes
2 answers
What does the & symbol mean in this TSQL query?
I have been working on some reports and recently found a small guide for the system I have been querying against. Part of the syntax it offers up is like the following:
... "WHERE [FIELD] & [VALUE] = [VALUE]"
i.e.: ... "WHERE flags & 16 = 16"
I am…

Wes
- 290
- 3
- 18
2
votes
1 answer
Using the RFCOMAPIlib (RightFax COM API): Unable to cast COM object
I'm working with the RightFax COM API. What I want to do is simply send a fax with an attachment. Simple right? That question has been answered a few times. However, when I use some of that code in my application, I have a little…

Erik
- 23
- 1
- 3
2
votes
1 answer
RightFax C# through RFCOMAPILib - Attachments
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…

Intrigue
- 672
- 6
- 15
2
votes
1 answer
Automating Faxing using RFCOMAPI.DLL
I am attempting to automate faxing using the Rightfax API RFCOMAPI.DLL. I have followed the instructions detail by detail and cannot seem to get this working.
RightFax 10.6 is installed on the machine. I have copied the rfcomapi.dll,…

KDancer
- 21
- 3
1
vote
1 answer
How to send RightFax email from RFCOMAPI
Here is what I currently have:
var faxserver = new FaxServerClass
{
ServerName = "{server ip}",
AuthorizationUserID = @"{my username}",
Protocol =…

gcso
- 2,315
- 3
- 28
- 50
1
vote
1 answer
Rightfax set data on coversheet
I am using rightfax web api to send fax. One of the requirement is to attach coversheet. I am able to attach coversheet using api and set some data like whom fax is sent to , company and email address. However i dont see option in Rightfax web api…

Vishal Kamble
- 11
- 1
1
vote
1 answer
MailAddress to right Fax server is not working right
I am trying to send email address and right fax service email gateway recive it just like that
It gives the error here
Tried to remove System.Text.Encoding.ASCII
But still same issue below that is received from right fax
TO :-…

bavs
- 25
- 7
1
vote
0 answers
Send fax to right fax server using .net fax object not able to send cover sheet notes
oFax = mRightFaxComServer.Faxes[faxFileInfo.RightFaxSettings.RightFaxServerObject].Create;
oFax.OwnerID = faxFileInfo.RightFaxSettings.OwnerId;
oFax.ToName = recipientDetails.RecipientName;
oFax.ToFaxNumber =…

Atul Pawar
- 11
- 2
1
vote
1 answer
how to get fax status from RightFax using RFCOMAPILIB c#?
i'm trying to wrap a service around the type-lib RFCOMAPILIB to expose tow services
the first is to allow sending a fax and the other is to query the RightFax server for the status of the sent Fax by its Unique ID,
the sending part went well, as for…

user3147132
- 11
- 2