Which process retrieves the Slightlight xap file?
We're using silverlight on our SharePoint site. When someone navigates to the page containing the silverlight object, they are prompted for credentia开发者_Python百科ls. Other pages work fine.
I'm wondering if the client is trying to retrive the xap file (which is in a location the process hosting the web application has access to, but not the user).
Is the xap file retrieved by the IIS process or the client?
The Client retrieves the XAP. It is just like any other dependent item on the web page (image, css, js)
The web server (IIS in this case) retrieves the XAP file from disk and sends it to the client. The client retrieves the XAP file from the web server.
精彩评论