up vote 2 down vote favorite
1
share [g+] share [fb]

I want to provide silverlight app to my customer while hosting the app at my own site for streamlined maintenance.

  • my Silverlight .xap is hosted in, let say, domain me-supplier.com
  • i want to embed it in, let say, domain my-customer.com

It works perfectly for http://my-customer.com, not for https://my-customer.com

  • i have added the (me-supplier.com hosted) cross domain silverlight policy file to allow my-customer.com
  • i have configured the mime types for .xap
  • the silverlight app needs html dom access so the iframe approach is not viable i believe.

this works for javascript code, so why not for silverlight ? any idea, workaround ?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

Is the silverlight app also on https? If not, you might be hitting a security wall which does not allow to intermix http and https application domains

link|improve this answer
Yes! it works, thank you so much so the SL2 RTW rule is: cross-domain is allowed but NOT (cross-domain+cross-scheme) - to work on my-customer.com, my customer MUST use me-supplier.com/app.xap - to work on my-customer.com, my customer MUST use me-supplier.com/app.xap – JazBee Oct 21 '08 at 15:07
feedback

I think the answers to this question may explain it.

Generally HTTPS doesn't like you drawing data between domains within a page because the certificate is tied to the current domain.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.