Samsung orsay/legacy tv remote web inspector on Windows 10
I'm trying to use the Remote Web Inspector for Samsung Orsay (Legacy) TV for the 2012/2013/2014 years on Windows 10.
I'm trying to follow the official Guide (https://developer.samsung.com/tv/develop/legacy-platform-library/d44/index) and I've installed the Samsung SDK 5.1 for Win 64 bit, but the images/steps shown are completely different from the "real" SDK.
Can someone explane me how to make it work?
Thanks
remote-debugging samsung-smart-tv web-inspector inspector
add a comment |
I'm trying to use the Remote Web Inspector for Samsung Orsay (Legacy) TV for the 2012/2013/2014 years on Windows 10.
I'm trying to follow the official Guide (https://developer.samsung.com/tv/develop/legacy-platform-library/d44/index) and I've installed the Samsung SDK 5.1 for Win 64 bit, but the images/steps shown are completely different from the "real" SDK.
Can someone explane me how to make it work?
Thanks
remote-debugging samsung-smart-tv web-inspector inspector
add a comment |
I'm trying to use the Remote Web Inspector for Samsung Orsay (Legacy) TV for the 2012/2013/2014 years on Windows 10.
I'm trying to follow the official Guide (https://developer.samsung.com/tv/develop/legacy-platform-library/d44/index) and I've installed the Samsung SDK 5.1 for Win 64 bit, but the images/steps shown are completely different from the "real" SDK.
Can someone explane me how to make it work?
Thanks
remote-debugging samsung-smart-tv web-inspector inspector
I'm trying to use the Remote Web Inspector for Samsung Orsay (Legacy) TV for the 2012/2013/2014 years on Windows 10.
I'm trying to follow the official Guide (https://developer.samsung.com/tv/develop/legacy-platform-library/d44/index) and I've installed the Samsung SDK 5.1 for Win 64 bit, but the images/steps shown are completely different from the "real" SDK.
Can someone explane me how to make it work?
Thanks
remote-debugging samsung-smart-tv web-inspector inspector
remote-debugging samsung-smart-tv web-inspector inspector
asked Nov 15 '18 at 11:33
FabioFabio
85
85
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
So forgive me if i'm incorrect:
- The legacy and the new IDE is still eclipse
- Samsung made plugins for the IDE
- For newer platform's these plugins will use SDB to connect to the device, install apps and etc...
- SDB is almost ADB (Android Debug Bridge)
- Therefor you can launch and app with arguments passed down to have the inspector
For older platforms these are a little bit different, they used to have a Smart Hub feature "User Sync".
The documentation says in order to use RWI you need to Sync the app from the same IP and access the RWI web GUI from that IP.
Therefore:
- Host an simple web server on port 80
- The root should contain: widgetlist.xml (localhost/widgetlist.xml)
the xml should be like:
yourappname
http://yournetworkipOrdomain/widgets/yourappname.zip
and ofc the zip should be downloadable
- Then open the developer setting on the device, change the Server ip to your IP
- Select User Sync or App sync (may vary)
- App will install
- Launch the app
- Open your browser and access the RWI: http://tvip:7011
Enjoy :)
2
Please include the relevant reference in your answer, as the links may go stale in the future.
– Dragonthoughts
Nov 19 '18 at 15:13
Hello David, thanks for your response. I've already installed dev apps on Samsung Orsay 2012/2013/2014 (aka Samsung Legacy TV), but when I open tvip:7011 nothing is displayed. So, my answer is: is it necessary to do some particular action in order to enable the RWI on the TV? I've got actually a 2013 and 2014 TV, but I can only install dev apps without debugging (and sometimes it is really difficult to understand why a bug occurs).
– Fabio
Nov 20 '18 at 9:40
I tried this but accessing the RWI: tvip:7011 shows "refused to connect.". I am on the same network as my device. and completed all steps. but still.
– Abhishek
Mar 11 at 12:53
Any help on this please ?
– Abhishek
Mar 11 at 12:53
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53318552%2fsamsung-orsay-legacy-tv-remote-web-inspector-on-windows-10%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
So forgive me if i'm incorrect:
- The legacy and the new IDE is still eclipse
- Samsung made plugins for the IDE
- For newer platform's these plugins will use SDB to connect to the device, install apps and etc...
- SDB is almost ADB (Android Debug Bridge)
- Therefor you can launch and app with arguments passed down to have the inspector
For older platforms these are a little bit different, they used to have a Smart Hub feature "User Sync".
The documentation says in order to use RWI you need to Sync the app from the same IP and access the RWI web GUI from that IP.
Therefore:
- Host an simple web server on port 80
- The root should contain: widgetlist.xml (localhost/widgetlist.xml)
the xml should be like:
yourappname
http://yournetworkipOrdomain/widgets/yourappname.zip
and ofc the zip should be downloadable
- Then open the developer setting on the device, change the Server ip to your IP
- Select User Sync or App sync (may vary)
- App will install
- Launch the app
- Open your browser and access the RWI: http://tvip:7011
Enjoy :)
2
Please include the relevant reference in your answer, as the links may go stale in the future.
– Dragonthoughts
Nov 19 '18 at 15:13
Hello David, thanks for your response. I've already installed dev apps on Samsung Orsay 2012/2013/2014 (aka Samsung Legacy TV), but when I open tvip:7011 nothing is displayed. So, my answer is: is it necessary to do some particular action in order to enable the RWI on the TV? I've got actually a 2013 and 2014 TV, but I can only install dev apps without debugging (and sometimes it is really difficult to understand why a bug occurs).
– Fabio
Nov 20 '18 at 9:40
I tried this but accessing the RWI: tvip:7011 shows "refused to connect.". I am on the same network as my device. and completed all steps. but still.
– Abhishek
Mar 11 at 12:53
Any help on this please ?
– Abhishek
Mar 11 at 12:53
add a comment |
So forgive me if i'm incorrect:
- The legacy and the new IDE is still eclipse
- Samsung made plugins for the IDE
- For newer platform's these plugins will use SDB to connect to the device, install apps and etc...
- SDB is almost ADB (Android Debug Bridge)
- Therefor you can launch and app with arguments passed down to have the inspector
For older platforms these are a little bit different, they used to have a Smart Hub feature "User Sync".
The documentation says in order to use RWI you need to Sync the app from the same IP and access the RWI web GUI from that IP.
Therefore:
- Host an simple web server on port 80
- The root should contain: widgetlist.xml (localhost/widgetlist.xml)
the xml should be like:
yourappname
http://yournetworkipOrdomain/widgets/yourappname.zip
and ofc the zip should be downloadable
- Then open the developer setting on the device, change the Server ip to your IP
- Select User Sync or App sync (may vary)
- App will install
- Launch the app
- Open your browser and access the RWI: http://tvip:7011
Enjoy :)
2
Please include the relevant reference in your answer, as the links may go stale in the future.
– Dragonthoughts
Nov 19 '18 at 15:13
Hello David, thanks for your response. I've already installed dev apps on Samsung Orsay 2012/2013/2014 (aka Samsung Legacy TV), but when I open tvip:7011 nothing is displayed. So, my answer is: is it necessary to do some particular action in order to enable the RWI on the TV? I've got actually a 2013 and 2014 TV, but I can only install dev apps without debugging (and sometimes it is really difficult to understand why a bug occurs).
– Fabio
Nov 20 '18 at 9:40
I tried this but accessing the RWI: tvip:7011 shows "refused to connect.". I am on the same network as my device. and completed all steps. but still.
– Abhishek
Mar 11 at 12:53
Any help on this please ?
– Abhishek
Mar 11 at 12:53
add a comment |
So forgive me if i'm incorrect:
- The legacy and the new IDE is still eclipse
- Samsung made plugins for the IDE
- For newer platform's these plugins will use SDB to connect to the device, install apps and etc...
- SDB is almost ADB (Android Debug Bridge)
- Therefor you can launch and app with arguments passed down to have the inspector
For older platforms these are a little bit different, they used to have a Smart Hub feature "User Sync".
The documentation says in order to use RWI you need to Sync the app from the same IP and access the RWI web GUI from that IP.
Therefore:
- Host an simple web server on port 80
- The root should contain: widgetlist.xml (localhost/widgetlist.xml)
the xml should be like:
yourappname
http://yournetworkipOrdomain/widgets/yourappname.zip
and ofc the zip should be downloadable
- Then open the developer setting on the device, change the Server ip to your IP
- Select User Sync or App sync (may vary)
- App will install
- Launch the app
- Open your browser and access the RWI: http://tvip:7011
Enjoy :)
So forgive me if i'm incorrect:
- The legacy and the new IDE is still eclipse
- Samsung made plugins for the IDE
- For newer platform's these plugins will use SDB to connect to the device, install apps and etc...
- SDB is almost ADB (Android Debug Bridge)
- Therefor you can launch and app with arguments passed down to have the inspector
For older platforms these are a little bit different, they used to have a Smart Hub feature "User Sync".
The documentation says in order to use RWI you need to Sync the app from the same IP and access the RWI web GUI from that IP.
Therefore:
- Host an simple web server on port 80
- The root should contain: widgetlist.xml (localhost/widgetlist.xml)
the xml should be like:
yourappname
http://yournetworkipOrdomain/widgets/yourappname.zip
and ofc the zip should be downloadable
- Then open the developer setting on the device, change the Server ip to your IP
- Select User Sync or App sync (may vary)
- App will install
- Launch the app
- Open your browser and access the RWI: http://tvip:7011
Enjoy :)
answered Nov 19 '18 at 14:51
daviddavid
111
111
2
Please include the relevant reference in your answer, as the links may go stale in the future.
– Dragonthoughts
Nov 19 '18 at 15:13
Hello David, thanks for your response. I've already installed dev apps on Samsung Orsay 2012/2013/2014 (aka Samsung Legacy TV), but when I open tvip:7011 nothing is displayed. So, my answer is: is it necessary to do some particular action in order to enable the RWI on the TV? I've got actually a 2013 and 2014 TV, but I can only install dev apps without debugging (and sometimes it is really difficult to understand why a bug occurs).
– Fabio
Nov 20 '18 at 9:40
I tried this but accessing the RWI: tvip:7011 shows "refused to connect.". I am on the same network as my device. and completed all steps. but still.
– Abhishek
Mar 11 at 12:53
Any help on this please ?
– Abhishek
Mar 11 at 12:53
add a comment |
2
Please include the relevant reference in your answer, as the links may go stale in the future.
– Dragonthoughts
Nov 19 '18 at 15:13
Hello David, thanks for your response. I've already installed dev apps on Samsung Orsay 2012/2013/2014 (aka Samsung Legacy TV), but when I open tvip:7011 nothing is displayed. So, my answer is: is it necessary to do some particular action in order to enable the RWI on the TV? I've got actually a 2013 and 2014 TV, but I can only install dev apps without debugging (and sometimes it is really difficult to understand why a bug occurs).
– Fabio
Nov 20 '18 at 9:40
I tried this but accessing the RWI: tvip:7011 shows "refused to connect.". I am on the same network as my device. and completed all steps. but still.
– Abhishek
Mar 11 at 12:53
Any help on this please ?
– Abhishek
Mar 11 at 12:53
2
2
Please include the relevant reference in your answer, as the links may go stale in the future.
– Dragonthoughts
Nov 19 '18 at 15:13
Please include the relevant reference in your answer, as the links may go stale in the future.
– Dragonthoughts
Nov 19 '18 at 15:13
Hello David, thanks for your response. I've already installed dev apps on Samsung Orsay 2012/2013/2014 (aka Samsung Legacy TV), but when I open tvip:7011 nothing is displayed. So, my answer is: is it necessary to do some particular action in order to enable the RWI on the TV? I've got actually a 2013 and 2014 TV, but I can only install dev apps without debugging (and sometimes it is really difficult to understand why a bug occurs).
– Fabio
Nov 20 '18 at 9:40
Hello David, thanks for your response. I've already installed dev apps on Samsung Orsay 2012/2013/2014 (aka Samsung Legacy TV), but when I open tvip:7011 nothing is displayed. So, my answer is: is it necessary to do some particular action in order to enable the RWI on the TV? I've got actually a 2013 and 2014 TV, but I can only install dev apps without debugging (and sometimes it is really difficult to understand why a bug occurs).
– Fabio
Nov 20 '18 at 9:40
I tried this but accessing the RWI: tvip:7011 shows "refused to connect.". I am on the same network as my device. and completed all steps. but still.
– Abhishek
Mar 11 at 12:53
I tried this but accessing the RWI: tvip:7011 shows "refused to connect.". I am on the same network as my device. and completed all steps. but still.
– Abhishek
Mar 11 at 12:53
Any help on this please ?
– Abhishek
Mar 11 at 12:53
Any help on this please ?
– Abhishek
Mar 11 at 12:53
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53318552%2fsamsung-orsay-legacy-tv-remote-web-inspector-on-windows-10%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown