Click here to Skip to main content
15,887,135 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralAbsolute file paths for appSettings Pin
Ian Darling18-Jun-03 2:39
Ian Darling18-Jun-03 2:39 
GeneralRe: Absolute file paths for appSettings Pin
CBoland24-Jun-03 7:24
CBoland24-Jun-03 7:24 
GeneralUnable to open the remote windows service Pin
karthikv17-Jun-03 9:55
karthikv17-Jun-03 9:55 
QuestionIs it a new version of DLL hell? Pin
Oleksandr Kucherenko17-Jun-03 3:18
Oleksandr Kucherenko17-Jun-03 3:18 
GeneralRe: Is it a new version of DLL hell? Pin
Oleksandr Kucherenko17-Jun-03 4:56
Oleksandr Kucherenko17-Jun-03 4:56 
AnswerRe: Is it a new version of DLL hell? Pin
leppie17-Jun-03 9:15
leppie17-Jun-03 9:15 
GeneralRe: Is it a new version of DLL hell? Pin
Oleksandr Kucherenko17-Jun-03 21:06
Oleksandr Kucherenko17-Jun-03 21:06 
GeneralRe: Is it a new version of DLL hell? Pin
leppie18-Jun-03 7:09
leppie18-Jun-03 7:09 
OK first some easy stuff:

There is a few good articles in April 2003 MSDN on sidebyside execution.
What is happening in your case (afai can figure it out):

1. Server defines an interface
2. Client implements interface
3. Client send inteface to the server
4. Server loads implemetation class. KABOOM!!!

How can this be? Simple, the client has made a reference to the culprit assembly (OleDB in your case, that is new in 1.1). This is however not desirable.

Like I said, installing 1.1 on the server, should automatically resolve these issues. Not doing this, leaves with 3 options:

1. Prevent the client from using "new" libaries. This not however desirable either, although I think the 1.1 compiler can compile for 1.0 compatibilty (this would be nice).

2. Use Remoting. This will be painfull, but will allow you to do more.

3. Compile any source at a single point, e.g. the server.

So I guess its back to the drawing boards for you Poke tongue | ;-P

Hope it helps Smile | :)

<a TITLE="See my user info" href=http://www.codeproject.com/script/profile/whos_who.asp?id=38829>leppie<a>::<a TITLE="Go to all articles  written by me" href=http://www.codeproject.com/script/articles/list_articles.asp?userid=38829>AllocCPArticle</a>(<a TITLE="Go to my latest, greatest article!" href=http://www.codeproject.com/useritems/dfamachine.asp >Generic DFA State Machine for .NET</a>);

GeneralObject Memory Space Pin
CBoland16-Jun-03 9:09
CBoland16-Jun-03 9:09 
GeneralRe: Object Memory Space Pin
Daniel Turini17-Jun-03 10:07
Daniel Turini17-Jun-03 10:07 
GeneralRe: Object Memory Space Pin
Aravinthan25-Jun-03 3:31
Aravinthan25-Jun-03 3:31 
GeneralFORM VB 6 to VB.net Pin
Jonavis13-Jun-03 11:21
Jonavis13-Jun-03 11:21 
GeneralIL Optimization Pin
leppie13-Jun-03 10:02
leppie13-Jun-03 10:02 
GeneralRe: IL Optimization Pin
Daniel Turini13-Jun-03 10:22
Daniel Turini13-Jun-03 10:22 
GeneralRe: IL Optimization Pin
leppie13-Jun-03 10:38
leppie13-Jun-03 10:38 
GeneralRe: IL Optimization Pin
Daniel Turini13-Jun-03 10:53
Daniel Turini13-Jun-03 10:53 
GeneralRe: IL Optimization Pin
leppie13-Jun-03 11:08
leppie13-Jun-03 11:08 
GeneralRe: IL Optimization Pin
Daniel Turini13-Jun-03 11:32
Daniel Turini13-Jun-03 11:32 
GeneralRe: IL Optimization Pin
leppie13-Jun-03 12:04
leppie13-Jun-03 12:04 
GeneralIIS Permissions and .NET Framework Pin
Roger Wright13-Jun-03 8:47
professionalRoger Wright13-Jun-03 8:47 
Generalscrolling without a scrollbar Pin
mindfuck13-Jun-03 4:26
mindfuck13-Jun-03 4:26 
GeneralSystem.Windows.Forms.Panel AutoScroll Pin
Anonymous11-Jun-03 12:50
Anonymous11-Jun-03 12:50 
GeneralQuestion about UTF8 Encoding Pin
NorthWoodsman10-Jun-03 17:06
NorthWoodsman10-Jun-03 17:06 
GeneralRe: Question about UTF8 Encoding Pin
Laimis13-Jun-03 5:19
Laimis13-Jun-03 5:19 
QuestionIs that a way to let your 1.1 application freely running on all kinds of framework? Pin
fftongzhi10-Jun-03 16:54
fftongzhi10-Jun-03 16:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.