I've tried the following and am out of ideas. <system.runtime.remoting> <application> <client> <wellknown type="MiddleTier.Equipment, MiddleTier" url="http://usabb13210:999/CMS/Equipment"/> </client> </application> </system.runtime.remoting>
and <system.runtime.remoting> <application name="AdministrationApp"> <client url="http://usabb13210:999/CMS/Equipment"> <activated type="MiddleTier.Equipment, MiddleTier" /> </client> <channels> <channel ref="http" port="0"> <clientProviders> <formatter ref="binary" /> </clientProviders> <serverProviders> <formatter ref="binary" /> </serverProviders> </channel> </channels> </application> </system.runtime.remoting> </configuration> and <system.runtime.remoting> <application name="AdministrationApp"> <client> <wellknown type="MiddleTier.Equipment, MiddleTier" url="http://usabb13210:999/CMS/Equipment"/> </client> <channels> <channel ref="http" port="0"> <clientProviders> <formatter ref="binary" /> </clientProviders> <serverProviders> <formatter ref="binary" /> </serverProviders> </channel> </channels> </application> </system.runtime.remoting> </configuration> and <system.runtime.remoting> <application name="AdministrationApp"> <client url="http://usabb13210:999/CMS/Equipment"> <activated type="MiddleTier.Equipment, MiddleTier" /> </client> </application> </system.runtime.remoting> </configuration> Message from Mitch Gordon <[EMAIL PROTECTED]>@DISCUSS.DEVELOP.COM received on 10/04/2005 08:23 AM 10/04/2005 08:23 AM Mitch Gordon <[EMAIL PROTECTED]>@DISCUSS.DEVELOP.COM Please respond to "Unmoderated discussion of advanced .NET topics." <ADVANCED-DOTNET@DISCUSS.DEVELOP.COM> Sent by "Unmoderated discussion of advanced .NET topics." <ADVANCED-DOTNET@DISCUSS.DEVELOP.COM> To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM cc: Subject: Re: [ADVANCED-DOTNET] Remoting config Have you tried something like this? <configuration> <system.runtime.remoting> <application> <client> <wellknown type="RemotingTest.RemoteClass, RemotingTest" url="tcp://Server1:8085/test"/> </client> </application> </system.runtime.remoting> </configuration> Mitch http://www.enterpriseetc.com Franklin Gray <[EMAIL PROTECTED]> wrote: In config Coded obj = CType(System.Runtime.Remoting.RemotingServices.Connect(GetType(Obj), System.Configuration.ConfigurationSettings.AppSettings("Equipment")), Obj) If I do the above, I get the remoted object. However, with the developers I have on this project, this will not be accepted very well. I know I can do it all in the config file and have looked at the examples and tried everything they have but nothing works. Can anybody help me config the client side so all the developers have to do is Dim X as new obj? Server Side Config --> =================================== This list is hosted by DevelopMentorĀ® http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.com =================================== This list is hosted by DevelopMentorĀ® http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.com =================================== This list is hosted by DevelopMentorĀ® http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.com