in Search
 
Home Blogs Forums Marketplace Files
 
 
 

Out going Fax

Last post 06-14-2007, 12:53 PM by GregK. 3 replies.
Sort Posts: Previous Next
  •  05-01-2007, 3:45 PM 12409

    Out going Fax

    where can we Trap outgoing Fax sent out by Right Fax. do we have any events for this?. Does the NewFax Event Traps Inbound as well as Outbound Faxes.

    Your help would be Highly appreciuated

    Regards

     

  •  05-08-2007, 12:09 PM 12424 in reply to 12409

    Re: Out going Fax

    Hello,

    You can capture outgoing fax event in the OnArchive event. Make sure you have "Archive sent faxes" permission enabled. The following is a code snippet.

           void FaxEventHandler_OnArchiveEvent(RFCOMAPILib.ArchiveEvent NewArchiveEvent)
            {
                        MessageBox.Show("Archive Event - Outgoing Fax" + NewArchiveEvent.FaxHandle.ToString());
            }

    I hope this helps.

    Thanks.

    Arjuna

  •  06-12-2007, 4:02 PM 12537 in reply to 12424

    Re: Out going Fax

    How does the users Notification method (set in the Fax MAnager) effect whether or not the applicaiton is notified of an outbound fax ?

    I need to be notified of events being sent by outlook, through exchange, with the users notification method set to Exchange.  I have tried setting WatchMessageEvents to both meAll and meExchange, but neither seems to result in events received by my app.

    events->put_WatchArchiveEvents(True);

    events->put_WatchCompleteEvents(True);

    events->put_WatchMessageEvents(meAll, True);

    events->put_WatchMessageEvents(meExchange, True);

  •  06-14-2007, 12:53 PM 12541 in reply to 12537

    Re: Out going Fax

    Hi,

    In your case you are in a race with the RightFax Email Gateway for Exchange.  That service will process any fax route requests (for inbound faxes) as well as notification events for outbound faxes.  If the Email gateway sees those messages before your app then they are gone.  You can change the notification type to User1 to User9, those notification types will never be processed by the server services but your app would have to then send the notification on to the end user. 

    The Archive Events can also be processed by the server if you have the Archive task selected for a WorkServer.

    Greg

View as RSS news feed in XML
  Privacy    Site Terms   Contact Administrator