1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
=========================
AWS 3.2 NEW FEATURES LIST
=========================
Copyright (C) 2006-2014, AdaCore
This file contains a list of new features introduced in AWS.
A full description of all AWS features can be found in the AWS
documentation.
An ISO date (YYYY-MM-DD) appears in parentheses after the
description line. This date shows the implementation date
of the feature.
New features in AWS 3.2
-----------------------
NF-32-N822-001 Add support for controlling WebSocket lifetime (2014-09-03)
It is now possible to control the WebSocket's lifetime. First the
new configuration option Max_WebSocket can be used to allow a
maximum of simultaneous opened WebSocket and so avoid using all
operating system file descriptor. Second the new configuration
option WebSocket_Timeout can be used to control the time without
activity after which a WebSocket is in timed-out mode. A timed-out
WebSocket can be closed if the maximum number of WebSocket is
reached.
NF-32-N718-007 Add support for WebSocket unique identifier (2014-07-23)
This UID can be used to reference a WebSocket without having to
copy the actual object. It is possible to send messages to this
specific WebSocket.
NF-32-N607-008 Add support for WSDL extension (2014-06-07)
WSDL extension are now recognized and wsdl2aws will generate
proper Ada code.
NF-32-N327-008 Diffie-Hellman and RSA parameters generation (2014-03-06)
Support for Diffie-Hellman and RSA parameters generation on server side.
These parameters are automatically generated by AWS the first time. They
can be regenerated at any time for security reasons if needed. The
generated Diffie-Hellman parameters are saved in a file to be reused
on next run as it is quite expensive to generate it every time at
the start of an application.
NF-32-N327-007 Support for SSL/TLS session reuse (2014-03-18)
AWS is now able to resume security sessions over the secure sockets.
Session data are processed in two ways, either in server side session
cache or in session tickets held on the client side (RFC 5077).
NF-32-N302-003 Add support for cipher priority (2014-03-02)
It is now possible to specify the SSL/TLS session’s handshake algorithms
and options using the new configuration variable CIPHER_PRIORITIES.
NF-32-N227-068 Add support for controlling WebSocket handshake (2014-03-02)
In the user's WebSocket factory it is now possible to return an
AWS.Net.WebSocket.Handshake_Error.Object to reject the handshake.
With such response it is possible to specify a specific status code
and an associated reaso-phrase. The default status code is 403.
NF-32-N126-007 Add a way to initialize explicitly the SSL layer (2014-02-03)
It is now possible to initialize explicitly the SSL layer default
parameters (certificate filename, security mode, etc...). The
default configuration is used for every secure socket created by AWS.
NF-32-MB08-003 Add support for status code when closing WebSocket (2014-02-02)
It is now possible to close a WebSocket with a status code.
|