"Access denied" my compute name is "Des" which is on networking and i have logged as administrator but still access denied error is coming can anybody help me.
Code:
Try
Dim faxServer As New FAXCOMLib.FaxServer
faxServer.Connect("des".Trim())
Dim faxDoc As FAXCOMLib.FaxDoc = CType(faxServer.CreateDocument (Server.MapPath(pDocPath)), FAXCOMLib.FaxDoc)
faxDoc.RecipientName = "GI Solutions"
faxDoc.FaxNumber = pFaxNumber
faxDoc.DisplayName = "TEST FAX"
'faxDoc.FileName = Server.MapPath("FaxPath//" & txtPath.Text)
faxDoc.RecipientTitle = "Fax Send GI Solutions"
faxDoc.SenderFax = "ASP.NET"
faxDoc.SenderName = "Fax R&D from ASP.NET"
Dim Response As Integer = faxDoc.Send
faxServer.Disconnect()
Catch Ex As Exception
Response.Write(Ex.Message)
End Try
