Exporting list of faxes not sent

E

Extreme

Is there a way to get a text file of all the faxes still in the
outgoing box. We would like to be able to parse out the information to
make it easier to update our database

Ken
 
W

William Wang[MSFT]

Hi Ken,

I understand your concern. Unfortunately, I could not find a way to export
the list of faxes from the outbox. This is a great idea, I suggest that you
submit a wish to the MS Wish program. You are welcome to send suggestions
for product enhancements that you would like to see in future versions of
Microsoft products to us by submitting MS Wish. To send a comment or
suggestion via the Web, use one of the following methods:

1. In Internet Explorer 6, click Send Feedback on the Help menu and then
click the link in the Product Suggestion section of the page that appears.
2. In Windows XP, click Help and Support on the Start menu. Click Send your
feedback to Microsoft, and then fill out the Product Suggestion page that
appears.

By submitting your concern to (e-mail address removed) you can get your voice
into the design plans for upcoming versions. Microsoft takes customer
requests and suggestions very seriously. MSWISH is your voice to the
development team. A significant number of the design change requests come
from our customers through the MSWISH alias and the MSWISH web site.
http://www.microsoft.com/mswish. I encourage you to submit this request.

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
 
R

Raghavendra R [MSFT]

By the way what kind of information are you interested in -
is it some properties of the Fax or the body of the Fax.
If it is the properties then you can get the information
using Fax APIs & if it is body there is no way to get the
text content because the body will be in image format
(Tiff). For a quick overview of Fax API have a look at
http://msdn.microsoft.com/library/en-
us/fax/faxabout_18s3.asp
--
Raghavendra R
Microsoft Printing, Imaging and Fax Team
This posting is provided "AS IS" with no warranties, and
confers no rights.
Please do not send email directly to this alias. This
alias is for newsgroup
purposes only.
 
E

Extreme

What we are trying to do is get the name and fax number of all the
recepients that had faxes fail. So we can run that infromation against
our database to get rid of the fax numbers that dont work.
 
W

William Wang[MSFT]

Hi Ken,

I've consulted with Raghavendra. If you are using WinXP
& above, you can use
FaxServer.Folders.FaxOutgoingQueue.FaxOutgoingJobs
collection and go through each FaxOutgoingJob object.
FaxOutgoingJob.Status and FaxOutgoingJob.ExtendedStatus
can be used to detect failed faxes.
FaxOutgoingJob.Recipient.Name &
FaxOutgoingJob.Recipient.FaxNumber denote the recipient
name and number respectively.

A MSDN sample is at
http://msdn.microsoft.com/library/en-us/fax/faxusing_53zn
.asp

On pre WinXP platforms (Win2K)
Plain C/C++ - refer to FaxGetJob API in MSDN
Using COM ¨C you need to use FaxJob object, look at
http://msdn.microsoft.com/library/en-us/fax/faxlegacy_7sm
a.asp for more details

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Fri, 13 Aug 2004 15:38:35 -0600
Message-ID: <[email protected]>
References:
<[email protected]>
 
E

Extreme

Thanks william

We have emplmented the code on the msdn site at it seems to work fine
with the sent items. However we rebooted the server and all the
information was still in the console but the information was no longer
retieveable through the code. Does this make sense? Does MS Fax flush
out somethings on a reboot.

Any information would be helpful.

Thanks again for your help, its getting closer

Ken
 
M

Manoj K Jain[MSFT]

If you need information regarding the outgoing faxes, you
could use the Fax Extended COM APIs to query and get the
list of faxes. The API set is rich and provides a way to
get all information on the Fax Server. For more
information on the API, please check the MSDN
documentation.

--
Manoj K Jain[MSFT]
Microsoft Printing, Imaging and Faxing
This posting isprovided "AS IS" with no warranties and
confers no rights. Please do not send mail directly to
this aloas. This alias is for newsgroup purposes only.
 
W

William Wang[MSFT]

It doesn't flush anything. It's very strange that this
happened.

What's the operating system?
Can we have a look at the code snippet? At the least we
want the code that's using the API to get the jobs.

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Tue, 17 Aug 2004 12:44:54 -0600
Message-ID: <[email protected]>
References:
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English (American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca 209.115.177.133
Lines: 1
Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP10.ph
x.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.win2000.fax:2828
X-Tomcat-NG: microsoft.public.win2000.fax

Thanks william

We have emplmented the code on the msdn site at it seems to work fine
with the sent items. However we rebooted the server and all the
information was still in the console but the information was no longer
retieveable through the code. Does this make sense? Does MS Fax flush
out somethings on a reboot.

Any information would be helpful.

Thanks again for your help, its getting closer

Ken


Hi Ken,

I've consulted with Raghavendra. If you are using WinXP
& above, you can use
FaxServer.Folders.FaxOutgoingQueue.FaxOutgoingJobs
collection and go through each FaxOutgoingJob object.
FaxOutgoingJob.Status and FaxOutgoingJob.ExtendedStatus
can be used to detect failed faxes.
FaxOutgoingJob.Recipient.Name &
FaxOutgoingJob.Recipient.FaxNumber denote the recipient
name and number respectively.

A MSDN sample is at
http://msdn.microsoft.com/library/en-us/fax/faxusing_53 zn
asp

On pre WinXP platforms (Win2K)
Plain C/C++ - refer to FaxGetJob API in MSDN
Using COM ¨C you need to use FaxJob object, look at
http://msdn.microsoft.com/library/en-us/fax/faxlegacy_7 sm
a.asp for more details

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Fri, 13 Aug 2004 15:38:35 -0600
Message-ID:
References:
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English (American)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca 209.115.177.133
Lines: 1
Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08 .p
hx.gbl!TK2MSFTNGP10.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.win2000.fax:2819
X-Tomcat-NG: microsoft.public.win2000.fax

What we are trying to do is get the name and fax
number
of all the
recepients that had faxes fail. So we can run that infromation against
our database to get rid of the fax numbers that dont work.


On Thu, 12 Aug 2004 01:54:01 -0700, "Raghavendra R [MSFT]"

By the way what kind of information are you
interested
in -
is it some properties of the Fax or the body of the Fax.
If it is the properties then you can get the information
using Fax APIs & if it is body there is no way to
get
the
text content because the body will be in image format
(Tiff). For a quick overview of Fax API have a look at
http://msdn.microsoft.com/library/en-
us/fax/faxabout_18s3.asp
 
E

Extreme

Thanks for the reply william,

I think thw problem might have come form some code that we were
testing. Ive tested it a couple other times and it seems to be ok and
nothing is disapearing.

Now i have another question for you. we seem to be having trouble
deleting the faxes out of the outbox. the sent items will delete fine
but we cant seem to get rid of the faxes from the outbox. we can do it
manually so there i s no problem with the server itself, we are just
having trouble getting code to do it.

Ps ther os is 2003 server enterprise edition

It doesn't flush anything. It's very strange that this
happened.

What's the operating system?
Can we have a look at the code snippet? At the least we
want the code that's using the API to get the jobs.

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Tue, 17 Aug 2004 12:44:54 -0600
Message-ID: <[email protected]>
References:
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English (American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca 209.115.177.133
Lines: 1
Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP10.ph
x.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.win2000.fax:2828
X-Tomcat-NG: microsoft.public.win2000.fax

Thanks william

We have emplmented the code on the msdn site at it seems to work fine
with the sent items. However we rebooted the server and all the
information was still in the console but the information was no longer
retieveable through the code. Does this make sense? Does MS Fax flush
out somethings on a reboot.

Any information would be helpful.

Thanks again for your help, its getting closer

Ken


Hi Ken,

I've consulted with Raghavendra. If you are using WinXP
& above, you can use
FaxServer.Folders.FaxOutgoingQueue.FaxOutgoingJobs
collection and go through each FaxOutgoingJob object.
FaxOutgoingJob.Status and FaxOutgoingJob.ExtendedStatus
can be used to detect failed faxes.
FaxOutgoingJob.Recipient.Name &
FaxOutgoingJob.Recipient.FaxNumber denote the recipient
name and number respectively.

A MSDN sample is at
http://msdn.microsoft.com/library/en-us/fax/faxusing_53 zn
asp

On pre WinXP platforms (Win2K)
Plain C/C++ - refer to FaxGetJob API in MSDN
Using COM ¨C you need to use FaxJob object, look at
http://msdn.microsoft.com/library/en-us/fax/faxlegacy_7 sm
a.asp for more details

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Fri, 13 Aug 2004 15:38:35 -0600
Message-ID:
References:
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English
(American)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca
209.115.177.133
Lines: 1
Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08 p
hx.gbl!TK2MSFTNGP10.phx.gbl
Xref: cpmsftngxa06.phx.gbl
microsoft.public.win2000.fax:2819
X-Tomcat-NG: microsoft.public.win2000.fax

What we are trying to do is get the name and fax number
of all the
recepients that had faxes fail. So we can run that
infromation against
our database to get rid of the fax numbers that dont
work.


On Thu, 12 Aug 2004 01:54:01 -0700, "Raghavendra R
[MSFT]"

By the way what kind of information are you interested
in -
is it some properties of the Fax or the body of the
Fax.
If it is the properties then you can get the
information
using Fax APIs & if it is body there is no way to get
the
text content because the body will be in image format
(Tiff). For a quick overview of Fax API have a look at
http://msdn.microsoft.com/library/en-
us/fax/faxabout_18s3.asp
 
W

William Wang[MSFT]

Glad to hear the original problem has been resolved.
Regarding to your second question, could you please post
the code you tried to delete the faxes out of the outbox?

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Thu, 19 Aug 2004 13:38:07 -0600
Message-ID: <[email protected]>
References:
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English (American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca 209.115.177.133
Lines: 1
Path: cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFTNGP08.p
hx.gbl!tk2msftngp13.phx.gbl
Xref: cpmsftngxa10.phx.gbl microsoft.public.win2000.fax:2841
X-Tomcat-NG: microsoft.public.win2000.fax

Thanks for the reply william,

I think thw problem might have come form some code that we were
testing. Ive tested it a couple other times and it seems to be ok and
nothing is disapearing.

Now i have another question for you. we seem to be having trouble
deleting the faxes out of the outbox. the sent items will delete fine
but we cant seem to get rid of the faxes from the outbox. we can do it
manually so there i s no problem with the server itself, we are just
having trouble getting code to do it.

Ps ther os is 2003 server enterprise edition

It doesn't flush anything. It's very strange that this
happened.

What's the operating system?
Can we have a look at the code snippet? At the least we
want the code that's using the API to get the jobs.

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Tue, 17 Aug 2004 12:44:54 -0600
Message-ID:
References:
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English (American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca 209.115.177.133
Lines: 1
Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP10. ph
x.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.win2000.fax:2828
X-Tomcat-NG: microsoft.public.win2000.fax

Thanks william

We have emplmented the code on the msdn site at it seems to work fine
with the sent items. However we rebooted the server
and
all the
information was still in the console but the information was no longer
retieveable through the code. Does this make sense? Does MS Fax flush
out somethings on a reboot.

Any information would be helpful.

Thanks again for your help, its getting closer

Ken


Hi Ken,

I've consulted with Raghavendra. If you are using WinXP
& above, you can use
FaxServer.Folders.FaxOutgoingQueue.FaxOutgoingJobs
collection and go through each FaxOutgoingJob object.
FaxOutgoingJob.Status and FaxOutgoingJob.ExtendedStatus
can be used to detect failed faxes.
FaxOutgoingJob.Recipient.Name &
FaxOutgoingJob.Recipient.FaxNumber denote the recipient
name and number respectively.

A MSDN sample is at
http://msdn.microsoft.com/library/en-us/fax/faxusing_
53
zn
asp

On pre WinXP platforms (Win2K)
Plain C/C++ - refer to FaxGetJob API in MSDN
Using COM ¨C you need to use FaxJob object, look at
http://msdn.microsoft.com/library/en-us/fax/faxlegacy
_7
sm
a.asp for more details

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Fri, 13 Aug 2004 15:38:35 -0600
Message-ID:
References:
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English
(American)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca
209.115.177.133
Lines: 1
Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP
08
p
hx.gbl!TK2MSFTNGP10.phx.gbl
Xref: cpmsftngxa06.phx.gbl
microsoft.public.win2000.fax:2819
X-Tomcat-NG: microsoft.public.win2000.fax

What we are trying to do is get the name and fax number
of all the
recepients that had faxes fail. So we can run that
infromation against
our database to get rid of the fax numbers that dont
work.


On Thu, 12 Aug 2004 01:54:01 -0700, "Raghavendra R
[MSFT]"

By the way what kind of information are you interested
in -
is it some properties of the Fax or the body of the
Fax.
If it is the properties then you can get the
information
using Fax APIs & if it is body there is no way to get
the
text content because the body will be in image format
(Tiff). For a quick overview of Fax API have a
look
at
 
E

Extreme

Hi William,

Sorry I didn't get back to you earlier. I've been on holidays and am
now trying to catchup on things.

We have been able to delete the faxes from the Sent Items Folder using
the FaxOutgoingMessageIterator (using Prefetch) and FaxOutgoingMessage
objects.

I haven't been able find code on msdn's site for deleting faxes from
the Outbox. We have many to delete I would like to automate the
process as much as possible. Can this be done and if so, can you
point me in the right direction.

Ken


Glad to hear the original problem has been resolved.
Regarding to your second question, could you please post
the code you tried to delete the faxes out of the outbox?

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Thu, 19 Aug 2004 13:38:07 -0600
Message-ID: <[email protected]>
References:
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English (American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca 209.115.177.133
Lines: 1
Path: cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFTNGP08.p
hx.gbl!tk2msftngp13.phx.gbl
Xref: cpmsftngxa10.phx.gbl microsoft.public.win2000.fax:2841
X-Tomcat-NG: microsoft.public.win2000.fax

Thanks for the reply william,

I think thw problem might have come form some code that we were
testing. Ive tested it a couple other times and it seems to be ok and
nothing is disapearing.

Now i have another question for you. we seem to be having trouble
deleting the faxes out of the outbox. the sent items will delete fine
but we cant seem to get rid of the faxes from the outbox. we can do it
manually so there i s no problem with the server itself, we are just
having trouble getting code to do it.

Ps ther os is 2003 server enterprise edition

It doesn't flush anything. It's very strange that this
happened.

What's the operating system?
Can we have a look at the code snippet? At the least we
want the code that's using the API to get the jobs.

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Tue, 17 Aug 2004 12:44:54 -0600
Message-ID:
References:
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English
(American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca
209.115.177.133
Lines: 1
Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP10. ph
x.gbl
Xref: cpmsftngxa06.phx.gbl
microsoft.public.win2000.fax:2828
X-Tomcat-NG: microsoft.public.win2000.fax

Thanks william

We have emplmented the code on the msdn site at it
seems to work fine
with the sent items. However we rebooted the server and
all the
information was still in the console but the
information was no longer
retieveable through the code. Does this make sense?
Does MS Fax flush
out somethings on a reboot.

Any information would be helpful.

Thanks again for your help, its getting closer

Ken


On Tue, 17 Aug 2004 13:03:41 GMT,
(e-mail address removed)
(William Wang[MSFT]) wrote:

Hi Ken,

I've consulted with Raghavendra. If you are using
WinXP
& above, you can use
FaxServer.Folders.FaxOutgoingQueue.FaxOutgoingJobs
collection and go through each FaxOutgoingJob object.
FaxOutgoingJob.Status and
FaxOutgoingJob.ExtendedStatus
can be used to detect failed faxes.
FaxOutgoingJob.Recipient.Name &
FaxOutgoingJob.Recipient.FaxNumber denote the
recipient
name and number respectively.

A MSDN sample is at
http://msdn.microsoft.com/library/en-us/fax/faxusing_ 53
zn
asp

On pre WinXP platforms (Win2K)
Plain C/C++ - refer to FaxGetJob API in MSDN
Using COM ¨C you need to use FaxJob object, look at
http://msdn.microsoft.com/library/en-us/fax/faxlegacy _7
sm
a.asp for more details

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties,
and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Fri, 13 Aug 2004 15:38:35 -0600
Message-ID:
<[email protected]>
References:
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English
(American)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca
209.115.177.133
Lines: 1
Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP 08
p
hx.gbl!TK2MSFTNGP10.phx.gbl
Xref: cpmsftngxa06.phx.gbl
microsoft.public.win2000.fax:2819
X-Tomcat-NG: microsoft.public.win2000.fax

What we are trying to do is get the name and fax
number
of all the
recepients that had faxes fail. So we can run that
infromation against
our database to get rid of the fax numbers that dont
work.


On Thu, 12 Aug 2004 01:54:01 -0700, "Raghavendra R
[MSFT]"

By the way what kind of information are you
interested
in -
is it some properties of the Fax or the body of the
Fax.
If it is the properties then you can get the
information
using Fax APIs & if it is body there is no way to
get
the
text content because the body will be in image
format
(Tiff). For a quick overview of Fax API have a look
at
http://msdn.microsoft.com/library/en-
us/fax/faxabout_18s3.asp
 
W

William Wang[MSFT]

Hi,

To delete faxes from the Outbox, we can use FaxOutgoingJob.Cancel
method. Please feel free to let us know if it works properly for you.

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via your newsreader
so that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Thu, 02 Sep 2004 10:16:54 -0600
Message-ID: <[email protected]>
References: <[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<rBh#[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English (American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca 209.115.177.133
Lines: 1
Path: cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSF
TNGP09.phx.gbl
Xref: cpmsftngxa10.phx.gbl microsoft.public.win2000.fax:2921
X-Tomcat-NG: microsoft.public.win2000.fax

Hi William,

Sorry I didn't get back to you earlier. I've been on holidays and am
now trying to catchup on things.

We have been able to delete the faxes from the Sent Items Folder using
the FaxOutgoingMessageIterator (using Prefetch) and FaxOutgoingMessage
objects.

I haven't been able find code on msdn's site for deleting faxes from
the Outbox. We have many to delete I would like to automate the
process as much as possible. Can this be done and if so, can you
point me in the right direction.

Ken


Glad to hear the original problem has been resolved.
Regarding to your second question, could you please post
the code you tried to delete the faxes out of the outbox?

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Thu, 19 Aug 2004 13:38:07 -0600
Message-ID: <[email protected]>
References:
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English (American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca 209.115.177.133
Lines: 1
Path: cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFTNGP08.p
hx.gbl!tk2msftngp13.phx.gbl
Xref: cpmsftngxa10.phx.gbl microsoft.public.win2000.fax:2841
X-Tomcat-NG: microsoft.public.win2000.fax

Thanks for the reply william,

I think thw problem might have come form some code that we were
testing. Ive tested it a couple other times and it seems to be ok and
nothing is disapearing.

Now i have another question for you. we seem to be having trouble
deleting the faxes out of the outbox. the sent items will delete fine
but we cant seem to get rid of the faxes from the outbox. we can do it
manually so there i s no problem with the server itself, we are just
having trouble getting code to do it.

Ps ther os is 2003 server enterprise edition

It doesn't flush anything. It's very strange that this
happened.

What's the operating system?
Can we have a look at the code snippet? At the least we
want the code that's using the API to get the jobs.

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Tue, 17 Aug 2004 12:44:54 -0600
Message-ID:
References:
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English
(American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca
209.115.177.133
Lines: 1
Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP10. ph
x.gbl
Xref: cpmsftngxa06.phx.gbl
microsoft.public.win2000.fax:2828
X-Tomcat-NG: microsoft.public.win2000.fax

Thanks william

We have emplmented the code on the msdn site at it
seems to work fine
with the sent items. However we rebooted the server and
all the
information was still in the console but the
information was no longer
retieveable through the code. Does this make sense?
Does MS Fax flush
out somethings on a reboot.

Any information would be helpful.

Thanks again for your help, its getting closer

Ken


On Tue, 17 Aug 2004 13:03:41 GMT,
(e-mail address removed)
(William Wang[MSFT]) wrote:

Hi Ken,

I've consulted with Raghavendra. If you are using
WinXP
& above, you can use
FaxServer.Folders.FaxOutgoingQueue.FaxOutgoingJobs
collection and go through each FaxOutgoingJob object.
FaxOutgoingJob.Status and
FaxOutgoingJob.ExtendedStatus
can be used to detect failed faxes.
FaxOutgoingJob.Recipient.Name &
FaxOutgoingJob.Recipient.FaxNumber denote the
recipient
name and number respectively.

A MSDN sample is at
http://msdn.microsoft.com/library/en-us/fax/faxusing_ 53
zn
asp

On pre WinXP platforms (Win2K)
Plain C/C++ - refer to FaxGetJob API in MSDN
Using COM ¨C you need to use FaxJob object, look at
http://msdn.microsoft.com/library/en-us/fax/faxlegacy _7
sm
a.asp for more details

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties,
and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Fri, 13 Aug 2004 15:38:35 -0600
Message-ID:
<[email protected]>
References:
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English
(American)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca
209.115.177.133
Lines: 1
Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP 08
p
hx.gbl!TK2MSFTNGP10.phx.gbl
Xref: cpmsftngxa06.phx.gbl
microsoft.public.win2000.fax:2819
X-Tomcat-NG: microsoft.public.win2000.fax

What we are trying to do is get the name and fax
number
of all the
recepients that had faxes fail. So we can run that
infromation against
our database to get rid of the fax numbers that dont
work.


On Thu, 12 Aug 2004 01:54:01 -0700, "Raghavendra R
[MSFT]"

By the way what kind of information are you
interested
in -
is it some properties of the Fax or the body of the
Fax.
If it is the properties then you can get the
information
using Fax APIs & if it is body there is no way to
get
the
text content because the body will be in image
format
(Tiff). For a quick overview of Fax API have a look
at
http://msdn.microsoft.com/library/en-
us/fax/faxabout_18s3.asp
 
E

Extreme

Thanks William your help has been wonderful and that last bit of
information that you were able to provide was the final peice of the
puzzle. And now the app works like a charm.

Once again, thanks for all of your help

Ken


Hi,

To delete faxes from the Outbox, we can use FaxOutgoingJob.Cancel
method. Please feel free to let us know if it works properly for you.

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via your newsreader
so that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Thu, 02 Sep 2004 10:16:54 -0600
Message-ID: <[email protected]>
References: <[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<rBh#[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English (American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca 209.115.177.133
Lines: 1
Path: cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSF
TNGP09.phx.gbl
Xref: cpmsftngxa10.phx.gbl microsoft.public.win2000.fax:2921
X-Tomcat-NG: microsoft.public.win2000.fax

Hi William,

Sorry I didn't get back to you earlier. I've been on holidays and am
now trying to catchup on things.

We have been able to delete the faxes from the Sent Items Folder using
the FaxOutgoingMessageIterator (using Prefetch) and FaxOutgoingMessage
objects.

I haven't been able find code on msdn's site for deleting faxes from
the Outbox. We have many to delete I would like to automate the
process as much as possible. Can this be done and if so, can you
point me in the right direction.

Ken


Glad to hear the original problem has been resolved.
Regarding to your second question, could you please post
the code you tried to delete the faxes out of the outbox?

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Thu, 19 Aug 2004 13:38:07 -0600
Message-ID: <[email protected]>
References:
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<rBh#[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English
(American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca
209.115.177.133
Lines: 1
Path:
cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFTNGP08.p
hx.gbl!tk2msftngp13.phx.gbl
Xref: cpmsftngxa10.phx.gbl
microsoft.public.win2000.fax:2841
X-Tomcat-NG: microsoft.public.win2000.fax

Thanks for the reply william,

I think thw problem might have come form some code that
we were
testing. Ive tested it a couple other times and it
seems to be ok and
nothing is disapearing.

Now i have another question for you. we seem to be
having trouble
deleting the faxes out of the outbox. the sent items
will delete fine
but we cant seem to get rid of the faxes from the
outbox. we can do it
manually so there i s no problem with the server
itself, we are just
having trouble getting code to do it.

Ps ther os is 2003 server enterprise edition

On Thu, 19 Aug 2004 14:39:59 GMT,
(e-mail address removed)
(William Wang[MSFT]) wrote:

It doesn't flush anything. It's very strange that this
happened.

What's the operating system?
Can we have a look at the code snippet? At the least
we
want the code that's using the API to get the jobs.

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties,
and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Tue, 17 Aug 2004 12:44:54 -0600
Message-ID:
<[email protected]>
References:
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English
(American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca
209.115.177.133
Lines: 1
Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP10.
ph
x.gbl
Xref: cpmsftngxa06.phx.gbl
microsoft.public.win2000.fax:2828
X-Tomcat-NG: microsoft.public.win2000.fax

Thanks william

We have emplmented the code on the msdn site at it
seems to work fine
with the sent items. However we rebooted the server
and
all the
information was still in the console but the
information was no longer
retieveable through the code. Does this make sense?
Does MS Fax flush
out somethings on a reboot.

Any information would be helpful.

Thanks again for your help, its getting closer

Ken


On Tue, 17 Aug 2004 13:03:41 GMT,
(e-mail address removed)
(William Wang[MSFT]) wrote:

Hi Ken,

I've consulted with Raghavendra. If you are using
WinXP
& above, you can use
FaxServer.Folders.FaxOutgoingQueue.FaxOutgoingJobs
collection and go through each FaxOutgoingJob
object.
FaxOutgoingJob.Status and
FaxOutgoingJob.ExtendedStatus
can be used to detect failed faxes.
FaxOutgoingJob.Recipient.Name &
FaxOutgoingJob.Recipient.FaxNumber denote the
recipient
name and number respectively.

A MSDN sample is at
http://msdn.microsoft.com/library/en-us/fax/faxusing_
53
zn
asp

On pre WinXP platforms (Win2K)
Plain C/C++ - refer to FaxGetJob API in MSDN
Using COM ¨C you need to use FaxJob object, look at
http://msdn.microsoft.com/library/en-us/fax/faxlegacy
_7
sm
a.asp for more details

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group"
via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties,
and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Fri, 13 Aug 2004 15:38:35 -0600
Message-ID:
<[email protected]>
References:
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English
(American)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca
209.115.177.133
Lines: 1
Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP
08
p
hx.gbl!TK2MSFTNGP10.phx.gbl
Xref: cpmsftngxa06.phx.gbl
microsoft.public.win2000.fax:2819
X-Tomcat-NG: microsoft.public.win2000.fax

What we are trying to do is get the name and fax
number
of all the
recepients that had faxes fail. So we can run that
infromation against
our database to get rid of the fax numbers that
dont
work.


On Thu, 12 Aug 2004 01:54:01 -0700, "Raghavendra R
[MSFT]"

By the way what kind of information are you
interested
in -
is it some properties of the Fax or the body of
the
Fax.
If it is the properties then you can get the
information
using Fax APIs & if it is body there is no way to
get
the
text content because the body will be in image
format
(Tiff). For a quick overview of Fax API have a
look
at
http://msdn.microsoft.com/library/en-
us/fax/faxabout_18s3.asp
 
W

William Wang[MSFT]

Hi Ken,

We're glad to help. Thanks for using Microsoft's
newsgroup!

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Mon, 13 Sep 2004 10:36:09 -0600
Message-ID: <[email protected]>
References:
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<rBh#[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English (American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca 209.115.177.133
Lines: 1
Path: cpmsftngxa10.phx.gbl!TK2MSFTNGXA06.phx.gbl!cpmsftngxa06.p
hx.gbl!TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msft
ngp13.phx.gbl
Xref: cpmsftngxa10.phx.gbl microsoft.public.win2000.fax:2978
X-Tomcat-NG: microsoft.public.win2000.fax

Thanks William your help has been wonderful and that last bit of
information that you were able to provide was the final peice of the
puzzle. And now the app works like a charm.

Once again, thanks for all of your help

Ken


Hi,

To delete faxes from the Outbox, we can use FaxOutgoingJob.Cancel
method. Please feel free to let us know if it works properly for you.

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via your newsreader
so that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.
--------------------
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<rBh#[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English (American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca 209.115.177.133
Lines: 1
Path:
cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFTNGP08 .phx.gbl!TK2MSF
TNGP09.phx.gbl
Xref: cpmsftngxa10.phx.gbl microsoft.public.win2000.fax:2921
X-Tomcat-NG: microsoft.public.win2000.fax

Hi William,

Sorry I didn't get back to you earlier. I've been on holidays and am
now trying to catchup on things.

We have been able to delete the faxes from the Sent
Items Folder
using
the FaxOutgoingMessageIterator (using Prefetch) and FaxOutgoingMessage
objects.

I haven't been able find code on msdn's site for deleting faxes from
the Outbox. We have many to delete I would like to automate the
process as much as possible. Can this be done and if so, can you
point me in the right direction.

Ken


Glad to hear the original problem has been resolved.
Regarding to your second question, could you please post
the code you tried to delete the faxes out of the outbox?

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=====================================================
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Thu, 19 Aug 2004 13:38:07 -0600
Message-ID:
References:
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<rBh#[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English
(American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca
209.115.177.133
Lines: 1
Path:
cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFTNGP 08.p
hx.gbl!tk2msftngp13.phx.gbl
Xref: cpmsftngxa10.phx.gbl
microsoft.public.win2000.fax:2841
X-Tomcat-NG: microsoft.public.win2000.fax

Thanks for the reply william,

I think thw problem might have come form some code that
we were
testing. Ive tested it a couple other times and it
seems to be ok and
nothing is disapearing.

Now i have another question for you. we seem to be
having trouble
deleting the faxes out of the outbox. the sent items
will delete fine
but we cant seem to get rid of the faxes from the
outbox. we can do it
manually so there i s no problem with the server
itself, we are just
having trouble getting code to do it.

Ps ther os is 2003 server enterprise edition

On Thu, 19 Aug 2004 14:39:59 GMT,
(e-mail address removed)
(William Wang[MSFT]) wrote:

It doesn't flush anything. It's very strange that this
happened.

What's the operating system?
Can we have a look at the code snippet? At the least
we
want the code that's using the API to get the jobs.

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

=================================================== ==
When responding to posts, please "Reply to Group" via
your newsreader so that others may learn and benefit
from your issue.
=================================================== ==
This posting is provided "AS IS" with no warranties,
and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Tue, 17 Aug 2004 12:44:54 -0600
Message-ID:
<[email protected]>
References:
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English
(American)
MIME-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 8bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca
209.115.177.133
Lines: 1
Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNG P10.
ph
x.gbl
Xref: cpmsftngxa06.phx.gbl
microsoft.public.win2000.fax:2828
X-Tomcat-NG: microsoft.public.win2000.fax

Thanks william

We have emplmented the code on the msdn site at it
seems to work fine
with the sent items. However we rebooted the server
and
all the
information was still in the console but the
information was no longer
retieveable through the code. Does this make sense?
Does MS Fax flush
out somethings on a reboot.

Any information would be helpful.

Thanks again for your help, its getting closer

Ken


On Tue, 17 Aug 2004 13:03:41 GMT,
(e-mail address removed)
(William Wang[MSFT]) wrote:

Hi Ken,

I've consulted with Raghavendra. If you are using
WinXP
& above, you can use
FaxServer.Folders.FaxOutgoingQueue.FaxOutgoingJob s
collection and go through each FaxOutgoingJob
object.
FaxOutgoingJob.Status and
FaxOutgoingJob.ExtendedStatus
can be used to detect failed faxes.
FaxOutgoingJob.Recipient.Name &
FaxOutgoingJob.Recipient.FaxNumber denote the
recipient
name and number respectively.

A MSDN sample is at
http://msdn.microsoft.com/library/en-us/fax/faxus ing_
53
zn
asp

On pre WinXP platforms (Win2K)
Plain C/C++ - refer to FaxGetJob API in MSDN
Using COM ¨C you need to use FaxJob object, look at
http://msdn.microsoft.com/library/en-us/fax/faxle gacy
_7
sm
a.asp for more details

Sincerely,

William Wang
Microsoft Online Partner Support

Get Secure! - <www.microsoft.com/security>

================================================= ====
When responding to posts, please "Reply to Group"
via
your newsreader so that others may learn and benefit
from your issue.
================================================= ====
This posting is provided "AS IS" with no warranties,
and
confers no rights.
--------------------
From: Extreme <[email protected]>
Subject: Re: Exporting list of faxes not sent
Date: Fri, 13 Aug 2004 15:38:35 -0600
Message-ID:
<[email protected]>
References:
<[email protected]>
<[email protected]>
<[email protected]>
X-Newsreader: Forte Free Agent 1.93/32.576 English
(American)
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Newsgroups: microsoft.public.win2000.fax
NNTP-Posting-Host: host133.signofhope.ab.ca
209.115.177.133
Lines: 1
Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGXA01.phx.gbl!TK2MSF TNGP
08
p
hx.gbl!TK2MSFTNGP10.phx.gbl
Xref: cpmsftngxa06.phx.gbl
microsoft.public.win2000.fax:2819
X-Tomcat-NG: microsoft.public.win2000.fax

What we are trying to do is get the name and fax
number
of all the
recepients that had faxes fail. So we can run that
infromation against
our database to get rid of the fax numbers that
dont
work.


On Thu, 12 Aug 2004 01:54:01 -0700, "Raghavendra R
[MSFT]"

By the way what kind of information are you
interested
in -
is it some properties of the Fax or the body of
the
Fax.
If it is the properties then you can get the
information
using Fax APIs & if it is body there is no way to
get
the
text content because the body will be in image
format
(Tiff). For a quick overview of Fax API have a
look
at
http://msdn.microsoft.com/library/en-
us/fax/faxabout_18s3.asp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top