Why would a web part fail on constructor the first time it's being added to a page? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T22:04:55Zhttp://stackoverflow.com/feeds/question/656211http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/656211/why-would-a-web-part-fail-on-constructor-the-first-time-its-being-added-to-a-pag1Why would a web part fail on constructor the first time it's being added to a page?Ruslan2009-03-17T22:00:51Z2009-03-27T22:53:43Z
<p>Hello,</p>
<p>This question is a bit specific (MOSS2007) and I don't high hopes for getting an answer, but maybe luck will smile upon me.</p>
<p>I have a web part that works except <strong>the very first time</strong> it's being added to a page. It throws an exception inside a <strong>constructor</strong> when I'm trying to open a connection to a SQL server. The demand for the SqlClientPermission permission fails. When I say it works, I mean it is properly registered in any regard and works in every other case, including subsequent calls.</p>
<p>Someone said there is no way out. I'd like to know why. Is it by design?</p>
<p>I went so far as to give a full trust to everything I could (changed <strong>every</strong> .config file I could find on my server), but it did not help.</p>
<p>It appears that SharePoint is doing some kind of remoting the first time it adds a web part, which appears to run with minimal trust the first time it's constructed (same as defined in web_minimaltrust.config for ASP.Net). Attempts to grant permissions for everything in everything did not yield any fruitful results.</p>
<p>My solution was to move the data access code to the OnInit method, but that is irritating. Does anyone have any insight?</p>
<p>Thank you.</p>
<p>Some extra info from the debugger.</p>
<p>The only permitted permissions were:</p>
<pre><code><PermissionSet class="System.Security.PermissionSet" version="1">
<IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Execution"/>
<IPermission class="System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Level="Minimal"/>
</PermissionSet>
</code></pre>
<p>The inner exception stack:</p>
<pre>hresult = -2146233078
mscorlib
at System.Security.CodeAccessSecurityEngine.Check(Object demand, StackCrawlMark& stackMark, Boolean isPermSet)
at System.Security.PermissionSet.Demand()
at System.Data.Common.DbConnectionOptions.DemandPermission()
at System.Data.SqlClient.SqlConnection.PermissionDemand()
at System.Data.SqlClient.SqlConnectionFactory.PermissionDemand(DbConnection outerConnection)
at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)
at System.Data.SqlClient.SqlConnection.Open()
at System.Data.Linq.SqlClient.SqlConnectionManager.UseConnection(IConnectionUser user)
at System.Data.Linq.SqlClient.SqlProvider.get_IsSqlCe()
at System.Data.Linq.SqlClient.SqlProvider.InitializeProviderMode()
at System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
at System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
at System.Linq.Queryable.Count[TSource](IQueryable`1 source)
at IManageDocumentsPart.ClientSideDocumentsWebPart.GetOfficeCode(Int32 employeeId)
at IManageDocumentsPart.ClientSideDocumentsWebPart..ctor()
</pre>
<p>The full stack:</p>
<pre>IManageDocumentsPart.DLL!IManageDocumentsPart.ClientSideDocumentsWebPart.ClientSideDocumentsWebPart() Line 98 C#
[Native to Managed Transition]
[Managed to Native Transition]
mscorlib.dll!System.RuntimeType.CreateInstanceSlow(bool publicOnly, bool fillCache = true) + 0x68 bytes
mscorlib.dll!System.Activator.CreateInstance(System.Type type, bool nonPublic) + 0x43 bytes
System.Web.dll!System.Web.HttpRuntime.FastCreatePublicInstance(System.Type type) + 0x56 bytes
System.Web.dll!System.Web.UI.WebControls.WebParts.WebPartManagerInternals.CreateObjectFromType(System.Type type) + 0x7 bytes
System.Web.dll!System.Web.UI.WebControls.WebParts.WebPartManager.ImportWebPart(System.Xml.XmlReader reader = {EndElement, Name="metaData"}, out string errorMessage = null) + 0x35d bytes
Microsoft.SharePoint.dll!Microsoft.SharePoint.WebPartPages.SPWebPartManager.ImportWebPartBase(System.Xml.XmlReader reader = {EndElement, Name="metaData"}, string importErrorMessage = "Cannot import this Web Part.", out string errorMessage = null) + 0x25 bytes
Microsoft.SharePoint.dll!Microsoft.SharePoint.WebPartPages.WebPartImporter.CreateWebPart(bool clearConnections = true) + 0x1b4 bytes
Microsoft.SharePoint.dll!Microsoft.SharePoint.WebPartPages.WebPartImporter.Import(Microsoft.SharePoint.WebPartPages.SPWebPartManager manager = {Microsoft.SharePoint.WebPartPages.SPWebPartManager}, System.Xml.XmlReader reader = {None}, bool clearConnections = true, System.Uri webPartPageUri = {http://v-sp2007/testsite/default.aspx?PageView=Shared}, Microsoft.SharePoint.SPWeb spWeb = {Microsoft.SharePoint.SPWeb}) + 0x8e bytes
Microsoft.SharePoint.dll!Microsoft.SharePoint.WebPartPages.WebPartImporter.Import(Microsoft.SharePoint.WebPartPages.SPWebPartManager manager = {Microsoft.SharePoint.WebPartPages.SPWebPartManager}, System.Xml.XmlReader reader = {None}, bool clearConnections = true, Microsoft.SharePoint.SPWeb spWeb = {Microsoft.SharePoint.SPWeb}) + 0xa1 bytes
Microsoft.SharePoint.dll!Microsoft.SharePoint.WebPartPages.WebPartQuickAdd.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(string eventArgument = "http%253A%252F%252Fv%252Dsp2007%252F%255Fcatalogs%252Fwp%252FClientSideDocumentsWebPart%252Ewebpart;ClientSideDocumentsWebPart") + 0x288 bytes
System.Web.dll!System.Web.UI.Page.RaisePostBackEvent(System.Web.UI.IPostBackEventHandler sourceControl, string eventArgument) + 0xc bytes
System.Web.dll!System.Web.UI.Page.RaisePostBackEvent(System.Collections.Specialized.NameValueCollection postData) + 0xb2 bytes
</pre>
<p>...the rest of the stack is the same as when opening a page normally.</p>
http://stackoverflow.com/questions/656211/why-would-a-web-part-fail-on-constructor-the-first-time-its-being-added-to-a-pag/656899#6568991Answer by Kirk Liemohn for Why would a web part fail on constructor the first time it's being added to a page?Kirk Liemohn2009-03-18T03:41:13Z2009-03-18T03:41:13Z<p>That is odd. Maybe you could special case your web part to not do the database call when the page is in edit/design mode. Wouldn't that fix your problem?</p>
http://stackoverflow.com/questions/656211/why-would-a-web-part-fail-on-constructor-the-first-time-its-being-added-to-a-pag/659359#6593592Answer by Corey Roth for Why would a web part fail on constructor the first time it's being added to a page?Corey Roth2009-03-18T17:38:17Z2009-03-18T17:38:17Z<p>Try setting up a solution package to deploy code access security settings. You definitely need SqlClientPermission. Check out my post on <a href="http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2007/07/05/how-to-configure-code-access-security-for-a-web-part.aspx" rel="nofollow">Code Access Security for web parts</a> for more information.</p>
http://stackoverflow.com/questions/656211/why-would-a-web-part-fail-on-constructor-the-first-time-its-being-added-to-a-pag/660293#6602931Answer by Jason Weber for Why would a web part fail on constructor the first time it's being added to a page?Jason Weber2009-03-18T22:04:37Z2009-03-27T22:53:43Z<p>As a simple test, you could deploy the assemby containing the web part into the GAL. There it will run with Full Trust.</p>
<p>Personally, I would not recommend establishing a database connection in the constructor of a web part unless you had a compelling reason to do so.</p>
<p>[updated 3009-03-27]</p>
<p>Debugging is often about ruling out causes. Even though you believe the web part is running in Full Trust, I recommend testing the GAC'ed case. Remember to remove the .dll from the Bin directory for the test. This will only take 5-10 minutes and you'll <em>know</em> where you stand.</p>