-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Curl/OpenSSL Error #194
Comments
which example? |
Il giorno lun, 02/10/2023 alle 07.03 -0700, Emmanuel Blondel ha
scritto:
which example?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID:
***@***.***>
Here it is:
library(rsdmx)
myUrl <-
dataset <- readSDMX(myUrl)
Errore in curl::curl_fetch_memory(url, handle = handle) :
OpenSSL/3.1.2: error:0A000152:SSL routines::unsafe legacy
renegotiation disabled
sessionInfo()
R version 4.3.1 (2023-06-16)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Manjaro Linux
Matrix products: default
BLAS: /usr/lib/libblas.so.3.11.0
LAPACK: /usr/lib/liblapack.so.3.11.0
locale:
[1] LC_CTYPE=it_IT.UTF-8 LC_NUMERIC=C
LC_TIME=it_IT.UTF-8
[4] LC_COLLATE=it_IT.UTF-8 LC_MONETARY=it_IT.UTF-8
LC_MESSAGES=it_IT.UTF-8
[7] LC_PAPER=it_IT.UTF-8 LC_NAME=C LC_ADDRESS=C
[10] LC_TELEPHONE=C LC_MEASUREMENT=it_IT.UTF-8
LC_IDENTIFICATION=C
time zone: Europe/Rome
tzcode source: system (glibc)
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] rsdmx_0.6-3
loaded via a namespace (and not attached):
[1] httr_1.4.7 compiler_4.3.1 plyr_1.8.8 R6_2.5.1
tools_4.3.1
[6] rstudioapi_0.15.0 curl_5.0.2 Rcpp_1.0.11 XML_3.99-0.14
Another example:
providers <- getSDMXServiceProviders();
as.data.frame(providers)
agencyId
name scale country
1 BIS Bank for International
Settlements international <NA>
2 ECB European
Central Bank international <NA>
3 ESTAT Eurostat (Statistical office of the European
Union) international <NA>
4 ESTAT Eurostat (Statistical office of the European Union) -
COMEXT international <NA>
5 ESTAT Eurostat (Statistical office of the European Union) -
DG COMP international <NA>
6 ESTAT Eurostat (Statistical office of the European Union) -
DG GROW international <NA>
7 ESTAT Eurostat (Statistical office of the European Union) -
DG EMPL international <NA>
8 IMF International
Monetary Fund international <NA>
9 OECD Organisation for Economic Cooperation and
Development international <NA>
10 UNICEF United Nations International Children's
Emergency Fund international <NA>
11 CD2030 United Nations International Children's
Emergency Fund international <NA>
12 UNSD United Nations Statistics
Division international <NA>
13 ILO_Legacy International Labour Organization of the United
Nations international <NA>
14 ILO International Labour Organization of the United
Nations international <NA>
15 WBG_WITS World Integrated Trade
Solution international <NA>
16 WB
World Bank international <NA>
17 PDH Pacific Data Hub
DotStat international <NA>
18 ABS Australian Bureau of
Statistics national AUS
19 NBB National Bank of
Belgium national BEL
20 INSEE Institut national de la statistique et des études
économiques national FRA
21 INEGI Instituto Nacional de Estadística y Geografía
(Méjico) national MEX
22 ISTAT Istituto nazionale di statistica
(Italia) national ITA
23 NOMIS NOMIS - UK Official Labour Market
Statistics national UK
24 LSD Statistics
Lithuania national LTU
25 NCSI Sultanate of Oman - National Center for Statistics &
Information national OMN
26 STAT_EE Statistics Estonia
database national EST
27 BBK
Bundesbank national DEU
28 KNOEMA KNOEMA knowledge
plateform international <NA>
builder compliant
1 SDMXREST21RequestBuilder TRUE
2 SDMXREST21RequestBuilder TRUE
3 SDMXREST21RequestBuilder TRUE
4 SDMXREST21RequestBuilder TRUE
5 SDMXREST21RequestBuilder TRUE
6 SDMXREST21RequestBuilder TRUE
7 SDMXREST21RequestBuilder TRUE
8 SDMXREST21RequestBuilder TRUE
9 SDMXDotStatRequestBuilder FALSE
10 SDMXREST21RequestBuilder TRUE
11 SDMXREST21RequestBuilder TRUE
12 SDMXREST21RequestBuilder TRUE
13 SDMXREST21RequestBuilder FALSE
14 SDMXREST21RequestBuilder TRUE
15 SDMXREST21RequestBuilder TRUE
16 SDMXREST21RequestBuilder TRUE
17 SDMXREST21RequestBuilder FALSE
18 SDMXREST21RequestBuilder TRUE
19 SDMXDotStatRequestBuilder FALSE
20 SDMXREST21RequestBuilder TRUE
21 SDMXREST21RequestBuilder FALSE
22 SDMXREST21RequestBuilder TRUE
23 SDMXRequestBuilder FALSE
24 SDMXREST21RequestBuilder TRUE
25 SDMXRequestBuilder FALSE
26 SDMXDotStatRequestBuilder FALSE
27 SDMXRequestBuilder FALSE
28 SDMXRequestBuilder FALSE
sdmx <- readSDMX(providerId = "OECD", resource = "data", flowRef =
"MIG",
+ key = list("TOT", NULL, NULL), start = 2010, end =
2011)
[rsdmx][INFO] Fetching
'https://stats.oecd.org/restsdmx/sdmx.ashx/GetData/MIG/TOT../all?startPeriod=2010&endPeriod=2011'
Errore in curl::curl_fetch_memory(url, handle = handle) :
OpenSSL/3.1.2: error:0A000152:SSL routines::unsafe legacy
renegotiation disabled
Best regards
Sergio
|
Ok i will investigate, it appears that since few time OECD data fetching has this issue on certain OS such as Fedora. Manjaro seems to have the same issue. |
Il giorno lun, 02/10/2023 alle 11.07 -0700, Emmanuel Blondel ha
scritto:
Ok i will investigate, it appears that since few time OECD data
fetching has this issue on certain OS.
Maybe I'm missing something, maybe I am doing something wrong, but if I
go to
https://www.imf.org/en/Publications/WEO/weo-database/2023/April/download-entire-database
and try
myURL <-
dataset <- readSDMX(myUrl)
I get
Errore in curl::curl_fetch_memory(url, handle = handle) :
OpenSSL/3.1.2: error:0A000152:SSL routines::unsafe legacy
renegotiation disabled
Could you suggest an example that should work?
Thanks
Sergio
… —
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
The issue you get is related to the OS you are using. The explanation is the same as at https://confluence.atlassian.com/bitbucketserverkb/git-clone-fails-with-unsafe-legacy-renegotiation-disabled-in-bitbucket-server-1216973867.html i'm going to investigate to see what can be done on your side |
I've contacted OECD developer's team to get their support on this. |
OECD replied the issue has been reported yet, I understood they are working on it. |
I can't run any examples from the vignette because I get the error:
Error in curl::curl_fetch_memory(url, handle = handle) :
OpenSSL/3.1.2: error:0A000152:SSL routines::unsafe legacy renegotiation disabled
The text was updated successfully, but these errors were encountered: