Hi,
Scenario:
I created an XBAP application, set it to Full trust modeand then published it to get a .xbap file and a Application Files folder. I pasted these 2 in the same folder where a JSP page is located and added following line in JSP:
<table>
<tr>
<td>
<iframe src="sample.xbap?path=<%=path%>&" originalAttribute="src" originalPath=""sample.xbap?path=<%=path%>&"" width="680" height="570">
<p>Your browser does not support iframes.</p>
</iframe>
</td>
</tr>
</table>
But the problem with this approach is:
For the beginning few minutes XBAP is allowed to access certain resources like file system and httpWebRequest. But later on after few minutes, it is unable to access any of these. As a result, application won't work (being dependent on these resources for getting data).
A developer