Hi
i have two virtual machines
1- one for hosting Right Fax server
2- one for hosting domain and exchange
and i made a windows service to intercept the fax server from incoming and outgoing faxs
this service does successfully when sending from RightFax FaxUtil client , the service intercepts the incoming and outgoing faxs
But when sending from outlook with the same sender and same recip. , the service intercept the incoming fax only not the outgoing one
the following code parts are the current code for the service
RFServer.onMessageEvent += new ~~~~~~~
Events _Events=RFServer.Events;
_Events.set_watchMessageEvents(MessageEventType.meAll,BoolType.True)
void RFServer_onMessageEvent(MessageEvent NewMessageEvent)
{
if(NewMessageEvent.Fax.Status==FaxStatusType.fsDoneOK)
//do some thing
else
//do another thing
}
this code works successfully when sending from the RightFax FaxUtil -intercept sending and receiving events-
but intercept recieing event only when sending from the outlook client
what is the problem?
thanks in advance