Mina Wissa
Mina Wissa

Reputation: 10971

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 get the application to work.

is there is any workaround for this problem ?

thanks

Upvotes: 0

Views: 37

Answers (1)

Gabe
Gabe

Reputation: 86708

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.

Upvotes: 1

Related Questions