Wrox Programmer Forums
|
BOOK: Professional C# 2008 ISBN: 978-0-470-19137-8
This is the forum to discuss the Wrox book Professional C# 2008 by Christian Nagel, Bill Evjen, Jay Glynn, Morgan Skinner, Karli Watson; ISBN: 9780470191378
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Professional C# 2008 ISBN: 978-0-470-19137-8 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
 
Old May 11th, 2011, 11:25 AM
Registered User
 
Join Date: Apr 2004
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default CH 17 - Assemblies

Hi,

I'm just learning C# --

I'm studying : chapter 17 - Assemblies -- "Configuring .NET Applications"

Here is my : "Client.exe.config" file

Code:
<?xmlversion="1.0"?>
<configuration>
<runtime>
<assemblyBindingxmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<codeBaseversion="1.1.1.1"href="http://localhost/fff/" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentityname="SharedDemo"publicKeyToken="1e7437a336992c02" />
<publisherPolicyapply="yes" />
<bindingRedirectoldVersion="1.1.1.1"newVersion="1.1.1.1" />
<codeBaseversion="1.1.1.1"href="http://192.168.1.210/fff/SharedDemo.dll" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
I want to get : the : SharedDemo.dll :

from my local web : http://192.168.1.210/fff/SharedDemo.dll

with this "codebase" element

<codeBaseversion="1.1.1.1"href="http://192.168.1.210/fff/SharedDemo.dll" />

When I run "Client.exe" , always error : FileNotFoundException, can't load module...., something like that .

My question is :

How must be make "the web" , so that the component is found ??


Thanks a lot in advance

E.
 
Old May 17th, 2011, 09:20 PM
Registered User
 
Join Date: Apr 2004
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default I will reply myself

I had problems undersanting the last two sections : "Configuring .NET applications" and "Versioning" .

Using the samples : "SharedDemo" and "Client", produce many errors: "file not found", "bad image file", etc, etc

Problem 1: "SharedDemo" access to file : "Quotes.txt" : that produce error: "file not found"\
This must be resolved getting appropiate permissions.

Problem 2: using key file ".pfx" produces error :
ALINK: error AL1019: Metadata failure while creating assembly -- Bad Version of provider

Surfing webs : I found this, from MIcrosoft:
http://connect.microsoft.com/VisualStudio/feedback/details/536016/assembly-linker-does-not-support-pfx-cryptographic-keys-al1019
Assembly Linker does not support PFX Cryptographic Keys - AL1019 -- date: 2/24/2010

so: with : "AL.exe" : must be used a : ".snk" file , not a ".pfx" file !!

Finally, thinking that : it's better to resolve and understand : "one problem at a time" :
I simplify creating :

1. a project : "myDLL" : that just return a string, and
2. a project : "myDLLtest" : that consumes it
3. an : "aplication configuration file" : "myDLLtest.exe.config"
4. a : "publisher policy assembly file"

I run : "myDLLtest.exe", using different combinations of : assemblies and "configuration files"

Then : all began to work and be understood

And now I know : --How to use element : "<codebase>"--

1. It can be used in : "application configuration files"
2. It can be used in : "publisher policy files" :
creating : the "publisher policy assembly file" : with : "AL.exe" : with a : ".snk" key file
( in HELP I read that : "... <codebase> only can be used in : "machine configuration files" and "publisher policy files" :
this is not true " )
3. this works fine : <codeBase version="1.1.1.1" href="file:///L:/tmp/1.1.1.1/SharedDemo.dll" />
4. this works fine : <codeBase version="2.0.0.0" href="http://192.168.1.210/myDLL.dll" />
4. this works fine : <codeBase version="2.0.0.0" href="http://192.168.1.210/bin/myDLL.dll" />
5. but : in any case : the "web" : can't be : a "virtual directory" :
"myDLL.dll" : must be in : "C:\inetpub\wwwroot\ : or : in some subdirectory below.

I hope this may be useful.
I'll appreciate any correction, sugestion, or question.

E.

Last edited by equintana71; May 17th, 2011 at 10:03 PM.. Reason: update





Similar Threads
Thread Thread Starter Forum Replies Last Post
Ch 17 extended credit [email protected] BOOK: ASP.NET 4 24-Hour Trainer 2 January 31st, 2012 08:05 AM
Add Class grayed out - Ch. 17 dvdstwrd BOOK: Ivor Horton's Beginning Visual C++ 2008 ISBN: 978-0-470-22590-5 0 August 15th, 2009 01:41 PM
error in ch 17 on running both fils no17 Beginning PHP 0 May 10th, 2008 02:15 AM
Ch 17 - Sender Object not working? deanC4 BOOK: Beginning ASP.NET 2.0 and Databases 1 April 18th, 2007 01:25 PM
IStateManager.TrackViewState() Ch 17 EdKroket BOOK: Professional ASP.NET 2.0 Server Control and Component Development ISBN: 978-0-471-79350-2 0 January 25th, 2007 07:10 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.