G
Guest
Hi all
I want to send a fax with WebService in vb.net; I use this code to send a fax with FaxService in Windows XP
Dim FXServ As New FAXCOMLib.FaxServe
Dim FXDoc As FAXCOMLib.FaxDo
Dim iFaxJob As Intege
FXServ.Connect("\\localhost"
FXDoc = CType(FXServ.CreateDocument("C:\fax.doc"), FAXCOMLib.FaxDoc
FXDoc.FileName = "C:\fax.doc
FXDoc.FaxNumber = "005056
FXDoc.SenderName = "Fax Test
FXDoc.DisplayName = "Test
iFaxJob = FXDoc.Send(
FXServ.Disconnect(
This code works well in Windows Forms but in Web Forms or in a WebService don’t work. I try different configurations of security, put the code in another assembly and generate a Wrapper for the FAXComLib class as explained in http://support.microsoft.com/default.aspx?scid=kb;en-us;q303647 without any result
Anybody can help me? Thanks in advance
Regard
Joan
I want to send a fax with WebService in vb.net; I use this code to send a fax with FaxService in Windows XP
Dim FXServ As New FAXCOMLib.FaxServe
Dim FXDoc As FAXCOMLib.FaxDo
Dim iFaxJob As Intege
FXServ.Connect("\\localhost"
FXDoc = CType(FXServ.CreateDocument("C:\fax.doc"), FAXCOMLib.FaxDoc
FXDoc.FileName = "C:\fax.doc
FXDoc.FaxNumber = "005056
FXDoc.SenderName = "Fax Test
FXDoc.DisplayName = "Test
iFaxJob = FXDoc.Send(
FXServ.Disconnect(
This code works well in Windows Forms but in Web Forms or in a WebService don’t work. I try different configurations of security, put the code in another assembly and generate a Wrapper for the FAXComLib class as explained in http://support.microsoft.com/default.aspx?scid=kb;en-us;q303647 without any result
Anybody can help me? Thanks in advance
Regard
Joan