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
Hi,
I'm running into issues on device detection with Wemore running as a docker container in my Smarthome network with my Echo Dot 3rd Gen.
On device detection phase wemore is receiving the xml:
<?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><s:Body><u:GetBinaryState xmlns:u="urn:Belkin:service:basicevent:1"><BinaryState>1</BinaryState></u:GetBinaryState></s:Body></s:Envelope>
which fails on parsing (https://github.com/dhleong/wemore/blob/master/lib/emulate.js#L323) due to the missing space between envelope/" and s:encodingStyle
envelope/"
s:encodingStyle
Error: No whitespace between attributes Line: 0 Column: 102 Char: s
Any idea?
Echo Dot version: 3389730436
The text was updated successfully, but these errors were encountered:
Thanks for the report. This gives some context to the error described here.
It looks like the XML parser is barfing on that malformed data the Echo is sending, but I think we can just disable strict parsing.
Sorry, something went wrong.
8d04175
Just published 0.6.2; please give it a shot and let me know if it works. I tested it briefly but I'm not at home and don't have my normal setup here.
works 👍
dhleong
No branches or pull requests
Hi,
I'm running into issues on device detection with Wemore running as a docker container in my Smarthome network with my Echo Dot 3rd Gen.
On device detection phase wemore is receiving the xml:
which fails on parsing (https://github.com/dhleong/wemore/blob/master/lib/emulate.js#L323) due to the missing space between
envelope/"
ands:encodingStyle
Any idea?
Echo Dot version: 3389730436
The text was updated successfully, but these errors were encountered: