WinAuthHttpServerConnection Class |
Namespace: Aras.IOM
The WinAuthHttpServerConnection type exposes the following members.
Name | Description | |
---|---|---|
![]() | AutoReloginOnSessionError |
Gets or sets flag for automatic relogin on session timeout.
The default value is false.
(Inherited from HttpServerConnection.) |
![]() ![]() | Compression |
Property specifies the way of compression of AML sent through IOM.HttpServerConnection.
Value from enumeration 'CompressionType' (namespace Aras.Common.Compression) can be set. Available values are:
(Inherited from HttpServerConnection.)
XML <configuration> <appSettings> <add key="CompressionType" value="gzip"/> </appSettings > </configuration> ![]() ... HttpServerConnection connection = CreateHttpServerConnection("innovatorServerUrl"); connaction.Compression = GetCompressionTypeFromAppConfig(); ... private CompressionType GetCompressionTypeFromAppConfig() { string value = ConfigurationManager.AppSettings["CompressionType"]; if (String.IsNullOrEmpty(value)) { return CompressionType.none; } else { return (CompressionType)Enum.Parse(typeof(CompressionType), value); } } |
![]() | ReadWriteTimeout |
Gets or sets a time-out in milliseconds when writing to or reading from a
stream.
(Inherited from HttpServerConnection.) |
![]() | Timeout |
Gets or sets the time-out value in milliseconds for the System.Net.HttpWebRequest.GetResponse()
and System.Net.HttpWebRequest.GetRequestStream() methods.
(Inherited from HttpServerConnection.) |
Name | Description | |
---|---|---|
![]() | CallAction |
Send a request with the specified action and AML to Innovator server and write the obtained response into
the outDOM.
(Inherited from HttpServerConnection.) |
![]() | GetDatabaseName |
Returns name of the current database in use.
(Inherited from HttpServerConnection.) |
![]() | GetDatabases |
Returns all configured databases
(Inherited from HttpServerConnection.) |
![]() | getFileUrl(String, UrlType) |
Returns file full file url. In some cases with AuthenticationBroker's token.
(Inherited from HttpServerConnection.) |
![]() | getFileUrl(String, UrlType, VaultUrlType) |
Returns file full file url. In some cases with AuthenticationBroker's token.
(Inherited from HttpServerConnection.) |
![]() | getFileUrls(ArrayList, UrlType) |
Returns file full file urls. In some cases with AuthenticationBroker's token.
(Inherited from HttpServerConnection.) |
![]() | getFileUrls(ArrayList, UrlType, VaultUrlType) |
Returns file full file urls. In some cases with AuthenticationBroker's token.
(Inherited from HttpServerConnection.) |
![]() | GetLicenseInfo |
Returns information about subscription and all add-on's
(Inherited from ServerConnectionBase.) |
![]() | GetLicenseInfo(String, String) |
Returns information about subscription and specified add-ons
(Inherited from HttpServerConnection.) |
![]() | getUserID |
If Login() was already called, returns id of the user associated with the connection;
otherwise throws an exception.
(Inherited from HttpServerConnection.) |
![]() | Login |
Login into Innovator server.
(Inherited from HttpServerConnection.) |
![]() | Logout |
Logout from Innovator (do not unlock locked Items).
(Inherited from HttpServerConnection.) |
![]() | Logout(Boolean) |
Logout from Innovator.
(Inherited from HttpServerConnection.) |
![]() | UsingParameters |
Call action with special HttpConnectionParams
(Inherited from HttpServerConnection.) |