NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
rdabbah00
May 05, 2020Aspirant
ORBI APP
Hi my app do no show my conected devices , i unistall it and intall again and doesnt work i need to acces my orbi using my computer
FURRYe38
May 06, 2020Guru
:smileytongue:
Awesome.
You might pass this on to a forum moderator. Blanca_O and Christian_R. Hopefully they can pass this on to NG engineering.
tantrum
May 08, 2020Apprentice
I similarly lost all devices from the (iOS) app a couple of days ago.
Noticed they would still show up in the web interface on a computer.
Turns out the web interface makes / receives JSON calls, and the app makes/receives SOAP calls with an XML payload.
My AVR is a Denon and when I switched it on, the device manufacturer name was automatically read in as "D&M Holdings" and a bare "&" character (not escaped as an XML entity like "&") is disallowed and breaks the parsing of the response.
I changed the manufacturer name and applied it in the web app, and now the iOS app can show them all again fine.
In case it helps anyone seeing the same behavior, thought you may want to check into it.
To troubleshoot/debug, if you need to, use a computer with Fiddler (by Telerik) running on it, tell it to run in proxy mode over its normal port of 8888, then set the wifi properties in your iOS device to a manual proxy and give it the IP and 8888 port of the computer.
Fiddler on the computer will now capture the request/responses sent by the phone (the app sends in plain http to the local routers so don't have to worry about https certs) and you can inspect them. If you use its XML view of the inspector tab, it will even tell you which line the parsing breaks at, or you can copy/paste the response to something like Notepad++ which can also parse the XML and tell you what is bad.
- FURRYe38May 08, 2020Guru
Please post about this in the Orbi app forum:
https://community.netgear.com/t5/Orbi-App/bd-p/en-home-orbi-app
Good Luck.
tantrum wrote:I similarly lost all devices from the (iOS) app a couple of days ago.
Noticed they would still show up in the web interface on a computer.
Turns out the web interface makes / receives JSON calls, and the app makes/receives SOAP calls with an XML payload.
My AVR is a Denon and when I switched it on, the device manufacturer name was automatically read in as "D&M Holdings" and a bare "&" character (not escaped as an XML entity like "&") is disallowed and breaks the parsing of the response.
I changed the manufacturer name and applied it in the web app, and now the iOS app can show them all again fine.
In case it helps anyone seeing the same behavior, thought you may want to check into it.
To troubleshoot/debug, if you need to, use a computer with Fiddler (by Telerik) running on it, tell it to run in proxy mode over its normal port of 8888, then set the wifi properties in your iOS device to a manual proxy and give it the IP and 8888 port of the computer.
Fiddler on the computer will now capture the request/responses sent by the phone (the app sends in plain http to the local routers so don't have to worry about https certs) and you can inspect them. If you use its XML view of the inspector tab, it will even tell you which line the parsing breaks at, or you can copy/paste the response to something like Notepad++ which can also parse the XML and tell you what is bad.