Jump to content

JoeBayLD

Member
  • Posts

    10
  • Joined

  • Last visited

Posts posted by JoeBayLD

  1. That’s unfortunate. 
     

    It’s not a SSL issue I don’t think. I did have some SSL issues in 2021, but I end up disabling SSL for the request and that solves it. This is a TLSv1 issue and has something to do with OpenSSL 0.9.8zh (which is no longer supported). The only way I’ve read on how to update that is with a newer version of python. 
     

    Is there a way to use the systems python version to execute the request? The latest macOS ships with 3.8 so I could use that if there’s a way to access it. 
     

    Also, what are the shortcuts you’re talking about? 

  2. Hi @Vlado

     

    Have you been able to work on upgrading the Python version in 2020? I'm using urllib3 in my plugin, but cannot make HTTPS calls in it because of an outdated TLS version. Specifically the OpenSSL version is very old and not compatible with modern HTTPS. 

     

    My plugin works great in 2021 as it has Python 3.8, but I'm stuck with a TLSV1_ALERT_PROTOCOL_VERSION when using 2020.

     

    Do you think it will ever get updated or am I stuck with not providing support for my plugin in 2020?

     

    Thanks,

    Joe

  3. Hi,

     

    I'm using the dialog builder, and when it creates code for python, it always uses 'TRUE' instead of 'True'. The all caps is not python syntax and requires me to do a find and replace whenever I update my dialog. 

     

    Example: 

        vs.CreateGroupBox( dialog, kControl1, GetStr(kControl1), TRUE )
     

    Can you guys fix this please?

     

    Thanks,

    Joe

  4. Any idea how to implement the vs.NotifyPullDownClicked command? I tried adding a definition:

    def vs.NotifyPullDownClicked(dialog, kLocationChooser):

    do something

    and it doesn't work.

    I need to know when the user selects a pulldown menu. Ideas?

  5. How do you use multiple criteria in Python? When using the built in tool in the script manager, it makes it in vectorscript format. Currently I have:

    crit = "T=RECT"

    How would I also add "T=LINE"?

    Thanks,

    Joe

×
×
  • Create New...