locoboy
locoboy

Reputation: 38960

making web requests in silverlight?

Does anyone know how to make a web request to a service using silverlight?

Upvotes: 0

Views: 52

Answers (1)

James Manning
James Manning

Reputation: 13589

same host as where the silverlight app came from? that's a normal WCF kind of call:

http://msdn.microsoft.com/en-us/magazine/cc794260.aspx

If it's on another domain, you've got to allow it:

http://blogs.msdn.com/b/carlosfigueira/archive/2008/03/07/enabling-cross-domain-calls-for-silverlight-apps-on-self-hosted-web-services.aspx

Upvotes: 0

Related Questions