Dennis Heimbigner
Dennis Heimbigner
OOPS! I was testing if the test.opendap.org test server was no accepting https requests (it is still not doing so). I apparently forgot to switch back to http. I will...
According to this page: https://gitlab.dkrz.de/k202009/libaec, it is a an implementation of the Golomb-Rice algorithm. So I went looking for Golomb-Rice in Java an found this site: https://github.com/tomgibara/coding/blob/master/src/main/java/com/tomgibara/coding/GolombCoding.java So, it is...
If there is a libcurl setopt for this, then you should be able to do this using .ncrc file.
In looking here: https://curl.se/libcurl/c/easy_setopt_options.html I suspect that one of these options will do what you want. > CURLOPT_CAINFO : path to Certificate Authority (CA) bundle > CURLOPT_CAINFO_BLOB : Certificate Authority...
I need to understand how what you accessing. I presume that netcdf4-python is using the netcdf-c library. But what kind of data are you accessing> Can you provide an example...
In theory (I have never had occasion to use it), you should be able to get what you want by doing the following: 1. Create a file in your home...
Oops. some info got lost. My message above should have read: ``` 2. Insert of the following two lines into .ncrc HTTP.SSL.CAINFO= or HTTP.SSL.CAPATH= ```` If you have a .pem...
One way to test is to use the curl command with your above URL and using the --cacert \ option. If that works, then there is apparently a bug in...
I found this on stackoverflow: >If you add --trace-ascii to curl it will log your attempt in and include the path to the CA certs it's using, if you don't...
I think I misunderstood your original query. You want to augment (not replace) the default certificates with extra ones that you specify. Correct?