File: known-problems

package info (click to toggle)
libaws 3.3.2-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 15,780 kB
  • ctags: 648
  • sloc: ada: 87,379; python: 1,914; ansic: 929; makefile: 842; xml: 235; java: 112; sh: 105
file content (32 lines) | stat: -rw-r--r-- 1,606 bytes parent folder | download
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
Known Problems fixed in AWS 3.3

- OB15-006: Cannot compress file larger than 2**32 bytes.
  Problem: Constraint error is raised when compressing a file whose original
           size is larger that 2**32 bytes.
  Workaround: None.

- OA07-026: Cannot override file upload's Last_Modified_Token header
  Problem: A specified Last_Modified_Token in the header of a response
           is always overridden by the server.
  Workaround: None.

- O408-015: Wrong link to AWS documentation in GPS plug-in
  Problem: The AWS and Templates Parser User's Guides where not listed in
           the GPS Help menu.
  Workaround: Open manually the documentation files found in share/doc/aws

- O317-001: Double free of rejected WebSockets
  Problem: When limiting the number of simultaneous connected WebSockets
           (using Config.Set.Max_WebSocket) the server could miss-behave
           because of memory corruption.
  Workaround: Do not limit the number of active WebSockets.

- NB26-001: Wrong code generated by wsdl2aws for arrays/record inside record
  Problem: For an array inside a record which is not directly used as
           a parameter to a SOAP routine the code generated do not
           compile. This only happen when using a specific manually written
           a type package (using -type wsdl2aws option). The issue is that
           there is a missing "+" operator used to convert an array to the
           corresponding safe-pointer.
  Workaround: Add manually the "+" operator into the hand written type package
              then a corresponding use clause into the package using it.