RE: [OzSilverlight] How to deploy SL App

2008-10-22 Thread Jordan Knight
Hey Muhammad, SL doesn't actually require anything special on the system to be deployed. It will even work when embedded in a HTML file : ) But... The SL sever controls require that .NET 3.5 is installed on the server. The site should be packaged with the System.Web.Silverlight.dll so your

RE: [OzSilverlight] How to deploy SL App

2008-10-22 Thread Tim Heuer
Muhammed, At first guess, my thought is that your app and web service are probably not in the same domain? If not, you're running into a cross-domain situation where your service will have to opt-in for x-domain callers. This video: http://silverlight.net/learn/learnvideo.aspx?video=47174

RE: [OzSilverlight] How to deploy SL App

2008-10-22 Thread Jonathan Parker
You may need a custom host factory for your web service (if you are using WCF): class CustomHostFactory : ServiceHostFactory { protected override ServiceHost CreateServiceHost(Type serviceType, Uri[] baseAddresses) { CustomHost customServiceHost = new