We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Well, no a real issue, but it took me some time to figure out how to use this library with a DENON streamer ...
In order to use this Library in python 3,
I have encoutered this issue:
non-comploant device
which I have rapidly corrected with a hack ...
I also had to replace in : upnpclient/soap.py
on line 99 "SOAPAction": '"%s#%s"' % (self.service_type, action_name) to : "SOAPAction": '"{}#{}"'.format(self.service_type, action_name)
"SOAPAction": '"%s#%s"' % (self.service_type, action_name)
"SOAPAction": '"{}#{}"'.format(self.service_type, action_name)
on line 101 "Content-Type": "text/xml", to : "Content-Type": "text/xml; charset=utf-8",
"Content-Type": "text/xml",
"Content-Type": "text/xml; charset=utf-8",
Now, it works fine ... maybe can it help someone ?...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Well, no a real issue, but it took me some time to figure out how to use this library with
a DENON streamer ...
In order to use this Library in python 3,
I have encoutered this issue:
non-comploant device
which I have rapidly corrected with a hack ...
I also had to replace in :
upnpclient/soap.py
on line 99
"SOAPAction": '"%s#%s"' % (self.service_type, action_name)
to :
"SOAPAction": '"{}#{}"'.format(self.service_type, action_name)
on line 101
"Content-Type": "text/xml",
to :
"Content-Type": "text/xml; charset=utf-8",
Now, it works fine ... maybe can it help someone ?...
The text was updated successfully, but these errors were encountered: