|
BOOK: ASP.NET Website Programming Problem-Design-Solution | This is the forum to discuss the Wrox book ASP.NET Website Programming: Problem - Design - Solution, Visual Basic .NET Edition by Marco Bellinaso, Kevin Hoffman; ISBN: 9780764543869 |
|
Welcome to the p2p.wrox.com Forums.
You are currently viewing the BOOK: ASP.NET Website Programming Problem-Design-Solution section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
|
|
|
|
June 28th, 2003, 12:46 AM
|
Registered User
|
|
Join Date: Jun 2003
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
File or assemly name not found
I'm getting an error when running ThePhile on my local XP machine. The file comes from the Poll classes:
File or assembly name xrtceeqh.dll, or one of its dependencies, was not found.
If I hit refresh, the dll name changes each time. I built the solution with VS.net before running it. Anyone know what I'm doing wrong?
|
July 11th, 2003, 04:27 AM
|
Registered User
|
|
Join Date: Jul 2003
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Hi,
I'm having exactly the same problem! Did you manage to figure out what was going on?
|
July 11th, 2003, 01:13 PM
|
Registered User
|
|
Join Date: Jul 2003
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I am also having the same problem. I am running .net 1.1 on XP Pro.
|
July 11th, 2003, 05:13 PM
|
Registered User
|
|
Join Date: Jul 2003
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Guys, you're gonna love me...I've found the fix. What you need to do is find the machine.config file - do a search in your Windows directory. Look for the line which starts:
<processModel enable="true" timeout="Infinite" idleTimeout="Infinite"...
Find the username="machine" attribute and change it to username="SYSTEM". This forces the ASP.NET process to use the system account with higher security settings. You may have to review this, but it's certainly the quickest way to get it done. (Cue maniacal laughter...ha ha ha ha - and soon I will take over the .NET programming world.)
Oh, and don't forget to reboot your machine.
Enjoy :D
|
July 20th, 2003, 07:29 PM
|
Registered User
|
|
Join Date: Jul 2003
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Hey PaulVipond, I'm sorry to burst your bubble, but to "take over the .NET programming world" you need a little bit more than "finding" a fix that's spelled out in detail in the index.htm file that comes with the code download:
...
7. Open Machine.Config (by default in C:\WINNT\Microsoft.NET\Framework\v1.0.3705\CONFIG) in a text editor, find the <processModel> section, and set the userName attribute to "SYSTEM". This is required to enable event logging in ASP.NET Applications -- which we use in our custom error handling.
8. Reboot the computer. This will enable the change to Machine.Config to take effect
...
Better luck next time....
|
August 20th, 2004, 10:13 AM
|
Registered User
|
|
Join Date: Aug 2004
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
You can also check the App Pool in iis6 to make sure it uses the local system as well!
|
August 20th, 2004, 03:26 PM
|
Friend of Wrox
|
|
Join Date: Jun 2003
Posts: 917
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I hope you don't plan on deploying your applications this way. This is a huge security risk, as I recently explained in another posting here.
Hmmm...let me give admin privs to every person who visits my site. Why not?
Eric
|
|
|