You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the dowloader of the suds reader there is an issue where the documentReader opens a new url that is not cached. It tries to download the url data, however the open function of the documentStore resolves that url and returns content instead of the file-handle. This is a bytestream. this bytestream has no read function. therefore when fp is not empty it generates an exception.
The store.open() function can either return the bytestream (can be empty) or generate an exception. it has no option to return a file-handle. I am by far no expert on suds, can anyone verify this problem and help with a proper solution?
The text was updated successfully, but these errors were encountered:
in the dowloader of the suds reader there is an issue where the documentReader opens a new url that is not cached. It tries to download the url data, however the open function of the documentStore resolves that url and returns content instead of the file-handle. This is a bytestream. this bytestream has no read function. therefore when fp is not empty it generates an exception.
current code
working solution
The store.open() function can either return the bytestream (can be empty) or generate an exception. it has no option to return a file-handle. I am by far no expert on suds, can anyone verify this problem and help with a proper solution?
The text was updated successfully, but these errors were encountered: