I figured I might have to go that route. Thanks for your help!
"Allen Anderson" <allen@sparkysystems.com> wrote in message
news:oj24b09mv6t5gd6ajh70cc58965e695pgs@4ax.com...
> I think I see your problem. Hosting an object in IIS is assuming by
> default that you want to use IIS for your communications. IIS will
> indeed wake up your object on the first call to it through IIS.
> However, your object will not automatically be instanced so it can
> listen on another port for multicast events. Yoiu need to put this
> object in a system service or some other hosting mechanism to get it
> to run immediately right off.
>
> On Mon, 24 May 2004 10:31:58 +0100, "Lee Alexander"
> <lee@NoSpamPlease_Digita.com> wrote:
>
> >This is the web config I use:
> >
> ><configuration>
> > <system.web>
> > <authentication mode="Windows" />
> > <identity impersonate="true" userName="somedomain/someusername"
> >password="blahblah"/>
> > </system.web>
> > <system.runtime.remoting>
> > <application>
> > <service>
> > <wellknown mode="Singleton" objectUri="BudServer.rem"
> >type="Digita.Bud.BudServer, BudService"/>
> > </service>
> > <channels>
> > <channel ref="http"/>
> > </channels>
> > </application>
> > </system.runtime.remoting>
> ></configuration>
> >
> >Regards
> >Lee
> >
> >"Allen Anderson" <allen@sparkysystems.com> wrote in message
> >news:gmcsa09hmlg525q53vp7l580vhmdau30lf@4ax.com...
> >> actually, IIS should indeed start up your object. You must have
> >> something else going wrong here. How exactly are you setting up your
> >> object in IIS?
> >>
> >> Allen Anderson
> >>
http://www.glacialcomponents.com > >> mailto: allen@put my website url here.com
> >>
> >> On Thu, 20 May 2004 15:20:04 +0100, "Lee Alexander"
> >> <lee@NoSpamPlease_Digita.com> wrote:
> >>
> >> >I have a remoting object (singleton) that when activated listens for
> >> >mutlicast messages so that it can tell clients where it is. The
clients
> >then
> >> >access the remoting objects methods from there. The problem I'm having
is
> >> >that under IIS the object is not instantiated untill the first call to
it
> >> >which of course will be never happen because no clients can find it
> >(doh).
> >> >Anyway this isn't a problem when *not* running under IIS as I simply
call
> >> >RemotingServices.Marshal with a new server object on application
startup.
> >> >How can I do this under IIS (if at all).
> >> >
> >> >All help is much appreciated....
> >> >
> >> >Regards
> >> >Lee
> >> >
> >> >
> >>
> >
>