Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem during assembly! Need help!

Status
Not open for further replies.

atlan80

Programmer
Sep 11, 2003
3
MY
Hi anyone out there,

I really need your help!.... my project dead line almost end but i still could not link the knowledgewright (amzinet.dll)... i already follow the instructions given on the amzi website ( ) however the problem still occur. i already try lots of method including trying on the 1.0 framework platform instead of 1.1, but still the same,

the error message:

Server Error in '/KW' Application.
--------------------------------------------------------------------------------

Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: File or assembly name amzinet, or one of its dependencies, was not found.

Source Error:


Line 196: <add assembly=&quot;System.EnterpriseServices, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&quot;/>
Line 197: <add assembly=&quot;System.Web.Mobile, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a&quot;/>
Line 198: <add assembly=&quot;*&quot;/>
Line 199: </assemblies>
Line 200: </compilation>


Source File: d:\windows\microsoft.net\framework\v1.1.4322\Config\machine.config Line: 198

Assembly Load Trace: The following information can be helpful to determine why the assembly 'amzinet' could not be loaded.


=== Pre-bind state information ===
LOG: DisplayName = amzinet
(Partial)
LOG: Appbase = file:///D:/Inetpub/LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===

LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: Post-policy reference: amzinet
LOG: Attempting download of new URL file:///D:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/kw/4d3b9692/c2542a6b/amzinet.DLL.
LOG: Attempting download of new URL file:///D:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/kw/4d3b9692/c2542a6b/amzinet/amzinet.DLL.
LOG: Attempting download of new URL file:///D:/Inetpub/LOG: Publisher policy file is not found.
LOG: No redirect found in host configuration file (D:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet.config).
LOG: Using machine configuration file from D:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\config\machine.config.
LOG: Post-policy reference: amzinet, Version=1.0.1078.19925, Culture=neutral, PublicKeyToken=582edad4d3e541a

I'm also new to the assembly part...so really need help here!

thanks
 
Have you set the reference to the object (Project Explorer > References)? If not, that would generate the above error.

-----------------------------------------------
&quot;The night sky over the planet Krikkit is the least interesting sight in the entire universe.&quot;
-Hitch Hiker's Guide To The Galaxy
 
Thank you AtomicChip, However can you explain more detail about the &quot;reference to the object (Project Explorer > References)?&quot; because i'm quite new to ASP.net. and really appreciate your help...

Thanks
 
Sorry for the delayed response. If you are using Visual Studio, the Project Explorer (sorry *Solution Explorer*) is in the top right hand pane of the IDE (unless, of course you stuck it somewhere else). It's the window that shows all of the files associated with your project. At the top of that window, look for &quot;References&quot;. Right-click it and select &quot;Add Reference&quot;. In the modal window, look for the refence needed. If it is not a part of the GAC (Global Assembly Cache), then you will need to browse to the location of the .dll (in this case, I'm assuming it would be something like amzinet.dll). Once the reference has been set, you should not run into that problem anymore.

If, however, you are doing manual compiles of your projects, I believe that you would put the .dll reference in the /r switch.

Hope that helps =D

-----------------------------------------------
&quot;The night sky over the planet Krikkit is the least interesting sight in the entire universe.&quot;
-Hitch Hiker's Guide To The Galaxy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top