Collection Contents Previous Next PDF

MobiLink Clients

Adaptive Server Anywhere Client Synchronization Parameters

dbmlsync options

dbmlsync extended options

CommunicationAddress (adr) extended option

Function 

Specifies network protocol options for connecting to the MobiLink server.

Syntax 

dbmlsync -e adr=protocol-option; ...

Parameters 
Description 

You must ensure that all subscriptions for a MobiLink user are synchronized to only one consolidated database. Otherwise, you may experience data loss and unpredictable behavior.

If you are using the Redirector, see Configuring MobiLink clients and servers for the Redirector.

This option has a short form and long form: you can use adr or CommunicationAddress.

This option can also be stored in the database using the SQL statement that creates or alters a publication, subscription, or user. For more information, see:

To specify the TCP/IP, HTTP, HTTPS, or HTTPS_FIPS protocol, use the CommunicationType extended option.

For more information, see CommunicationType (ctp) extended option.

See also 

Configuring MobiLink clients and servers for the Redirector

Example 

The following dbmlsync command line illustrates how you can set this option when you start dbmlsync:

dbmlsync -e "adr=host=localhost"

To specify multiple network protocol options on the command line, enclose them in single quotes. For example,

dbmlsync -e "adr='host=somehost;port=5001'"

To store the Address or CommunicationType in the database, you can use an extended option or you can use the ADDRESS or TYPE clause. For example,

CREATE SYNCHRONIZATION SUBSCRIPTION
   TO sales_publication
   FOR ml_user1
   TYPE 'https'
   ADDRESS host='localhost;port=2439'

Collection Contents Previous Next PDF