Silverlight: Workaround for absence of clientaceesspolicy.xml file
I have a silverlight 3 application that is required to call a web service to display some data.
the web service is hosted on a remote machine.
unfortunatley the web service does not have
clinetaccesspolicy.xml
file that allows silverlight applications to call the service, so I can't g开发者_高级运维et the application to work.
is there is any workaround for this problem ?
thanks
What you can do is create a proxy web service that runs on the server hosting the Silverlight app. The Silverlight app hits the proxy service that in turn accesses the real web service and returns the results to the client.
精彩评论