0

I use spyne for my SOAP project. It works perfectly. But if I want to receive big files I see this error from spyne:

internal error: Huge input lookup

This error comes from lxml library. To fix it I have to change huge_tree property in XmlDocument class constructor. But I can't understand how can I do it by spyne which uses that lxml library.

faoxis
  • 1,912
  • 5
  • 16
  • 31

1 Answers1

1

Pass huge_tree=True to the XmlDocument (or Soap11) constructor.

Burak Arslan
  • 7,671
  • 2
  • 15
  • 24