Reading windows fax service job status in ASP.NET
-
samedi 14 avril 2012 01:13
I have developed a web site to show job status of our fax server. I use windows fax service (fxscomex.dll interop). when I am debugging from VS2010 (using development sever), everything is fine, I can read jobs status of, but when I run my web site under IIS, job queue is always empty.
here is my code to check sent items:FaxOutgoingMessageIterator sentItems = fxServer.Folders.OutgoingArchive.GetMessages(100); sentItems.MoveFirst(); while (!sentItems.AtEOF) { Response.Write(itm.Recipient.Name); sentItems.MoveNext(); }on IIS, sentItems.AtEOF is always true.
Thank you
Toutes les réponses
-
samedi 14 avril 2012 06:27Modérateur
Hi Mohammad,
The purpose of this forum is to support the Open Specifications documentation. You can read about the Microsoft Open Specifications program here, http://www.microsoft.com/openspecifications/en/us/default.aspx
The library of Open Specification documents is located here, http://msdn.microsoft.com/en-us/library/dd208104(PROT.10).aspx
Your question may be more applicable to one of these forums, http://forums.asp.net/
Regards,
Vilmos Foltenyi - MSFT- Marqué comme réponse Vilmos Foltenyi MSFTMicrosoft Employee, Moderator samedi 16 juin 2012 07:56

