I'm running Pharo8 with mongotalk master, and I'm unable to connect to a MongoDB Atlas cluster. I always get
"ConnectionClosed: Connection closed while waiting for data" errors:
The connection seems to close when ReplyOperation tries to read the size (method ReplyOperation>>read).
My first assumption was that the stream class MongoTalk uses is SocketStream and not ZdcSecureSocketStream. MongoDB Atlas requires TLS. Is it supported?
Hi,
I'm running Pharo8 with mongotalk master, and I'm unable to connect to a MongoDB Atlas cluster. I always get "ConnectionClosed: Connection closed while waiting for data" errors:
The connection seems to close when ReplyOperation tries to read the size (method ReplyOperation>>read).
The code I'm using is:
My first assumption was that the stream class MongoTalk uses is
SocketStream
and notZdcSecureSocketStream
. MongoDB Atlas requires TLS. Is it supported?