I have a WCF over SSL service that works no problem. I am able to add a reference to this service to my Silverlight Project. Everything is hosted in IIS7. When My app runs I get the following error
An error occurred while trying to make a request to URI 'https://wikittybam/BurgerCounter.svc'. This could be due to attempting to access a service in a cross-domain way without a proper cross-domain policy in place, or a policy that is unsuitable for SOAP services. You may need to contact the owner of the service to publish a cross-domain policy file and to ensure it allows SOAP-related HTTP headers to be sent. This error may also be caused by using internal types in the web service proxy without using the InternalsVisibleToAttribute attribute. Please see the inner exception for more details.
Now I've been Googling for hours here and 1) Yes I have a clientaccesspolicy added in the correct place and it is setup properly. I have used Fiddler and verified that the policy is being pulled down. 2) I have tried using a crossdomain policy as well same result. 3) The WCF service itself it working, I can connect to it with the WCFTestClient and pull the data that I want.
Any suggestions at this point would be greatly appreciated. If you would like any other information please let me know.