Hi,
I read [](https://gluu.org/docs/ce/3.1.4/authn-guide/customauthn/) this document and wrote a script but script includes zeep library and it calls lxml library for TSL connection. lxml library uses c-based api for etree(Element Tree) and jython doesn't support that.
Error code is :
**from lxml import etree
ImportError: cannot import name etree**
etree is created as c language-based api and jython can't run the code because of this. Is there any idea to solve this problem? Thanks.