Previous in Contents Next in Contents

OpenPostingAcceptor Method

This method retrieves the Posting Acceptor object.

Syntax

ReplicationServer.OpenPostingAcceptor

Remarks

You must have Site Server Publishing administrator privileges on the server to call this method.

Example

The following example opens the Posting Acceptor object.

Option Explicit 
On Error Resume Next

dim ReplServer
set ReplServer = CreateObject("CrsApi.ReplicationServer")
ReplServer.Initialize("")

dim POST
set POST = ReplServer.OpenPostingAcceptor
...

'Release objects
set POST       = Nothing
set ReplServer = Nothing

See Also

ReplicationPostingAcceptor


© 1997-2000 Microsoft Corporation. All rights reserved.