I use RESTful service on Tizen emulator , this service works on android simulator but dose not work on Tizen emulator , How Can I test RESTful service on emulator in general? What are the possible issues for this problem ? I use visual studio 2017 Thanks
As you are using Visual Studio for Tizen Development, i am assuming that you are developing Tizen.NET app.
You have go give internet privilege to allow the app to consume a web service. Add the privilege from tizen-manifest.xml
Privileges section.
<manifest>
.....
.....
<privileges>
<privilege>http://tizen.org/privilege/internet</privilege>
</privileges>
</manifest>