FACSys® Fax Messaging Gateway
Software Development Kit (SDK)
AFM & Web Services

Download
SDK


Contact

Introduction Object Model Tasks Samples & Programming Languages Packaging Troubleshooting FAQ Appendices

Programming Tasks

This section describes some of the common programming tasks you can perform with Active Fax Messaging. The first task your application must complete is create a faxsession object and logon to a FACSys server. The following table categorizes the described tasks:

 

VB.NET

VB

 

General programming tasks

Log on

This will log on to the server named lemur with an account name and password of guest. The beginning of all your programs should create the object and login.
    ' create the FaxSession object
    Set objFaxSession = CreateObject("facsys.faxsession")
    
    ' log on to FACSys server
    objFaxSession.logon "lemur", "guest", "guest"
    
back to categories list

Log off

This will log off the server. Before your program exists, you should also dispose of the FaxSession object.
    ' log off FACSys server
    objFaxSession.logoff
    
    ' clean up
    Set objFaxSession = Nothing
    
back to categories list

 


 

Home  |  emFAST  |  FACSys  |  FACSys Support  |  Download Request  |  Contact