I’m trying to connect to a websocket secure server app, designed on NodeJS using my EC25AU module, but I can’t.
Using the following AT commands:
AT+QCFG=“usbnet”,0
AT+QICSGP=1,1,“internet.movil”,“internet”,“internet”,1
AT+QIACT=1
AT+QIACT?
AT+QSSLCFG=“sslversion”,1,1
AT+QSSLCFG=“ciphersuite”,1,0X0035
AT+QSSLCFG=“seclevel”,1,1
AT+QFUPL=“RAM:mycert.pem”,LENGTH_DEL_CERTIFICADO,100
Send complete certificate…
AT+QSSLCFG=“cacert”,2,“RAM:mycert.pem”
AT+QSSLOPEN=2,1,4,“wss://myserver.com”,443,0
AT+QSSLSEND=4
QSSLOPEN return ERROR
QSSLSEND return ERROR
QSSLRECV return ERROR
What am I doing wrong?