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