473,385 Members | 1,736 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

project location is not fully trusted by the .NET runtime

Hello all,

I'm working with the DotNetNuke project, and am getting the above error when
trying to open it in Visual Studio 2003. The Zip file was extracted to a
local hard drive - other than C: in a folder called E:/PortalClient. I have
the web site built, and it runs fine on the local host. The application in
IIS is called NFBCPortal. I've been trying to solve it for some time - here
is what I've done:

Changed the .sln file URL to http://localhost/NFBCPortal/DotNetNuke.vbproj

Changed the DotNetNuke.vbproj.webinfo like so:

<VisualStudioUNCWeb>
<Web URLPath = "http://localhost/NFBCPortal/DotNetNuke.vbproj" />
</VisualStudioUNCWeb>

Tried to give permission to the solution by going to Control Panel,
Administrative
Tools, Microsoft .NET Framework Configuration, open the MyComputer\Runtime
Security Policy\Machine\Code Groups\All_Code\LocalIntranet_Zone, right-click
New... and create a zone, give a name, select
URL type for the code group and type as URL, giving URL of
file://MyServer/NFBCPortal/*

also tried file://Mserver/NFBCPortal/E:/PortalClient/* as directed by a post
in this forum - turned out to be invalid.

Posted and searched the DNN forum - no help.

Started from scratch by right clicking on the DNN zip file, properties, and
clicking on Unblock. I then created another sub folder called Test in
PortalClient, made the URL changes in the two files, and opened the project
successfully in VS 2003 without getting the not trusted warning.

As I said before, The web site has been completed, and I really don't want
to start from scratch. Unblocking the zip file did the trick when starting
fresh with the test folder - there should be a way to give trust to the
location the project is in.

BTW, I'm using XP professional, SP2, VS2003 SQL server 2000. My project is
not in Visual Source Safe - this is not even installed.

Can anyone help me out?

Thanks
--
Brian Williams
Nov 19 '05 #1
3 3462
You can remove the problem by unblocking the individual files previously
extracted from the original zip file. If there are too many files to do
this via the UI, a programmatic approach is possible. See
http://www.jameskovacs.com/blog/Perm...8-5f9efe2a79c7
for a relevant utility with source code.
"BWilliams" <BW*******@discussions.microsoft.com> wrote in message
news:90**********************************@microsof t.com...
Hello all,

I'm working with the DotNetNuke project, and am getting the above error
when
trying to open it in Visual Studio 2003. The Zip file was extracted to a
local hard drive - other than C: in a folder called E:/PortalClient. I
have
the web site built, and it runs fine on the local host. The application
in
IIS is called NFBCPortal. I've been trying to solve it for some time -
here
is what I've done:

Changed the .sln file URL to http://localhost/NFBCPortal/DotNetNuke.vbproj

Changed the DotNetNuke.vbproj.webinfo like so:

<VisualStudioUNCWeb>
<Web URLPath = "http://localhost/NFBCPortal/DotNetNuke.vbproj" />
</VisualStudioUNCWeb>

Tried to give permission to the solution by going to Control Panel,
Administrative
Tools, Microsoft .NET Framework Configuration, open the MyComputer\Runtime
Security Policy\Machine\Code Groups\All_Code\LocalIntranet_Zone,
right-click
New... and create a zone, give a name, select
URL type for the code group and type as URL, giving URL of
file://MyServer/NFBCPortal/*

also tried file://Mserver/NFBCPortal/E:/PortalClient/* as directed by a
post
in this forum - turned out to be invalid.

Posted and searched the DNN forum - no help.

Started from scratch by right clicking on the DNN zip file, properties,
and
clicking on Unblock. I then created another sub folder called Test in
PortalClient, made the URL changes in the two files, and opened the
project
successfully in VS 2003 without getting the not trusted warning.

As I said before, The web site has been completed, and I really don't want
to start from scratch. Unblocking the zip file did the trick when
starting
fresh with the test folder - there should be a way to give trust to the
location the project is in.

BTW, I'm using XP professional, SP2, VS2003 SQL server 2000. My project
is
not in Visual Source Safe - this is not even installed.

Can anyone help me out?

Thanks
--
Brian Williams

Nov 19 '05 #2
This sounds like the answer to my problem! I'll let you know - thank you!
--
Brian Williams
"Nicole Calinoiu" wrote:
You can remove the problem by unblocking the individual files previously
extracted from the original zip file. If there are too many files to do
this via the UI, a programmatic approach is possible. See
http://www.jameskovacs.com/blog/Perm...8-5f9efe2a79c7
for a relevant utility with source code.
"BWilliams" <BW*******@discussions.microsoft.com> wrote in message
news:90**********************************@microsof t.com...
Hello all,

I'm working with the DotNetNuke project, and am getting the above error
when
trying to open it in Visual Studio 2003. The Zip file was extracted to a
local hard drive - other than C: in a folder called E:/PortalClient. I
have
the web site built, and it runs fine on the local host. The application
in
IIS is called NFBCPortal. I've been trying to solve it for some time -
here
is what I've done:

Changed the .sln file URL to http://localhost/NFBCPortal/DotNetNuke.vbproj

Changed the DotNetNuke.vbproj.webinfo like so:

<VisualStudioUNCWeb>
<Web URLPath = "http://localhost/NFBCPortal/DotNetNuke.vbproj" />
</VisualStudioUNCWeb>

Tried to give permission to the solution by going to Control Panel,
Administrative
Tools, Microsoft .NET Framework Configuration, open the MyComputer\Runtime
Security Policy\Machine\Code Groups\All_Code\LocalIntranet_Zone,
right-click
New... and create a zone, give a name, select
URL type for the code group and type as URL, giving URL of
file://MyServer/NFBCPortal/*

also tried file://Mserver/NFBCPortal/E:/PortalClient/* as directed by a
post
in this forum - turned out to be invalid.

Posted and searched the DNN forum - no help.

Started from scratch by right clicking on the DNN zip file, properties,
and
clicking on Unblock. I then created another sub folder called Test in
PortalClient, made the URL changes in the two files, and opened the
project
successfully in VS 2003 without getting the not trusted warning.

As I said before, The web site has been completed, and I really don't want
to start from scratch. Unblocking the zip file did the trick when
starting
fresh with the test folder - there should be a way to give trust to the
location the project is in.

BTW, I'm using XP professional, SP2, VS2003 SQL server 2000. My project
is
not in Visual Source Safe - this is not even installed.

Can anyone help me out?

Thanks
--
Brian Williams


Nov 19 '05 #3
That did the trick!
--
Brian Williams
"BWilliams" wrote:
This sounds like the answer to my problem! I'll let you know - thank you!
--
Brian Williams
"Nicole Calinoiu" wrote:
You can remove the problem by unblocking the individual files previously
extracted from the original zip file. If there are too many files to do
this via the UI, a programmatic approach is possible. See
http://www.jameskovacs.com/blog/Perm...8-5f9efe2a79c7
for a relevant utility with source code.
"BWilliams" <BW*******@discussions.microsoft.com> wrote in message
news:90**********************************@microsof t.com...
Hello all,

I'm working with the DotNetNuke project, and am getting the above error
when
trying to open it in Visual Studio 2003. The Zip file was extracted to a
local hard drive - other than C: in a folder called E:/PortalClient. I
have
the web site built, and it runs fine on the local host. The application
in
IIS is called NFBCPortal. I've been trying to solve it for some time -
here
is what I've done:

Changed the .sln file URL to http://localhost/NFBCPortal/DotNetNuke.vbproj

Changed the DotNetNuke.vbproj.webinfo like so:

<VisualStudioUNCWeb>
<Web URLPath = "http://localhost/NFBCPortal/DotNetNuke.vbproj" />
</VisualStudioUNCWeb>

Tried to give permission to the solution by going to Control Panel,
Administrative
Tools, Microsoft .NET Framework Configuration, open the MyComputer\Runtime
Security Policy\Machine\Code Groups\All_Code\LocalIntranet_Zone,
right-click
New... and create a zone, give a name, select
URL type for the code group and type as URL, giving URL of
file://MyServer/NFBCPortal/*

also tried file://Mserver/NFBCPortal/E:/PortalClient/* as directed by a
post
in this forum - turned out to be invalid.

Posted and searched the DNN forum - no help.

Started from scratch by right clicking on the DNN zip file, properties,
and
clicking on Unblock. I then created another sub folder called Test in
PortalClient, made the URL changes in the two files, and opened the
project
successfully in VS 2003 without getting the not trusted warning.

As I said before, The web site has been completed, and I really don't want
to start from scratch. Unblocking the zip file did the trick when
starting
fresh with the test folder - there should be a way to give trust to the
location the project is in.

BTW, I'm using XP professional, SP2, VS2003 SQL server 2000. My project
is
not in Visual Source Safe - this is not even installed.

Can anyone help me out?

Thanks
--
Brian Williams


Nov 19 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Chris Gilbert | last post by:
I spent nearly a day trying to fix this so this is a helper post as I'm sure this is a bug. I created a new solution containing two projects on a network share *before* I had set up full trust...
2
by: mkomasi | last post by:
Hi, I have a VS.Net project that works correctly. When I open it from remote, a message will be appeared "The project location is not fully trusted by the ..NET runtime. This is usually because...
0
by: Eric Mamet | last post by:
I am getting this message when trying to open a VB Web Service running on my local C Drive... It started happening when I copied all my VB Solution (including the Web Service Project) from My...
0
by: George Durzi | last post by:
I'm attempting to pull down a VS .NET solution from VSS onto a new PC. The solution contains a web application and several class library projects. I get the "Project location is not fully...
1
by: Neil Robbins | last post by:
I am getting the following message when attempting to open a solution from another computer on my network: "The project location is not fully trusted by the .NET runtime. This is usually because...
4
by: Quan | last post by:
I have a solution with several vb.net projects in it. I developed the code in one machine then copied all the files in the other machine to continue the development. The projects are on the local...
4
by: Hardik Shah | last post by:
Hi, I have a project, that requires to be developed through more than one computer. Is there any hints/articles for multiple user development. (The main PC for development is Win Server 2003,...
9
by: gzinger | last post by:
I have an assembly with some internal methods that I have to access from my web service. I learned that I can use “InternalsVisibleTo” to enable such access. Since I have control over both the...
2
by: JohnGoogle | last post by:
Hi, This is a novists question so please bear with me! I downloaded a test C# project from 'The Code Project' internet site. Unzipped the project to my local folder 'C:\Test'. When I open the...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.