How do I go about installing com objects on IIS 5.1?

John,

Re: Install com object on IIS 5.1 by Tom

Tom
Mon Nov 22 14:03:00 CST 2004

"JohnDpatriot" <johndpatriot@myway.com> wrote in message
news:uf14LuM0EHA.1188@tk2msftngp13.phx.gbl...
> How do I go about installing com objects on IIS 5.1?

The are installed on the operating system, not IIS. Use "regsvr32
path_to_your_dll".



Re: Install com object on IIS 5.1 by JohnDpatriot

JohnDpatriot
Mon Nov 22 14:11:54 CST 2004

Tom Kaminski [MVP] wrote:

> "JohnDpatriot" <johndpatriot@myway.com> wrote in message
> news:uf14LuM0EHA.1188@tk2msftngp13.phx.gbl...
>
>>How do I go about installing com objects on IIS 5.1?
>
>
> The are installed on the operating system, not IIS. Use "regsvr32
> path_to_your_dll".
>
>
I have a "Com" object called IOSockets which is supposed to return the
content of a web page to an variable in VBscipt. The files that came
with the object are:

IOSockets.class
IOSockets.java

There was not a dll with them. Where should I put these?

Thanks,
John,

Re: Install com object on IIS 5.1 by JohnDpatriot

JohnDpatriot
Mon Nov 22 14:13:19 CST 2004

Tom Kaminski [MVP] wrote:

> "JohnDpatriot" <johndpatriot@myway.com> wrote in message
> news:uf14LuM0EHA.1188@tk2msftngp13.phx.gbl...
>
>>How do I go about installing com objects on IIS 5.1?
>
>
> The are installed on the operating system, not IIS. Use "regsvr32
> path_to_your_dll".
>
>
I have a "Com" object called IOSockets which is supposed to return the
content of a web page to an variable in VBscipt. The files that came
with the object are:

IOSockets.class
IOSockets.java

There was not a dll with them. Where should I put these?

Thanks,
John,

Re: Install com object on IIS 5.1 by Tom

Tom
Mon Nov 22 15:24:01 CST 2004

"JohnDpatriot" <johndpatriot@myway.com> wrote in message
news:41A2480A.10805@myway.com...
> Tom Kaminski [MVP] wrote:
>
> > "JohnDpatriot" <johndpatriot@myway.com> wrote in message
> > news:uf14LuM0EHA.1188@tk2msftngp13.phx.gbl...
> >
> >>How do I go about installing com objects on IIS 5.1?
> >
> >
> > The are installed on the operating system, not IIS. Use "regsvr32
> > path_to_your_dll".
> >
> >
> I have a "Com" object called IOSockets which is supposed to return the
> content of a web page to an variable in VBscipt. The files that came
> with the object are:
>
> IOSockets.class
> IOSockets.java
>
> There was not a dll with them. Where should I put these?

In that case, use javareg.
http://support.microsoft.com/default.aspx?scid=kb;en-us;167941



Re: Install com object on IIS 5.1 by JohnDpatriot

JohnDpatriot
Mon Nov 22 15:56:23 CST 2004

Tom Kaminski [MVP] wrote:
> "JohnDpatriot" <johndpatriot@myway.com> wrote in message
> news:41A2480A.10805@myway.com...
>
>>Tom Kaminski [MVP] wrote:
>>
>>
>>>"JohnDpatriot" <johndpatriot@myway.com> wrote in message
>>>news:uf14LuM0EHA.1188@tk2msftngp13.phx.gbl...
>>>
>>>
>>>>How do I go about installing com objects on IIS 5.1?
>>>
>>>
>>>The are installed on the operating system, not IIS. Use "regsvr32
>>>path_to_your_dll".
>>>
>>>
>>
>>I have a "Com" object called IOSockets which is supposed to return the
>>content of a web page to an variable in VBscipt. The files that came
>>with the object are:
>>
>>IOSockets.class
>>IOSockets.java
>>
>>There was not a dll with them. Where should I put these?
>
>
> In that case, use javareg.
> http://support.microsoft.com/default.aspx?scid=kb;en-us;167941
>
>
Thanks Tom