Re: [DUG]: DCOM and NT

1999-08-06 Thread Peter's Hotmail



Sorry bout that.  I just tried http://www.execpc.com/~dmiser/ and it works
fine.


- Original Message -
From: Jeremy Coulter <[EMAIL PROTECTED]>
To: Multiple recipients of list delphi <[EMAIL PROTECTED]>
Sent: Friday, August 06, 1999 4:40 PM
Subject: RE: [DUG]: DCOM and NT


> that site seems to have goneit cant find the page anymoreand
> that after altering the URL too put a . where the / was...
>
> Jeremy Coulter
>
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> > Behalf Of Peter G Jones
> > Sent: Saturday, August 07, 1999 04:34
> > To: Multiple recipients of list delphi
> > Subject: RE: [DUG]: DCOM and NT
> >
> >
> > From a delphi app you can call CoObjectCreateRemote and specify the
> > workstation name so we don't need DCOMCnfg.  If you are not using
> > Delphi to
> > call the server then you can dig into the registry and change
> > things but if
> > you are using 'Run As' for the activation then you won't be able
> > to encrypt
> > the password in the registry.  Checkout Dan Misers web site - he
> > has a page
> > there with all the steps to follow.  http://www/execpc.com/~dmiser.
> >
> > All our server objects will run using DCom or Midas sockets.  We use a
> > single registry entry on the client to specifiy the connection method
> > (Socket or Com) and the remote server name.  We don't use DCom
> > cause I had a
> > heck of a job getting it to run at all (NT Security) and sockets
> > was a snap,
> > so we chose sockets.
> >
> >
> > >From: "Jeremy Coulter" <[EMAIL PROTECTED]>
> > >Reply-To: [EMAIL PROTECTED]
> > >To: Multiple recipients of list delphi <[EMAIL PROTECTED]>
> > >Subject: RE: [DUG]: DCOM and NT
> > >Date: Fri, 6 Aug 1999 09:11:07 +1200
> > >
> > >Ok, yeah I have got that far sofar...
> > >Another question have is, can you setup or alter a setting in
> > DCOMCNFG.EXE
> > >from code ??
> > >I.e. at the moment, on the remote machine I have an IP address hard
coded
> > >into it where the DCOM server is, (the machine where it is).
> > >Now, if thatIP addres changes, can I progmatically change thatIP
> > address ?
> > >
> > >Cheers, Jeremy Coulter
> > >
> > > > -Original Message-
> > > > From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On
> > > > Behalf Of Peter G Jones
> > > > Sent: Friday, August 06, 1999 20:10
> > > > To: Multiple recipients of list delphi
> > > > Subject: Re: [DUG]: DCOM and NT
> > > >
> > > >
> > > > You can only run out-of-process servers remotely, ie: exe's -
> > unless you
> > > > provide a proxy, in which case you may as well just right an exe.
> > > >  Of course
> > > > if your Web server is IIS then you will be using MTS so you can
> > > > then use a
> > > > Com DLL - forget OCX's they are crap - but you are still using an
> > > > EXE cause
> > > > that's all MTS is .
> > > >
> > > > Get it?
> > > >
> > > >
> > > > >From: "Jeremy Coulter" <[EMAIL PROTECTED]>
> > > > >Reply-To: [EMAIL PROTECTED]
> > > > >To: Multiple recipients of list delphi <[EMAIL PROTECTED]>
> > > > >Subject: [DUG]:  DCOM and NT
> > > > >Date: Thu, 5 Aug 1999 11:06:13 +1200
> > > > >
> > > > >HI all.
> > > > >
> > > > >I might be going up the wrong path here, BUT, in windows 95 when
you
> > >goto
> > > > >the DCOM config tool I think it is from memory, you can go into
> > > > it and tell
> > > > >it to run an OCX on another machine/server (as long as its an NT or
> > >95/98
> > > > >box)
> > > > >Now my understanding of this, that the OCX does in dead RUN on the
> > > > >nominated
> > > > >machine...which iswhere I might be going wrong.
> > > > >
> > > > >Anyway, assuming I ma right-ish, where do I do this under NT ??
> > > > >
> > > > >Thanks, Jeremy Coulter
> > > > ><< winmail.dat >>
> > > >
> > > >
> > > > __
> > > > Get Your Private, Free Email at http://www.hotmail.com
> > > > 

RE: [DUG]: DCOM and NT

1999-08-05 Thread Patrick Dunford

? http://www.execpc.com/~dmiser/ works fine

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> Behalf Of Jeremy Coulter
> Sent: Friday, 6 August 1999 16:41
> To: Multiple recipients of list delphi
> Subject: RE: [DUG]: DCOM and NT
>
>
> that site seems to have goneit cant find the page anymoreand
> that after altering the URL too put a . where the / was...
>
> Jeremy Coulter
>
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> > Behalf Of Peter G Jones
> > Sent: Saturday, August 07, 1999 04:34
> > To: Multiple recipients of list delphi
> > Subject: RE: [DUG]: DCOM and NT
> >
> >
> > From a delphi app you can call CoObjectCreateRemote and specify the
> > workstation name so we don't need DCOMCnfg.  If you are not using
> > Delphi to
> > call the server then you can dig into the registry and change
> > things but if
> > you are using 'Run As' for the activation then you won't be able
> > to encrypt
> > the password in the registry.  Checkout Dan Misers web site - he
> > has a page
> > there with all the steps to follow.  http://www/execpc.com/~dmiser.
> >
> > All our server objects will run using DCom or Midas sockets.  We use a
> > single registry entry on the client to specifiy the connection method
> > (Socket or Com) and the remote server name.  We don't use DCom
> > cause I had a
> > heck of a job getting it to run at all (NT Security) and sockets
> > was a snap,
> > so we chose sockets.
> >
> >
> > >From: "Jeremy Coulter" <[EMAIL PROTECTED]>
> > >Reply-To: [EMAIL PROTECTED]
> > >To: Multiple recipients of list delphi <[EMAIL PROTECTED]>
> > >Subject: RE: [DUG]: DCOM and NT
> > >Date: Fri, 6 Aug 1999 09:11:07 +1200
> > >
> > >Ok, yeah I have got that far sofar...
> > >Another question have is, can you setup or alter a setting in
> > DCOMCNFG.EXE
> > >from code ??
> > >I.e. at the moment, on the remote machine I have an IP address
> hard coded
> > >into it where the DCOM server is, (the machine where it is).
> > >Now, if thatIP addres changes, can I progmatically change thatIP
> > address ?
> > >
> > >Cheers, Jeremy Coulter
> > >
> > > > -Original Message-
> > > > From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On
> > > > Behalf Of Peter G Jones
> > > > Sent: Friday, August 06, 1999 20:10
> > > > To: Multiple recipients of list delphi
> > > > Subject: Re: [DUG]: DCOM and NT
> > > >
> > > >
> > > > You can only run out-of-process servers remotely, ie: exe's -
> > unless you
> > > > provide a proxy, in which case you may as well just right an exe.
> > > >  Of course
> > > > if your Web server is IIS then you will be using MTS so you can
> > > > then use a
> > > > Com DLL - forget OCX's they are crap - but you are still using an
> > > > EXE cause
> > > > that's all MTS is .
> > > >
> > > > Get it?
> > > >
> > > >
> > > > >From: "Jeremy Coulter" <[EMAIL PROTECTED]>
> > > > >Reply-To: [EMAIL PROTECTED]
> > > > >To: Multiple recipients of list delphi <[EMAIL PROTECTED]>
> > > > >Subject: [DUG]:  DCOM and NT
> > > > >Date: Thu, 5 Aug 1999 11:06:13 +1200
> > > > >
> > > > >HI all.
> > > > >
> > > > >I might be going up the wrong path here, BUT, in windows
> 95 when you
> > >goto
> > > > >the DCOM config tool I think it is from memory, you can go into
> > > > it and tell
> > > > >it to run an OCX on another machine/server (as long as its an NT or
> > >95/98
> > > > >box)
> > > > >Now my understanding of this, that the OCX does in dead RUN on the
> > > > >nominated
> > > > >machine...which iswhere I might be going wrong.
> > > > >
> > > > >Anyway, assuming I ma right-ish, where do I do this under NT ??
> > > > >
> > > > >Thanks, Jeremy Coulter
> > > > ><< winmail.dat >>
> > > >
> > > >
> > > > __
> > > > Get Your Private, Free Email at http://www.hotmail.com
> > > > 

RE: [DUG]: DCOM and NT

1999-08-05 Thread Jeremy Coulter

that site seems to have goneit cant find the page anymoreand
that after altering the URL too put a . where the / was...

Jeremy Coulter

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> Behalf Of Peter G Jones
> Sent: Saturday, August 07, 1999 04:34
> To: Multiple recipients of list delphi
> Subject: RE: [DUG]: DCOM and NT
>
>
> From a delphi app you can call CoObjectCreateRemote and specify the
> workstation name so we don't need DCOMCnfg.  If you are not using
> Delphi to
> call the server then you can dig into the registry and change
> things but if
> you are using 'Run As' for the activation then you won't be able
> to encrypt
> the password in the registry.  Checkout Dan Misers web site - he
> has a page
> there with all the steps to follow.  http://www/execpc.com/~dmiser.
>
> All our server objects will run using DCom or Midas sockets.  We use a
> single registry entry on the client to specifiy the connection method
> (Socket or Com) and the remote server name.  We don't use DCom
> cause I had a
> heck of a job getting it to run at all (NT Security) and sockets
> was a snap,
> so we chose sockets.
>
>
> >From: "Jeremy Coulter" <[EMAIL PROTECTED]>
> >Reply-To: [EMAIL PROTECTED]
> >To: Multiple recipients of list delphi <[EMAIL PROTECTED]>
> >Subject: RE: [DUG]: DCOM and NT
> >Date: Fri, 6 Aug 1999 09:11:07 +1200
> >
> >Ok, yeah I have got that far sofar...
> >Another question have is, can you setup or alter a setting in
> DCOMCNFG.EXE
> >from code ??
> >I.e. at the moment, on the remote machine I have an IP address hard coded
> >into it where the DCOM server is, (the machine where it is).
> >Now, if thatIP addres changes, can I progmatically change thatIP
> address ?
> >
> >Cheers, Jeremy Coulter
> >
> > > -----Original Message-
> > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> > > Behalf Of Peter G Jones
> > > Sent: Friday, August 06, 1999 20:10
> > > To: Multiple recipients of list delphi
> > > Subject: Re: [DUG]: DCOM and NT
> > >
> > >
> > > You can only run out-of-process servers remotely, ie: exe's -
> unless you
> > > provide a proxy, in which case you may as well just right an exe.
> > >  Of course
> > > if your Web server is IIS then you will be using MTS so you can
> > > then use a
> > > Com DLL - forget OCX's they are crap - but you are still using an
> > > EXE cause
> > > that's all MTS is .
> > >
> > > Get it?
> > >
> > >
> > > >From: "Jeremy Coulter" <[EMAIL PROTECTED]>
> > > >Reply-To: [EMAIL PROTECTED]
> > > >To: Multiple recipients of list delphi <[EMAIL PROTECTED]>
> > > >Subject: [DUG]:  DCOM and NT
> > > >Date: Thu, 5 Aug 1999 11:06:13 +1200
> > > >
> > > >HI all.
> > > >
> > > >I might be going up the wrong path here, BUT, in windows 95 when you
> >goto
> > > >the DCOM config tool I think it is from memory, you can go into
> > > it and tell
> > > >it to run an OCX on another machine/server (as long as its an NT or
> >95/98
> > > >box)
> > > >Now my understanding of this, that the OCX does in dead RUN on the
> > > >nominated
> > > >machine...which iswhere I might be going wrong.
> > > >
> > > >Anyway, assuming I ma right-ish, where do I do this under NT ??
> > > >
> > > >Thanks, Jeremy Coulter
> > > ><< winmail.dat >>
> > >
> > >
> > > __
> > > Get Your Private, Free Email at http://www.hotmail.com
> > > --
> > > -
> > > New Zealand Delphi Users group - Delphi List -
> [EMAIL PROTECTED]
> > >   Website: http://www.delphi.org.nz
> > >
> >
> >
> >-
> --
> > New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
> >   Website: http://www.delphi.org.nz
>
>
> __
> Get Your Private, Free Email at http://www.hotmail.com
> --
> -
> New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
>   Website: http://www.delphi.org.nz
>


---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz



RE: [DUG]: DCOM and NT

1999-08-05 Thread Peter G Jones

>From a delphi app you can call CoObjectCreateRemote and specify the 
workstation name so we don't need DCOMCnfg.  If you are not using Delphi to 
call the server then you can dig into the registry and change things but if 
you are using 'Run As' for the activation then you won't be able to encrypt 
the password in the registry.  Checkout Dan Misers web site - he has a page 
there with all the steps to follow.  http://www/execpc.com/~dmiser.

All our server objects will run using DCom or Midas sockets.  We use a 
single registry entry on the client to specifiy the connection method 
(Socket or Com) and the remote server name.  We don't use DCom cause I had a 
heck of a job getting it to run at all (NT Security) and sockets was a snap, 
so we chose sockets.


>From: "Jeremy Coulter" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: Multiple recipients of list delphi <[EMAIL PROTECTED]>
>Subject: RE: [DUG]: DCOM and NT
>Date: Fri, 6 Aug 1999 09:11:07 +1200
>
>Ok, yeah I have got that far sofar...
>Another question have is, can you setup or alter a setting in DCOMCNFG.EXE
>from code ??
>I.e. at the moment, on the remote machine I have an IP address hard coded
>into it where the DCOM server is, (the machine where it is).
>Now, if thatIP addres changes, can I progmatically change thatIP address ?
>
>Cheers, Jeremy Coulter
>
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> > Behalf Of Peter G Jones
> > Sent: Friday, August 06, 1999 20:10
> > To: Multiple recipients of list delphi
> > Subject: Re: [DUG]: DCOM and NT
> >
> >
> > You can only run out-of-process servers remotely, ie: exe's - unless you
> > provide a proxy, in which case you may as well just right an exe.
> >  Of course
> > if your Web server is IIS then you will be using MTS so you can
> > then use a
> > Com DLL - forget OCX's they are crap - but you are still using an
> > EXE cause
> > that's all MTS is .
> >
> > Get it?
> >
> >
> > >From: "Jeremy Coulter" <[EMAIL PROTECTED]>
> > >Reply-To: [EMAIL PROTECTED]
> > >To: Multiple recipients of list delphi <[EMAIL PROTECTED]>
> > >Subject: [DUG]:  DCOM and NT
> > >Date: Thu, 5 Aug 1999 11:06:13 +1200
> > >
> > >HI all.
> > >
> > >I might be going up the wrong path here, BUT, in windows 95 when you 
>goto
> > >the DCOM config tool I think it is from memory, you can go into
> > it and tell
> > >it to run an OCX on another machine/server (as long as its an NT or 
>95/98
> > >box)
> > >Now my understanding of this, that the OCX does in dead RUN on the
> > >nominated
> > >machine...which iswhere I might be going wrong.
> > >
> > >Anyway, assuming I ma right-ish, where do I do this under NT ??
> > >
> > >Thanks, Jeremy Coulter
> > ><< winmail.dat >>
> >
> >
> > __
> > Get Your Private, Free Email at http://www.hotmail.com
> > --
> > -
> > New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
> >   Website: http://www.delphi.org.nz
> >
>
>
>---
> New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
>   Website: http://www.delphi.org.nz


__
Get Your Private, Free Email at http://www.hotmail.com
---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz



RE: [DUG]: DCOM and NT

1999-08-05 Thread Jeremy Coulter

Kerry gave me an Idea...why not look in the registry, so I did, and I hve
found my answerthe IP addess IS stored in the registry.so..leave me
alone, I am sickmy brain isn't working right today.

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> Behalf Of Jeremy Coulter
> Sent: Friday, August 06, 1999 10:01
> To: Multiple recipients of list delphi
> Subject: RE: [DUG]: DCOM and NT
>
>
> ok, best explain betterthe IP address is in the DCOMCNFG.EXE settings,
> not the program.thats what I was meaning, can it chang eth
> DCOMCNFG.EXE
> setting progmatically??
>
> Cheers, Jeremy Coulter
>
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> > Behalf Of Kerry Sainsbury
> > Sent: Friday, August 06, 1999 09:51
> > To: Multiple recipients of list delphi
> > Subject: RE: [DUG]: DCOM and NT
> >
> >
> > --- Jeremy Coulter <[EMAIL PROTECTED]> wrote:
> >
> > > I.e. at the moment, on the remote machine I have an IP address hard
> > > coded
> > > into it where the DCOM server is, (the machine where it is).
> > > Now, if thatIP addres changes, can I progmatically change thatIP
> > > address ?
> >
> > You could read the IP address in from an ini file, or a registry
> > setting, or pass it as an argument to the program.
> >
> > You never need to hardcode -- it just bites you later anyway.
> >
> >
> > ___
> > DO YOU YAHOO!?
> > Get your free @yahoo.com.au address at http://mail.yahoo.com.au
> >
> > --
> > -
> > New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
> >   Website: http://www.delphi.org.nz
> >
>
>
> --
> -
> New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
>   Website: http://www.delphi.org.nz
>


---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz



RE: [DUG]: DCOM and NT

1999-08-05 Thread Jeremy Coulter

ok, best explain betterthe IP address is in the DCOMCNFG.EXE settings,
not the program.thats what I was meaning, can it chang eth DCOMCNFG.EXE
setting progmatically??

Cheers, Jeremy Coulter

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> Behalf Of Kerry Sainsbury
> Sent: Friday, August 06, 1999 09:51
> To: Multiple recipients of list delphi
> Subject: RE: [DUG]: DCOM and NT
>
>
> --- Jeremy Coulter <[EMAIL PROTECTED]> wrote:
>
> > I.e. at the moment, on the remote machine I have an IP address hard
> > coded
> > into it where the DCOM server is, (the machine where it is).
> > Now, if thatIP addres changes, can I progmatically change thatIP
> > address ?
>
> You could read the IP address in from an ini file, or a registry
> setting, or pass it as an argument to the program.
>
> You never need to hardcode -- it just bites you later anyway.
>
>
> ___
> DO YOU YAHOO!?
> Get your free @yahoo.com.au address at http://mail.yahoo.com.au
>
> --
> -
> New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
>   Website: http://www.delphi.org.nz
>


---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz



RE: [DUG]: DCOM and NT

1999-08-05 Thread Kerry Sainsbury

--- Jeremy Coulter <[EMAIL PROTECTED]> wrote:

> I.e. at the moment, on the remote machine I have an IP address hard
> coded
> into it where the DCOM server is, (the machine where it is).
> Now, if thatIP addres changes, can I progmatically change thatIP
> address ?

You could read the IP address in from an ini file, or a registry
setting, or pass it as an argument to the program.

You never need to hardcode -- it just bites you later anyway.


___
DO YOU YAHOO!?
Get your free @yahoo.com.au address at http://mail.yahoo.com.au

---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz



RE: [DUG]: DCOM and NT

1999-08-05 Thread Jeremy Coulter

Ok, yeah I have got that far sofar...
Another question have is, can you setup or alter a setting in DCOMCNFG.EXE
from code ??
I.e. at the moment, on the remote machine I have an IP address hard coded
into it where the DCOM server is, (the machine where it is).
Now, if thatIP addres changes, can I progmatically change thatIP address ?

Cheers, Jeremy Coulter

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> Behalf Of Peter G Jones
> Sent: Friday, August 06, 1999 20:10
> To: Multiple recipients of list delphi
> Subject: Re: [DUG]: DCOM and NT
>
>
> You can only run out-of-process servers remotely, ie: exe's - unless you
> provide a proxy, in which case you may as well just right an exe.
>  Of course
> if your Web server is IIS then you will be using MTS so you can
> then use a
> Com DLL - forget OCX's they are crap - but you are still using an
> EXE cause
> that's all MTS is .
>
> Get it?
>
>
> >From: "Jeremy Coulter" <[EMAIL PROTECTED]>
> >Reply-To: [EMAIL PROTECTED]
> >To: Multiple recipients of list delphi <[EMAIL PROTECTED]>
> >Subject: [DUG]:  DCOM and NT
> >Date: Thu, 5 Aug 1999 11:06:13 +1200
> >
> >HI all.
> >
> >I might be going up the wrong path here, BUT, in windows 95 when you goto
> >the DCOM config tool I think it is from memory, you can go into
> it and tell
> >it to run an OCX on another machine/server (as long as its an NT or 95/98
> >box)
> >Now my understanding of this, that the OCX does in dead RUN on the
> >nominated
> >machine...which iswhere I might be going wrong.
> >
> >Anyway, assuming I ma right-ish, where do I do this under NT ??
> >
> >Thanks, Jeremy Coulter
> ><< winmail.dat >>
>
>
> __
> Get Your Private, Free Email at http://www.hotmail.com
> --
> -
> New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
>   Website: http://www.delphi.org.nz
>


---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz



Re: [DUG]: DCOM and NT

1999-08-05 Thread Peter G Jones

You can only run out-of-process servers remotely, ie: exe's - unless you 
provide a proxy, in which case you may as well just right an exe.  Of course 
if your Web server is IIS then you will be using MTS so you can then use a 
Com DLL - forget OCX's they are crap - but you are still using an EXE cause 
that's all MTS is .

Get it?


>From: "Jeremy Coulter" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: Multiple recipients of list delphi <[EMAIL PROTECTED]>
>Subject: [DUG]:  DCOM and NT
>Date: Thu, 5 Aug 1999 11:06:13 +1200
>
>HI all.
>
>I might be going up the wrong path here, BUT, in windows 95 when you goto
>the DCOM config tool I think it is from memory, you can go into it and tell
>it to run an OCX on another machine/server (as long as its an NT or 95/98
>box)
>Now my understanding of this, that the OCX does in dead RUN on the 
>nominated
>machine...which iswhere I might be going wrong.
>
>Anyway, assuming I ma right-ish, where do I do this under NT ??
>
>Thanks, Jeremy Coulter
><< winmail.dat >>


__
Get Your Private, Free Email at http://www.hotmail.com
---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz



RE: [DUG]: DCOM and NT

1999-08-04 Thread Julien Thomas
Title: RE: [DUG]:  DCOM and NT





The location settings in Dcomcnfg allow you to select more than one location 


The computer where the data is located
This computer
A specific computer.



Read the blurb at the top of the location tab it explains that you can select more than one...




-Original Message-
From:   Jeremy Coulter [SMTP:[EMAIL PROTECTED]]
Sent:   Thursday, August 05, 1999 11:38 AM
To: Multiple recipients of list delphi
Subject:    RE: [DUG]:  DCOM and NT


DOH !!! thats right...I forget TOO easily !!
 
Ok, SO, if I write an OCX in Delphi, take it to another server (say my internet server), register it, then run dcomcnfg.exe, and tell it to run on another machine, (say my macine at home), it will run fine.

Then if my machine is not connected to the net, will the object will not be created and an error occure, OR will it still create the object cos its still on the machine I registered it onto ? (i.e. my internet server)

 
Thanks, Jeremy Coulter


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Julien Thomas
Sent: Thursday, August 05, 1999 11:19
To: Multiple recipients of list delphi
Subject: RE: [DUG]: DCOM and NT




Run   dcomcnfg.exe    in NT 


-Original Message-
From:   Jeremy Coulter [SMTP:[EMAIL PROTECTED]]
Sent:   Thursday, August 05, 1999 11:06 AM
To: Multiple recipients of list delphi
Subject:    [DUG]:  DCOM and NT 


HI all. 


I might be going up the wrong path here, BUT, in windows 95 when you goto the DCOM config tool I think it is from memory, you can go into it and tell it to run an OCX on another machine/server (as long as its an NT or 95/98 box)

Now my understanding of this, that the OCX does in dead RUN on the nominated machine...which iswhere I might be going wrong.

Anyway, assuming I ma right-ish, where do I do this under NT ?? 


Thanks, Jeremy Coulter 







RE: [DUG]: DCOM and NT

1999-08-04 Thread Jeremy Coulter
Title: RE: [DUG]: DCOM and NT



DOH !!! 
thats right...I forget TOO easily !!
 
Ok, SO, 
if I write an OCX in Delphi, take it to another server (say my internet server), 
register it, then run dcomcnfg.exe, and tell it to run on another machine, (say 
my macine at home), it will run fine.
Then if 
my machine is not connected to the net, will the object will not be created 
and an error occure, OR will it still create the object cos its still on 
the machine I registered it onto ? (i.e. my internet server)
 
Thanks, 
Jeremy Coulter

  -Original Message-From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]]On Behalf Of Julien 
  ThomasSent: Thursday, August 05, 1999 11:19To: Multiple 
  recipients of list delphiSubject: RE: [DUG]: DCOM and 
  NT
  Run   dcomcnfg.exe    in 
  NT 
  

  -Original 
  Message- From:   
  Jeremy Coulter [SMTP:[EMAIL PROTECTED]] Sent:   Thursday, 
  August 05, 1999 11:06 AM To: Multiple recipients of list delphi Subject:    [DUG]:  DCOM and NT 
  HI all. 
  I might be going up the wrong path here, BUT, 
  in windows 95 when you goto the DCOM config tool I think it is from 
  memory, you can go into it and tell it to run an OCX on another 
  machine/server (as long as its an NT or 95/98 box)
  Now my understanding of this, that the OCX does 
  in dead RUN on the nominated machine...which iswhere I might be going 
  wrong.
  Anyway, assuming I ma right-ish, where do I do 
  this under NT ?? 
  Thanks, Jeremy Coulter 



RE: [DUG]: DCOM and NT

1999-08-04 Thread Julien Thomas
Title: RE: [DUG]:  DCOM and NT





Run   dcomcnfg.exe    in NT


-Original Message-
From:   Jeremy Coulter [SMTP:[EMAIL PROTECTED]]
Sent:   Thursday, August 05, 1999 11:06 AM
To: Multiple recipients of list delphi
Subject:    [DUG]:  DCOM and NT


HI all.


I might be going up the wrong path here, BUT, in windows 95 when you goto the DCOM config tool I think it is from memory, you can go into it and tell it to run an OCX on another machine/server (as long as its an NT or 95/98 box)

Now my understanding of this, that the OCX does in dead RUN on the nominated machine...which iswhere I might be going wrong.

Anyway, assuming I ma right-ish, where do I do this under NT ??


Thanks, Jeremy Coulter





Re: [DUG]: DCOM and NT Service

1999-06-09 Thread Peter G Jones

The best place to start looking is Dan Miser's web page :
http://www.execpc.com/~dmiser
I have also had a look at some NT Service components that make it easier to
do COM:  http://www.chat.ru/~aldyn/hm_main.html
You should also frequent/search the Inprise news groups on automation and
Midas.

Cheers

- Original Message -
From: Tom Munro Glass <[EMAIL PROTECTED]>
To: Multiple recipients of list delphi <[EMAIL PROTECTED]>
Sent: Thursday, 10 June 1999 02:38
Subject: [DUG]: DCOM and NT Service


> Can anyone please give me some clues on how to set up DCOM so that a
> standard executable client running under the logged in user's security can
> access an NT service application (which is a server)?
>
> The service basically acts as a datalogger and interface to some external
> equipment on a serial port. The client GUI could be running on the same
> machine or on a remote machine using dialup networking.  The server
machine
> is running NT Workstation.
>
> Thanks in advance for any help
>
> ==
>
> Tom Munro Glass
>
> ++
> | E-mail:|
> | Internet:   [EMAIL PROTECTED] |
> | Web sites: |
> | TMG CONSULTANCY:http://www.tmgcon.com  |
> | Tewkesbury Web: http://www.tmgcon.com/tewksweb |
> ++
>
>
> --
-
> New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
>   Website: http://www.delphi.org.nz
>

---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz