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
Also hitting this issue. I have a web service I wish to use which requires calling a login service then passing the result of that to subsequent calls. Unfortunately after getting the cookie the above issue makes it impossible to call any of the authenticated services.
I'm a novice Python user so wouldn't really know where to begin on fixing it as a PR sorry. :/
Hi, friends!
Fix the problem from the title please. See this problem for suds
Here is my code for example:
Request parameters in ...\Python\Python38\Lib\site-packages\suds\transport\http.py
def open(self, request):
So header {"foo": "bar"} was lost.
For my exe-program I solved the problem by forcibly adding header in the same http.py:
headers ['foo'] = 'bar'
Thanks!
The text was updated successfully, but these errors were encountered: