i have a silverlight(.xap) in my web server and want to embed any page no matter it comes from,
for xap file url safety ,i wrote a class "XapHandler" and setting <httphandlers> in web.config file as below
<add verb="*" path="*.mykey" type="XapHandler"/>
i've set configure ".mykey" in iis and set source tag in embed page as below
<object data="data:application/x-silverlight," type="application/x-silverlight-2-b1">
<param name="source" value="XXX.mykey"/>
<param name="EnableHtmlAccess" value="true" />
it works actually, but when i modify the source tag as below
<param name="source" value="http://www.aaa.bbb/XXX.mykey"/>
it can't find the xap file ,
so i want to know does any setting i miss or there's another way to hide xap file url ?
Thanks!!