javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake while inserting rows in bigquery

后端 未结 2 1026
一生所求
一生所求 2021-01-03 19:56

Hi I am working on android app in which I have integrated bigquery. I see sometimes we are getting a lot of SSL exceptions while inserting data to big query tables. I don\'t

2条回答
  •  一整个雨季
    2021-01-03 20:14

    Probably the server is asking for a client certificate and you aren't providing one. The server will provide a list of trusted signers, and your client certificate needs to be signed by one of those. You can't use a self-signed certificate for the client unless you've made special arrangements with the server, i.e. imported your client certificate into its trusted certificate list. Your SSL client won't send a certificate if it can't find one, or if the one(s) that it finds don't have trusted signers.

    It doesn't have anything to do with what the SSL connection was going to do after it was established, e.g. SQL queries, updates, etc.

提交回复
热议问题