|
Rank: Newbie Groups: Member
Joined: 7/11/2007 Posts: 8
|
I just got new updates from Microsoft an now none of my menus work and they were just working this morning now I get this error Your application is running under partial trust. EO.Web supports prtial trust, but a few modifications to your web.config are required. Please refer to http://www.essentialobjects.com/Go.aspx?id=1001 for more details.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
The new update that Microsoft rolled out yesterday seem to have had an impact on the trust levels. The error message that you see has already pointed you to the solution. Please see the help topic you posted for detailed instructions.
The online documentation is always for the current build, so if you have an older version, make sure you upgrade to the current build first. If you do not wish to upgrade, you can try to find the corresponding topic in your local help file, whose content should match your local version.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi All, If you use version 2.x (Released under "AspxLab"), please follow instruction on this page to solve this problem: http://www.aspxlab.com/doc/deploy.html#configAdd the httpModules in your web.config file should solve the problem. Thanks
|
|
Rank: Newbie Groups: Member
Joined: 7/12/2007 Posts: 2
|
Removing KB928365 also worked for me. Appreciate the help. Spent 2 hours on the phone with MS last night. Will report the change in security policy to them as well. They wanted an update on the situation.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi Brooke,
Thanks the update. Please use the solution we posted above to solve the problem and do not remove MS's security update. We looked further into it and it appears that the security policy is has not been changed. However MS has changed some implementation that our product relies on which caused the error message. Fortunately we had a fallback solution in place. We apologize for the inconvenience.
Thanks
|
|
Rank: Newbie Groups: Member
Joined: 7/12/2007 Posts: 2
|
Yes thanks EO support. Did just that. Added the KB928365 update back in and modified my web.config with
<httpModules> <add name="AspxLabRuntime" type="AspxLab.WebControls.Runtime,AspxLab.WebControls"/> </httpModules>
as instructed and all is fine.
|
|
Rank: Member Groups: Member
Joined: 7/12/2007 Posts: 16
|
Hi all,
I had the same problem today (caused by mictosoft updates) and simply with the following addition :
File Web.config ... <system.web> ... <httpModules> <add name="AspxLabRuntime" type="AspxLab.WebControls.Runtime,AspxLab.WebControls"/> </httpModules> ...
everythink working smouthly ...
Many thanks !!!
|
|
Rank: Newbie Groups: Member
Joined: 7/13/2007 Posts: 1
|
Just a quick update, for EO 3.0 I added the following to make it work:
<httpModules> <add name="EO" type="EO.Web.Runtime,EO.Web"/> </httpModules>
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Dan wrote:Just a quick update, for EO 3.0 I added the following to make it work:
<httpModules> <add name="EO" type="EO.Web.Runtime,EO.Web"/> </httpModules> Thanks for sharing!
|
|