Giter VIP home page Giter VIP logo

Comments (6)

ta77o avatar ta77o commented on May 23, 2024

hola como estas? tengo el mismo problema, lo pudiste resolver?
saludos.-

from pysimplesoap.

wenscl avatar wenscl commented on May 23, 2024

Hola!
Había probado las soluciones que encontré en internet y no me funcionó nada creo.. Terminé usando esta lib en su lugar.. https://docs.python-zeep.org/en/master/
Creo que con esa no tuve más el problema..

from pysimplesoap.

ta77o avatar ta77o commented on May 23, 2024

Hola! Había probado las soluciones que encontré en internet y no me funcionó nada creo.. Terminé usando esta lib en su lugar.. https://docs.python-zeep.org/en/master/ Creo que con esa no tuve más el problema..

Muchas gracias por la data!

from pysimplesoap.

wenscl avatar wenscl commented on May 23, 2024

Hola! Había probado las soluciones que encontré en internet y no me funcionó nada creo.. Terminé usando esta lib en su lugar.. https://docs.python-zeep.org/en/master/ Creo que con esa no tuve más el problema..

Muchas gracias por la data!

También había agregado esta línea, pero no estoy segura de qué tan bueno es.. Lo hice para probar que ande y no lo volví a tocar

import requests
requests.packages.urllib3.util.ssl_.DEFAULT_CIPHERS = 'ALL:@SECLEVEL=1'

from pysimplesoap.

intersoftsistemas avatar intersoftsistemas commented on May 23, 2024

Hola. También me encuentro con el mismo problema. Podrían por favor publicar alguna solución. Saludos. Gracias.

from pysimplesoap.

reingart avatar reingart commented on May 23, 2024

Please see reingart/pyafipws#95 for a workaround to downgrade to a compatible SSL context ciphers (as AFIP servers use less secure suite):

import httplib2

_build_ssl_context = httplib2._build_ssl_context

def _build_ssl_context_new(*args, **kwargs):
    context = _build_ssl_context(*args, **kwargs)
    # fix ssl.SSLError: [SSL: DH_KEY_TOO_SMALL] dh key too small
    # alternative: context.set_ciphers("DEFAULT@SECLEVEL=1")
    context.set_ciphers("AES128-SHA")
    return context

httplib2._build_ssl_context = _build_ssl_context_new

Also you could use another transport (for example pycurl), or change the openssl config (warning: system wide!):

sed -i 's/CipherString = DEFAULT@SECLEVEL=2/CipherString = DEFAULT@SECLEVEL=1/' /etc/ssl/openssl.cnf

To check server SSL issues and analyze compatible protocols details see: https://www.ssllabs.com/ssltest/analyze.html?d=servicios1.afip.gov.ar

References: https://bugs.python.org/issue46136

from pysimplesoap.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.