Questions tagged [rightfax]

41 questions
1
vote
2 answers

SSIS with COM Interop fails when run as a scheduled job

I have an SSIS Package that utilizes a COM Interop (Interop.RFCOMAPILib.dll) around RightFax's COM API (rfcomapi.dll). The Interop assembly has been GAC'd so that we can use it within the SSIS package The package runs just fine on my local machine.…
Jon Erickson
  • 112,242
  • 44
  • 136
  • 174
1
vote
1 answer

RightFax 10.0 Integration With C#

If I insert the values into the corresponding tables of RightFax, does it FAX automatically or do i need to write the following code for that? RFCOMAPILib.FaxServerClass faxserver = new RFCOMAPILib.FaxServerClass(); faxserver.ServerName =…
user1457065
0
votes
1 answer

RIghtFax Esoteric error message in .NET 1.1

I have a problem with RightFax component Interop.RFCOMAPILib.dll version 1.0.0.0 , using VB .NET 1.1. It works in several environments, but not in Production. It returns this message in the exception - "?" - . How can I solve it? I couldn't find…
user16328
  • 3
  • 1
0
votes
1 answer

RightFax Via Application Hosted on IIS

I'm having an issue getting connected to our RightFax server. If I create a sample project in C# and use the code below I can connect just fine. The problem is I need the same code in an application that is on my local IIS. When it gets to…
Casey
  • 1
  • 1
0
votes
1 answer

RightFax WebApi Equivalent to FromGeneralFaxNumber

I am currently looking at migrating our Sending of faxes from RightFax COM to using the RightFax WebApi and I have it mostly working. However I am having a few issues mapping certain fields to the custom coversheet we use. In COM we are using the…
Dritzz
  • 159
  • 1
  • 1
  • 10
0
votes
1 answer

Compiler Error Message: CS0234: The type or namespace name 'WebApp' does not exist in the namespace 'Fax' (are you missing an assembly reference?)

I am facing the error, while accessing RightFax SDK on IIS through the browser. I need to access Right Fax SDK API through IIS: Compiler Error Message: CS0234: The type or namespace name 'WebApp' does not exist in the namespace 'Fax' (are you…
0
votes
2 answers

Powershell upload a pdf file using boundary MIME to RightFax Web Service

I am trying to upload a pdf file into Right fax via the RightFax Web Api. I can do this via PostMan and I am able to send the attachment afterwards. When I try do upload via PowerShell an I send my attachment I only get the Object Name in the…
splotch
  • 1
  • 1
0
votes
1 answer

VBA excel rightfax

Currently I have a process in Excel that a user clicks a specific command and then takes the data from Excel and creates a mailmerge in Word. I then want it to the file(s) via RightFax, but I am having trouble at the Set oNewFax, when stepping…
EvilMorty
  • 15
  • 3
0
votes
1 answer

Fax a HTML page via RightFax COM API

I tried to fax a HTML page via RightFax COM API by supplying the HTML page as an attchment. However, the fax generated contains the HTML source code. I've done some research. It looks like 2 options are available: 1) HTML to image 2) HTML to PDF,…
0
votes
1 answer

Fax Current WebPage using RightFax OpenText WebService

I have a page with a fax button on it... when clicked it uses a dialog to capture the destination of the fax from a drop down list. What I need to do is apply the print stylesheet and capture the webpage. I am using RightFax webservice "OpenText"…
WeePecky
  • 57
  • 1
  • 8
0
votes
2 answers

Need to send fax without much delay

I am new and I have no much knowledge about fax processing. But, As We are using interfax service for sending fax that is working fine if we send one fax at a time there is not much delay/failure in this type of case, but our requirement is to send…
0
votes
1 answer

RightFax COM API 0x80072710 Invalid Owner ID

Good day! Trying to get the RightFax COM API working for us. At obj_Fax.Send();, I'm getting an error 0x80042710, and I haven't a clue why. I can't find any details online about this, hoping for some suggestions. Error…
Thomas
  • 339
  • 4
  • 15
0
votes
1 answer

Retrieve an image of the fax sent using RFCOMAPILib (RIGHTFAX)

Can anyone tell me if there is a way to retrieve a copy of the fax that was sent using the RFCOMAPILib? I am able to send faxes easily, but a new requirement has come up that the fax that was sent be viewable to the users. Currently I log the handle…
Nick
  • 1
  • 2
0
votes
1 answer

Sending mail to Rightfax server with /fax=12345/ format

I have to send a mail to Right fax server through Java Mail API in this format /fax=12345/mail_id@domain.com. I used the following code to set recipient address Message message = new MimeMessage(session); InternetAddress mail_to = new…
Anand Krish
  • 431
  • 4
  • 4
0
votes
1 answer

RightFax 10.5 java integration issue

I am trying to do some POC on Rightfax integration with JAVA API. Installed all required components in Rightfax Server (JAVA/XML API) and configured the IIS (took care while installing the rightfax server) while running the sample java program…