Posts

Showing posts with the label Sandboxed

Accessing Web Services from Sandboxed Silverlight application in SharePoint 2010

Image
This post discuss about accessing public web services from sandboxed Silverlight application in SharePoint 2010. SharePoint 2010 introduced the concept of sandboxed solution where the application runs in separate process outside the w3p process where SharePoint is running. Sandboxed solutions having the restriction to make a call to external resources like database and web services. This restriction causing the SharePoint developers to access these resources from sandboxed applications. The solution is delivering a Silverlight application in sandbox environment which in turn calls the web service. Because Silverlight applications are running from the client machines even though they delivered from the sandbox solution. Once the application is available in client machine then they can call to the web services. This post shows calling the public web service and binding the results to SharePoint list. It also shows how to interact with SharePoint Client objects. we are using one of t...