Posted  by 

Microsoft Connection Manager Mac

Save on select Xbox consoles and games, Surface, PCs, movies, and more. Offers end April 13. Xbox Live Gold and over 100 high-quality console and PC games. Play together with friends and discover your next favorite game. Get expert tips on how to use Microsoft Teams—free to educators and students. Follow these steps to get started with Remote Desktop on your Mac: Download the Microsoft Remote Desktop client from the Mac App Store. Set up your PC to accept remote connections. (If you skip this step, you can't connect to your PC.) Add a Remote Desktop connection or a remote resource.

-->

Applies to: Lync 2013 Lync Server 2013

The primary functionality of a connection manager is to manage incoming and outgoing connections. An instance of a class that inherits from the abstract RealTimeConnectionManager class can be used to manage outbound connections. A RealTimeServerConnectionManager implementation (the RealTimeServerTcpConnectionManager class or the RealTimeServerTlsConnectionManager class) must be used to manage incoming connections.

General features

A connection manager encapsulates the low-level SIP functionalities and provides connection services for real-time endpoints. The services include the following:

  • Making TCP or TLS connections to a specified host on a given network interface (Host), using a specific port (Port), and using a chosen type of transport (Transport). The (Host, Port, Transport) parameters define the destination tuple. Applications can define connection pools to limit the number of outbound TCP or TLS connections with a remote tuple.

  • Dispatching incoming out-of-dialog requests to the intended endpoint.

  • Responding to incoming messages automatically when the message cannot be dispatched to a real-time endpoint. This can happen when no endpoint has been associated with the connection manager. In this case, the message sender receives a response indicating an internal error.

  • Controlling the lifetime of connections. A new incoming connection is disconnected if no valid message arrives on the connection in about one (1) minute. An established (incoming or outgoing) connection will be disconnected if it remains idle for about 15 minutes. However, an application can control the idle time-out for either incoming or outgoing connections by setting the (DefaultIncomingConnectionTimeout or DefaultOutgoingConnectionTimeout property. The setting can be applied on an individual connection or across all the connections globally.

  • Managing the local certificate. A local certificate is needed when mutual TLS (MTLS) is used.

  • Enabling or disabling listening for incoming connections. This applies only to server connection managers.

  • Maintaining a list of host or domain names trusted for incoming connections. This applies only to a server connection manager using the MTLS transport. Entries from this list are checked to match against the subject name (SN) and subject alternate name (SAN) or, if the subject is missing, the subject alternate name of the certificate supplied by the remote host.

  • Managing enhanced key usage for controlling acceptable categories of certificates. Typically, a certificate falls into a category for client authentication, server authentication, or both.

A Microsoft Unified Communications Managed API 4.0 application uses a server connection manager if it functions as a server or middle-tier application. The application uses a client connection manager if it serves only as a client.

When an application makes a connection, it can explicitly create a connection manager or use a default connection manager. The application makes the choice when it instantiates an endpoint. If no connection manager is explicitly assigned to the endpoint, the default connection manager is used.

Connection pool

Every endpoint is associated with a single connection manager. The connection manager manages both outgoing and incoming connections for the endpoint. For outgoing connections, a connection manager can be configured to support connection sharing. For this, the connection manager maintains one or more connection pools. Each connection pool contains a fixed, but configurable, number of connections. Connection sharing can be optimized by adjusting the pool sizes. Incoming connections are not pooled.

A connection pool is associated with a destination tuple: (Host, Port, Transport). It identifies the connections to a specified host (Host) on a given network interface (Port) and using a chosen type of transport (Transport). Host is a host name that can be an IP address. Destination tuples with different host names correspond to two different connection pools even if the host names are resolved into the same IP address.

Remote

A connection pool can maintain zero (0) or more connections. An application can specify the maximum number of connections permitted on a pool. This can be set for an individual pool or for all the connection pools used in the application. When an application attempts to make a connection, the connection manager creates a new connection if the maximum number of connections has not yet been reached. When the pool already contains the maximum number of connections, the connection manager will reuse an existing connection in a round-robin fashion.

The maximum number of connections permitted on a pool is also known as the pool size. In general, a smaller pool size means more connection sharing. A larger pool size means less connection sharing. When the pool size is set to the maximum value supported by the host computer (in .NET Framework, this is Int32.MaxValue), connection sharing is effectively turned off and every request amounts to creating a new connection. If the pool size is too small, a pending request might need to wait for a long time. If the pool size is too large, a significant portion of the allocated resource can be underutilized. By choosing an appropriate pool size, the application can optimize connection resources while maintaining optimal performances.

To optimize server-to-server communications, an application can use connection pooling, which places an upper bound on the number of connections that endpoints, page-mode requests, and sessions use to communicate with a remote server. By limiting the number of connections, the application can reuse connections in the connection pool, thereby reducing the overhead of establishing new connections.

Client connection manager

The client connection manager (the RealTimeClientConnectionManager class), implemented from the abstract RealTimeConnectionManager class, is the simplest type of connection manager. This type of connection manager does not listen for any incoming connection and is therefore more secure. Typically, an application serving as a client uses the client connection manager because listening for an incoming request is not necessary. Lync or other Lync-like applications are some of the examples.

A client connection manager can make outbound TCP or TLS connections. When using a TLS connection, the client connection manager does not present any certificate to the server, but verifies the server certificate.

A client connection manager can host one or more endpoints. For example, a simple Lync-like client uses a single endpoint. It makes a single outbound connection to a server and reuses that connection for incoming traffic from the server. Typically, a server controls the throughput for such connections to regulate network traffic. If the client sends a request when there are already 20 outstanding requests from that client on the server, the server will fail additional requests. This is known as client throttling. In this case, sharing connections between endpoints can be problematic. As a result, the client connection manager disables connection sharing automatically. The client connection manager can enable client throttling by setting the IsEndpointThrottled property on a SipEndpoint instance to true.

Only SipEndpoint can be used with a client connection manager; a SipPeerToPeerEndpoint instance must not be used. When a SipEndpoint instance is instantiated, if no client connection manager is passed to the constructor, a default client connection manager is used, and connection sharing is disabled on this default connection manager. If an application passes a client connection manager to the constructor of a SipEndpoint, the application must disable sharing on the connection manager unless the server is known not to throttle the connections.

Server connection manager

A server connection manager, implemented from the abstract RealTimeServerConnectionManager class in two related subclasses (described in the next two sections), adds the capability of listening for incoming connections. Applications acting as a server or a middle-tier agent need to listen for incoming requests by calling StartListening on the associated connection manager. A server connection manager can host either endpoints that must register with a SIP server (SipEndpoint) or peer-to-peer endpoints (SipPeerToPeerEndpoint).

Depending on the type of transports used in a connection, the server connection manager is further divided into the TCP server connection manager and the TLS server connection manager.

When multiple SipEndpoint instances are present, Microsoft Communications Server manages the dispatching of incoming messages. If the message header contains unique context information, the message is dispatched to the endpoint corresponding to that context. If the message target includes a GRUU, the message is dispatched to the specified endpoint.

TCP server connection manager

The TCP server connection manager, implemented in the RealTimeServerTcpConnectionManager class, can listen for incoming TCP connections. Otherwise, it inherits all the capabilities of the server connection manager. The application can provide an IPEndPoint object to control how the listening is enabled. For example, setting Port to zero (0) indicates listening on any port. Specifying the Address as IPAddress.Any indicates any IP v4 addresses are permissible. IP v6 addresses are not supported.

It is recommended that you not use a TCP connection manager, as the less-trusted relationship with the server is not as secure and is more prone to failure, especially given that the owner of a given IP address can frequently change, or be spoofed.

TLS server connection manager

The TLS server connection manager, implemented in the RealTimeServerTlsConnectionManager class, can listen for incoming TLS connections. The application can also choose whether to use MTLS. For TLS connections, only the server side is required to present a certificate. The client side verifies the server certificate. For MTLS connections, certificates must be installed on both the server side and the client side.

The TLS server connection manager allows an application to specify a list of trusted hosts or domains. Incoming connections from such allowed hosts or domains are automatically trusted. Incoming connections from a host or domain that is not among the entries in this list are not allowed.

The application can enumerate, add, remove, and change a trusted domain by reading the AllowedDomains property, manipulating the resulting list, and writing the modified list back to the AllowedDomains property.

The format of the entries must be a fully qualified domain name (FQDN) of a host ('computer1.contoso.com') or a dot-prefixed domain name ('.contoso.com'). The latter means that all of the computers from the specified domain are trusted. The '.' prefix of the latter example indicates that the entry is a domain name and not an FQDN.

By default, the AllowedDomains list contains 'localhost' as the only trusted entry. This means that incoming connections from any other hosts are not permitted. If this list is empty, any host or domain is trusted. This is a security threat that an application must avoid. The subject or alternate subject (if the subject is empty) in the remote certificate is used as the search key in the list of allowed hosts and domains. If the list is non-empty, only computers that have matching subject names in this list are allowed. The AddToAllowedDomains(String) method is used to add entities to the AllowedDomains list.

The allowed host and domain list is used only when mutual TLS is enabled, because the remote certificate is needed for verification. By default, the connection manager automatically adds the remote host of an outgoing connection to the list of allowed domains if mutual TLS is enabled and the list is nonempty.

-->

This article contains instructions to install the unixODBC Driver Manager for use with all the versions of Microsoft ODBC Driver for SQL Server on Linux and macOS.

Microsoft Connection Manager Mac Free

Important

Delete any driver manager packages installed on your computer before you install the unixODBC Driver Manager. Installing the unixODBC Driver Manager could cause a failure of an existing Driver Manager.

Installing the Driver Manager for Microsoft ODBC Driver 13, 13.1, and 17

The driver manager dependency is resolved automatically by the package management system when you install the Microsoft ODBC Driver 13, 13.1, or 17 for SQL Server on Linux or macOS by following the instructions in the following articles:

Microsoft access 2016 free download - Microsoft Office 2016 Preview, Microsoft Excel 2016, Microsoft Powerpoint 2016, and many more programs. To cancel your Microsoft office 365 free trial follow these steps. Open the “Payment and billing page” and then select “cancel”. After that, you click to confirm the “Cancellation”. In this article, I showed you how to download Microsoft Access for Mac by using the office 365 free trial. Microsoft Office 2016 For Mac Free Download Full Version in a single fast link. It is an offline installer of complete MS Office 2016 for Mac OS. Microsoft Office 2016 Overview. The tech company has released Office 2016?s three traditional editions for Mac that include Home &. Apr 08, 2019  Microsoft Office 2016 Free Download and Activate. Microsoft Office 2016 (codenamed Office 16) is a version of the Microsoft Office productivity suite. Note: If you want to download Microsoft Office 2016 for Mac you choose. This files also have Microsoft Word 2016, Microsoft Excel 2016, Microsoft Access 2016, Microsoft Powerpoint 2016. Microsoft access 2016 for mac free download full version. Dec 04, 2015  Microsoft Download Manager is free and available for download now. Back Next The Microsoft Access 2016 Runtime enables you to distribute Access 2016 applications to users who do not have the full version of Access 2016 installed on their computers.

Installing the Driver Manager for Microsoft ODBC Driver 11 for SQL Server

(SUSE and Red Hat Linux only.)

Using the Installation Script

Important

These instructions refer to msodbcsql-11.0.2270.0.tar.gz, which is the installation file for Red Hat Linux. If you are installing the Preview for SUSE Linux, the file name is msodbcsql-11.0.2260.0.tar.gz.

Remote Desktop Connection Manager Mac

To install the driver manager:

  1. Make sure that you have root permission.

  2. Go to the directory where the MicrosoftSQL Server ODBC Driver download placed the file called msodbcsql-11.0.2270.0.tar.gz. Make sure that you have the *.tar.gz file that matches your version of Linux. To extract the files, execute the following command: tar xvzf msodbcsql-11.0.2270.0.tar.gz.

  3. Change to the msodbcsql-11.0.2270.0 directory and there you should see a file called build_dm.sh. You can run build_dm.sh to install the unixODBC Driver Manager.

  4. To see a list of the available options, execute the following command: ./build_dm.sh --help.

  5. When you are ready to install, and if your computer can access an external site via FTP, execute the following command: ./build_dm.sh.

If your computer cannot access an external site via FTP, get unixODBC-2.3.0.tar.gz. You can get unixODBC-2.3.0.tar.gz from http://www.unixodbc.org. Click the Download link on the left side of the page to go to the download page. Then click the appropriate link to download unixODBC-2.3.0 (not unixODBC-2.3.1). unixODBC-2.3.1 is not supported with this release of the Microsoft ODBC Driver 11 for SQL Server. Execute the following command to begin the unixODBC Driver Manager installation: ./build_dm.sh --download-url=file://unixODBC-2.3.0.tar.gz.

Remote Manager

  1. Type YES to proceed with unpacking the files. This part of the process can take up to five minutes to complete.

  2. After the script stops running, follow the instructions on the screen to install the unixODBC Driver Manager.

You are now ready to install the driver. For more information, see the ODBC driver installation instructions for Linuxor macOS.

Manual Installation

If the installation script is unable to complete, configure and build the proper driver manager yourself.

  1. Remove any older installed version of unixODBC (for example, unixODBC 2.2.11). On Red Hat Enterprise Linux 5 or 6, execute the following command: yum remove unixODBC. On SUSE Linux Enterprise, zypper remove unixODBC.

  2. Go to http://www.unixodbc.org. Click the Download link on the left side of the page to go to the download page. Then click the appropriate link to save the file unixODBC-2.3.0.tar.gz to your computer. UnixODBC-2.3.1 is not supported with this release of the Microsoft ODBC Driver 11 for SQL Server.

  3. On your Linux computer, execute the command: tar xvzf unixODBC-2.3.0.tar.gz.

  4. Change to the unixODBC-2.3.0 directory.

  5. At a command prompt, execute the command: CPPFLAGS='-DSIZEOF_LONG_INT=8'.

  6. At a command prompt, execute the command: export CPPFLAGS.

  7. At a command prompt, execute the command: './configure --prefix=/usr --libdir=/usr/lib64 --sysconfdir=/etc --enable-gui=no --enable-drivers=no --enable-iconv --with-iconv-char-enc=UTF8 --with-iconv-ucode-enc=UTF16LE'.

  8. At a command prompt (logged in as root), execute the command: make.

  9. At a command prompt (logged in as root), execute the command: make install.

Hp Connection Manager

You are now ready to install the driver. For more information, see the ODBC driver installation instructions for Linuxor macOS.

Microsoft Connection Manager Mac Free

See Also