Discussion:
[dart-misc] Breaking change? SecureSocket.initialize()
Joel Trottier-Hébert
2015-10-30 18:21:44 UTC
Permalink
Does anyone know what happened to it?

I can't find any information about it, and now I'm trying to update
Redstone.dart, and using "Dart VM version: 1.13.0-dev.7.4 (Tue Oct 27
15:06:23 2015) on "linux_x64""

The app won't build because the initialize method is gone. Is there
anything replacing it?

Seems like it disappeared somewhere between

https://api.dartlang.org/1.12.2/dart-io/SecureSocket-class.html#id_initialize
and
https://api.dartlang.org/1.13.0-dev.1.0/dart-io/SecureSocket-class.html
--
For other discussions, see https://groups.google.com/a/dartlang.org/

For HOWTO questions, visit http://stackoverflow.com/tags/dart

To file a bug report or feature request, go to http://www.dartbug.com/new

To unsubscribe from this group and stop receiving emails from it, send an email to misc+***@dartlang.org.
'William Hesse' via Dart Misc
2015-10-30 18:55:48 UTC
Permalink
Yes, it is gone, with the change to BoringSSL. Most client apps can just
drop the call to it, but server apps need to load their certificates into a
SecurityContext from PEM files. I thought there was a post to the list
about this already. It should be much simpler to use. See the examples in
tests/ standalone/IO/secure-server-socket-rest.dart, and the documentation
for SecurityContext.
Post by Joel Trottier-Hébert
Does anyone know what happened to it?
I can't find any information about it, and now I'm trying to update
Redstone.dart, and using "Dart VM version: 1.13.0-dev.7.4 (Tue Oct 27
15:06:23 2015) on "linux_x64""
The app won't build because the initialize method is gone. Is there
anything replacing it?
Seems like it disappeared somewhere between
https://api.dartlang.org/1.12.2/dart-io/SecureSocket-class.html#id_initialize
and
https://api.dartlang.org/1.13.0-dev.1.0/dart-io/SecureSocket-class.html
--
For other discussions, see https://groups.google.com/a/dartlang.org/
For HOWTO questions, visit http://stackoverflow.com/tags/dart
To file a bug report or feature request, go to http://www.dartbug.com/new
To unsubscribe from this group and stop receiving emails from it, send an
--
For other discussions, see https://groups.google.com/a/dartlang.org/

For HOWTO questions, visit http://stackoverflow.com/tags/dart

To file a bug report or feature request, go to http://www.dartbug.com/new

To unsubscribe from this group and stop receiving emails from it, send an email to misc+***@dartlang.org.
'Samuel Rawlins' via Dart Misc
2015-10-30 18:58:51 UTC
Permalink
There's still a TODO on this issue to add an entry to the CHANGELOG:
https://github.com/dart-lang/sdk/issues/23560

On Fri, Oct 30, 2015 at 11:55 AM, 'William Hesse' via Dart Misc <
Post by 'William Hesse' via Dart Misc
Yes, it is gone, with the change to BoringSSL. Most client apps can just
drop the call to it, but server apps need to load their certificates into a
SecurityContext from PEM files. I thought there was a post to the list
about this already. It should be much simpler to use. See the examples in
tests/ standalone/IO/secure-server-socket-rest.dart, and the documentation
for SecurityContext.
Post by Joel Trottier-Hébert
Does anyone know what happened to it?
I can't find any information about it, and now I'm trying to update
Redstone.dart, and using "Dart VM version: 1.13.0-dev.7.4 (Tue Oct 27
15:06:23 2015) on "linux_x64""
The app won't build because the initialize method is gone. Is there
anything replacing it?
Seems like it disappeared somewhere between
https://api.dartlang.org/1.12.2/dart-io/SecureSocket-class.html#id_initialize
and
https://api.dartlang.org/1.13.0-dev.1.0/dart-io/SecureSocket-class.html
--
For other discussions, see https://groups.google.com/a/dartlang.org/
For HOWTO questions, visit http://stackoverflow.com/tags/dart
To file a bug report or feature request, go to http://www.dartbug.com/new
To unsubscribe from this group and stop receiving emails from it, send an
--
For other discussions, see https://groups.google.com/a/dartlang.org/
For HOWTO questions, visit http://stackoverflow.com/tags/dart
To file a bug report or feature request, go to http://www.dartbug.com/new
To unsubscribe from this group and stop receiving emails from it, send an
--
For other discussions, see https://groups.google.com/a/dartlang.org/

For HOWTO questions, visit http://stackoverflow.com/tags/dart

To file a bug report or feature request, go to http://www.dartbug.com/new

To unsubscribe from this group and stop receiving emails from it, send an email to misc+***@dartlang.org.
Loading...