Hi Vitor,I've created an issue with your problem.I encourage you to do so too, because following the mailing list is sometimes hard :)About your second issue, you should know that libgit (libgit2.github.com/libgit2) will mostly bypass git and reimplement most of its features.So, most of the times it will read git's settings, and some other times not.And also there is the possibility that Iceberg overrides those settings too.For example, your fixself prim_fetch_opts prim_proxy_opts prim_type: LGitProxyTypeEnum git_proxy_autodoes enable automatic proxy verification and forbids people to set their own proxy.Not saying that this is bad but the contrary: I think it is a really good default value :).Similar to that there are the ssh verifications on Iceberg. So far��- we do not check the certificate stores from the machine (we could through FFI, the sub-project is listed in here��https://github.com/pharo-vcs/iceberg/wiki/How-to-help- )us,-What-you-could-contribute ��- I don't think so far there is a hook to "disable ssh verification". This could be dangerous...I've googled the error a bit, and found this. Maybe you can try it and see wether the solution belongs to iceberg, or that we should enhance the documentation?Tx,Guille--On Thu, Jun 21, 2018 at 5:49 PM Vitor Medina Cruz <vitormcruz@gmail.com> wrote:I am sorry, the correct message is "LGit_GIT_ERROR: failed to get server certificate: The handle is in the wrong state for the requested operation".I tried to add corporate certificates to the git curl-ca-bundle.crt, I tried to git config --global http.sslVerify false also, no success... :(On Thu, Jun 21, 2018 at 9:31 AM, Vitor Medina Cruz <vitormcruz@gmail.com> wrote:Ok, I forgot to mention I have changed LGitRepository>>clone:url:Anyways, I fixed that and I still get "IceGenericError: failed to get server certificate: The identifier is not in the correct state for the resquested operation"local_path:options:, but for some odd reason it's arguments names were switched to arg 1, arg2, arg3 etc, so the out error was because was renamed to one of those generic arg names. I figure that out looking at the versions of the methods, and it apers that when I first access it this change is made. On Wed, Jun 20, 2018 at 4:49 PM, Vitor Medina Cruz <vitormcruz@gmail.com> wrote:Hello,Iceberg fail to function behind a proxy on Pharo 7 32bits Windows. When I try to clone I get a:
IceGenericError: failed to get server certificate: The identifier is not in the correct state for the resquested operation
I had a similar problem some time ago with Pharo 6, in which I made a local hot fix after questioning here. The fix was to the LGitCloneOptions and LGitFetchOptions both at the initializeWithDefaults, currently this method on LGitCloneOptions is like this:
initializeWithDefaults
������ self withReturnHandlerDo: [
������ ������ self
������ ������ ������ clone_init_options: self
������ ������ ������ version: LGitOptionsVersionsEnum�� git_clone_options_version_1 ].
������ self prim_fetch_opts prim_proxy_opts prim_type: LGitProxyTypeEnum git_proxy_autoThe bold is the fix, but it should come first in the method:
initializeWithDefaults
������ self prim_fetch_opts prim_proxy_opts prim_type: LGitProxyTypeEnum git_proxy_auto
������ self withReturnHandlerDo: [
������ ������ self
������ ������ ������ clone_init_options: self
������ ������ ������ version: LGitOptionsVersionsEnum�� git_clone_options_version_1 ].That way worked on Pharo 6, but now I got a:
"FFIVariableNameNotFound: Could not find accessor for variable named 'out'"Any clues?Regards,Vitor
������
Guille Polito
Research Engineer
Centre de Recherche en Informatique, Signal et Automatique de Lille
CRIStAL - UMR 9189
French National Center for Scientific Research - http://www.cnrs.fr
Phone: +33 06 52 70 66 13