F
Florin Chirtes
Hi,
i need to be able to send fax from asp. So i have conected a fax modem to my
computer, windows 2000 with IIS instaled. I have tested the fax with word
and the fax was sended. Now i have created a service under my IIS and an
asp file:
this is the code from my asp file:
<%
set FS = Server.CreateObject("FaxServer.FaxServer")
FS.Connect ("")
Set FD = FS.CreateDocument("d:\test.txt")
FD.FileName = "d:\test.txt"
FD.FaxNumber = "0265211222" ' Fax number
FD.DisplayName = "abc"
FD.DiscountSend = 0
FD.SendCoverpage = 0
FD.Send
FS.Disconnect
Set FD = Nothing
Set FS = Nothing
%>
when I execute my asp it's give me the following error:
Error Type:
(0x80004005)
Unspecified error
/fax/test.asp, line 3
What can be the problem?
Thanks in advance for your help!
i need to be able to send fax from asp. So i have conected a fax modem to my
computer, windows 2000 with IIS instaled. I have tested the fax with word
and the fax was sended. Now i have created a service under my IIS and an
asp file:
this is the code from my asp file:
<%
set FS = Server.CreateObject("FaxServer.FaxServer")
FS.Connect ("")
Set FD = FS.CreateDocument("d:\test.txt")
FD.FileName = "d:\test.txt"
FD.FaxNumber = "0265211222" ' Fax number
FD.DisplayName = "abc"
FD.DiscountSend = 0
FD.SendCoverpage = 0
FD.Send
FS.Disconnect
Set FD = Nothing
Set FS = Nothing
%>
when I execute my asp it's give me the following error:
Error Type:
(0x80004005)
Unspecified error
/fax/test.asp, line 3
What can be the problem?
Thanks in advance for your help!