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 = BoolType.True;

  // Error happens here
  server.OpenServer(); 

  RFCOMAPILib.Fax fax = (RFCOMAPILib.Fax)server.get_CreateObject(RFCOMAPILib.CreateObjectType.coFax);

  fax.ToName = "Batman";
  fax.ToFaxNumber = "23434484";
  fax.FromFaxNumber = "78678676";
  fax.FromName = "Robin";
  fax.Send();

I have registered the rfcomapi.dll

C:\Program Files\RightFAX> RegSvr32 rfcomapi.dll

Unfortunately when running this code I get the following error;

Unhandled Exception: system.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.

I'm using version 9.4.0.0 of RightFax

Any help would be hugely appreciated!! :-)

Thanks a lot,

strong text

link|improve this question

At which line of code do you get that error? it's not something in your code. Managed code doesn't throw (or even allow) errors like that, not without extra work anyway. Btw, just noticed this line of code: fax.FromFaxNumber = fax.ToFaxNumber; That looks like it could potentially cause an API error. – Paul Sasik Dec 17 '10 at 4:35
Thanks Paul. I'll clarify my question. I get the error before that line, I get it when making the call to either OpenServer() or if I remove that line I get it @ server.get_CreateObject(--) – elsharpo Dec 17 '10 at 4:41
have you got other supporting dlls (RFWin32.dll, Rfi32rpc.ndr, and Rfi32smb.ndr) along with rfcomapi.dll? – VinayC Dec 17 '10 at 6:55
@VinayC - Thanks for your comments but yes I do, I was able to register the dll no problem. And I do have all those dlls in my computer, even I tried to copy them to the bin bolder of my little exe still didn't work. – elsharpo Dec 18 '10 at 0:45
feedback

2 Answers

Your code itself is perfect. I can run it with my 9.4 RightFax without any problem. You may want to check with your authorization to make sure you account is full authorized in the server.

link|improve this answer
Thanks mate. I been wondering for a while whether the credentials I have been given are consistant with what is actually configured in the server. I sent an email to the admin asking for clarification on this. Cheers. – elsharpo Dec 18 '10 at 0:47
feedback
up vote 0 down vote accepted

the problem was the server name was incorrect, since we couldnt resolve that name in our network. I pinged the server and I got nothing, however I got the IP address of it and it worked fine!

thanks a lot everybody! Always ping the server with RightFax! the error messages you are going to get are not very descriptive!!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.