FAXCOMEXLib: JobID from ConnectedSubmit to OnOutgoingJobChanged

I use the Microsoft Fax Service Extended COM Library.

I submit a document to the local fax server using the FaxDocument.ConnectedSubmit method and I get back the job ID.
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fax/faxinta_n_5cfo.asp))
MSDN example - Sending a Fax:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fax/faxusing_27co.asp

I want to retrieve the same job ID on the FaxServer_OnOutgoingJobChanged event (so as to move the sent document to another folder).
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fax/faxinto_z_3xus.asp)
MSDN example - Registering for Fax Events:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fax/faxusing_3u5v.asp

The problem is that the job ID returned from the FaxDocument.ConnectedSubmit method (ex. 144613567377692395) is different from the bstrJobId parameter of the FaxServer_OnOutgoingJobChanged event (ex. 201c545f93fd6eb). Can you help me?

Comments

  • I'm having the exact same issue. Have you gotten anywhere with this?
  • Alright, I figured it out... The return value is a decimal representation and the Id in the job is hex.. just convert the return value to hex and get the job that way. Hope this helps.

    String[] o = (String[])document.Submit(computer);

    String rv = o[0];
    long rvdec = Int64.Parse(rv);
    String rvhex = rvdec.ToString("X");

    FaxOutgoingJob job1 = server.Folders.OutgoingQueue.GetJob(rvhex);
  • Glad you got it figured out. This library has plagued me for many nights. I stumbled upon this page for common [link=http://www.interfax.net/en/dev/faxcomexlib]faxcomexlib [/link]problems a while back and even though I didn't help me in the end, others might find it useful.

    (BTW, sorry for bumping such an old thread, but since this are many similar problems, it made sense to post it somewhere).
  • This post has been deleted.
  • This post has been deleted.
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories

In this Discussion