sending faxes to Hyla Fax Server

EugeneEugene Member Posts: 309
What i need is an OLE automation object that could work as a client for Hyla Fax Server. So i could use the client to send out faxes from navision

I've found WHFC client for windows platform which claims to support OLE automation but i cant get to see it from navision

anyone has any experience integrating Navision with Hyla Fax Server ?


A VBScript example provided is as follows:
Set whfc = CreateObject("WHFC.OleSrv")
  OLE_Return = whfc.SendFax(SpoolFile, faxnum, True)
  If OLE_Return <= 0 Then
    Box_Return = MsgBox("Error sending file", 16, Titel)
  Else
    Box_Return = MsgBox(OLE_Return, 0, Titel)
  End If
  Set whfc = Nothing


i have searched winregistry for WHFC.OleSrv entry and found its GUID
{28067B20-8DB7-11D1-A2B9-00A0246A936A}

but i still can't create an automation variable in navision - it does not accept the GUID as valid value for Subtype property of automation variable

Comments

  • EugeneEugene Member Posts: 309
    looks like Navision automation variables only support COM objects and do not support general OLE servers... :(
Sign In or Register to comment.