Distributing implementation

Posts   
 
    
Jeff M
User
Posts: 250
Joined: 04-Aug-2004
# Posted on: 25-May-2005 17:17:02   

Are you guys using SoapSuds or are you distributing your LLBLGenPro data object implementation along with your client applications? I read that doing so is not a good idea.

Jeff

Devildog74
User
Posts: 719
Joined: 04-Feb-2004
# Posted on: 26-May-2005 14:08:09   

I typically create an interface that exposes the implementation methods. Then inherit the interface in a wrapper that invokes the implementation, and reference the shared interfaces from the client. Then I distribute the assembly with the shared interface (and the db generic assembly) to the client.

Jeff M
User
Posts: 250
Joined: 04-Aug-2004
# Posted on: 28-May-2005 07:30:06   

So, does that mean that you don't use client App.config files for remoting configuration?

Devildog74
User
Posts: 719
Joined: 04-Feb-2004
# Posted on: 01-Jun-2005 03:12:11   

No, I typically do use config files for remoting configuration.