Silverlight Integration with PHP

I have a PHP website that I want to integrate with silverlight to provide a rich experience. How can i do this? Do I need to host a website in IIS if we want to integrate Silverlight. Do you have any way to do this?

+3
source share
2 answers

If by integration you want to get data accessible through PHP, then you can use PHP to output the XML that Silverlight can read. You can also use JSON if Silverlight supports it (or if there is a parser).

+1
source

Silverlight works great on the PHP website. Steps:

  • .xap Silverlight .
  • ( Silverlight.js) Silverlight

:

<object width="200" height="200"
    data="data:application/x-silverlight-2," 
    type="application/x-silverlight-2" >
    <param name="source" value="YourApp.xap"/>
</object>
+1

Source: https://habr.com/ru/post/1710542/


All Articles