Invoking Server Operations

Contents

Method Interface

Invoking server methods is done with the following methods

Setting the connection string

Before a server operation can be invoked the Access Provider must know where to connect to. There are 2 ways to set the connection string in the .NET AP.

  1. Use a FndConnection constructor that takes connectstring argument:

    FndConnection conn = new FndConnection("<host>:<port>");

  2. Use the ConnectString property:

conn.ConnectString = "<host>:<port>";