Welcome to MobyThreads.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in
All support for the MobyThreads Threaded phpBB MOD can now be found on welsolutions at this forum

How do you install a COM+ server component on IIS 6.0?

 
   Web Hosting and Web Master Forums (Home) -> IIS RSS
Next:  HTTP 500 ERROR COM+ VSS  
Author Message
rrobbins

External


Since: Jun 19, 2004
Posts: 2



(Msg. 1) Posted: Sat Jun 19, 2004 10:20 am
Post subject: How do you install a COM+ server component on IIS 6.0?
Archived from groups: microsoft>public>inetserver>iis (more info?)

Hello Genius,

How do you install a COM+ server component on IIS 6.0 so that ASP
scripts can create the object? I have an ASP shopping cart application that
uses a DLL to encrypt and decrypt credit card numbers. I have been unable to
figure out how to enable even the simplest ASP script to create the object.
Microsoft has provided no instructions on how this can be done and they've
made everything as cryptic as possible.

Robert Robbins
Frustrated Web Developer

 >> Stay informed about: How do you install a COM+ server component on IIS 6.0? 
Back to top
Login to vote
andrey

External


Since: Apr 12, 2004
Posts: 214



(Msg. 2) Posted: Tue Jun 22, 2004 2:46 pm
Post subject: Re: How do you install a COM+ server component on IIS 6.0? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Robert Robbins wrote:

 > Hello Genius,
 >
 > How do you install a COM+ server component on IIS 6.0 so that ASP
 > scripts can create the object? I have an ASP shopping cart application that
 > uses a DLL to encrypt and decrypt credit card numbers. I have been unable to
 > figure out how to enable even the simplest ASP script to create the object.
 > Microsoft has provided no instructions on how this can be done and they've
 > made everything as cryptic as possible.
 >
 > Robert Robbins
 > Frustrated Web Developer
 >
 >

Just go to Start > Programs > Admin Tools > Component Services.

Expand Console Root > Component Services > Computers > My Computer >
Com+ Application

Go To Action > New menu item. Create an empty application (server
application), enter name, select user to run under. Then, add users to
CreatorOwner group to allow running this COM+ package.

Then, Expand COM+ ApplicationName you've created on the previous step >
Components. Select Action > New menu item, then install a new component
by pointing to the dll file responsible for the choosen objectID or
select "Import Components" and then pick the needed component (if a dll
file is already registered).

That should be it.

-Andrey.<!-- ~MESSAGE_AFTER~ -->

 >> Stay informed about: How do you install a COM+ server component on IIS 6.0? 
Back to top
Login to vote
user675

External


Since: Aug 28, 2003
Posts: 617



(Msg. 3) Posted: Wed Jun 23, 2004 3:00 am
Post subject: Re: How do you install a COM+ server component on IIS 6.0? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Sat, 19 Jun 2004 07:20:28 GMT, "Robert Robbins"
<rrobbins DeleteThis @sunlink.net> wrote:

 > Hello Genius,
 >
 > How do you install a COM+ server component on IIS 6.0 so that ASP
 >scripts can create the object? I have an ASP shopping cart application that
 >uses a DLL to encrypt and decrypt credit card numbers. I have been unable to
 >figure out how to enable even the simplest ASP script to create the object.
 >Microsoft has provided no instructions on how this can be done and they've
 >made everything as cryptic as possible.
 >
 >Robert Robbins
 >Frustrated Web Developer

Actually Microsoft *has* provided instructions on how to do this :

HOWTO: Create an Empty MTS Package to Add Components for ASP
<a style='text-decoration: underline;' href="http://support.microsoft.com/?id=223406" target="_blank">http://support.microsoft.com/?id=223406</a>


Regards,

Paul Lynch
MCSE<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: How do you install a COM+ server component on IIS 6.0? 
Back to top
Login to vote
rrobbins

External


Since: Jun 19, 2004
Posts: 2



(Msg. 4) Posted: Wed Jun 23, 2004 3:41 am
Post subject: Re: How do you install a COM+ server component on IIS 6.0? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I was able to get a different legacy COM+ server component SMTPsvg.dll to
work without any special effort. I guess this shopping cart component is
being difficult because it makes use of the JVM. Installing the Java Runtime
from SUN does not solve the problem. : (

Robert Robbins
Frustrated Web Developer

"Paul Lynch" <paul.lynch.TakeThisOut@nospam.com> wrote in message
news:6eehd0hqglospoglvrftcjp2pspo09ehmv@4ax.com...
 > On Sat, 19 Jun 2004 07:20:28 GMT, "Robert Robbins"
 > <rrobbins.TakeThisOut@sunlink.net> wrote:
 >
  > > Hello Genius,
  > >
  > > How do you install a COM+ server component on IIS 6.0 so that ASP
  > >scripts can create the object? I have an ASP shopping cart application
that
  > >uses a DLL to encrypt and decrypt credit card numbers. I have been unable
to
  > >figure out how to enable even the simplest ASP script to create the
object.
  > >Microsoft has provided no instructions on how this can be done and
they've
  > >made everything as cryptic as possible.
  > >
  > >Robert Robbins
  > >Frustrated Web Developer
 >
 > Actually Microsoft *has* provided instructions on how to do this :
 >
 > HOWTO: Create an Empty MTS Package to Add Components for ASP
<font color=purple> > <a style='text-decoration: underline;' href="http://support.microsoft.com/?id=223406</font" target="_blank">http://support.microsoft.com/?id=223406</font</a>>
 >
 >
 > Regards,
 >
 > Paul Lynch
 > MCSE<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: How do you install a COM+ server component on IIS 6.0? 
Back to top
Login to vote
rrobbins1

External


Since: Jun 30, 2004
Posts: 1



(Msg. 5) Posted: Wed Jun 30, 2004 3:30 pm
Post subject: Re: How do you install a COM+ server component on IIS 6.0? [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I finally solved my problem by installing the Microsoft JVM which Windows
2003 Server does not have by default. Also ran Windows Update to get the
critical update for the JVM. The Microsoft JVM installer is msjavx86.exe.

"Robert Robbins" <rrobbins DeleteThis @sunlink.net> wrote in message
news:Kk4Cc.22830$Y3.22091@newsread2.news.atl.earthlink.net...
 > I was able to get a different legacy COM+ server component SMTPsvg.dll to
 > work without any special effort. I guess this shopping cart component is
 > being difficult because it makes use of the JVM. Installing the Java
Runtime
 > from SUN does not solve the problem. : (
 >
 > Robert Robbins
 > Frustrated Web Developer
 >
 > "Paul Lynch" <paul.lynch DeleteThis @nospam.com> wrote in message
 > news:6eehd0hqglospoglvrftcjp2pspo09ehmv@4ax.com...
  > > On Sat, 19 Jun 2004 07:20:28 GMT, "Robert Robbins"
  > > <rrobbins DeleteThis @sunlink.net> wrote:
  > >
   > > > Hello Genius,
   > > >
   > > > How do you install a COM+ server component on IIS 6.0 so that ASP
   > > >scripts can create the object? I have an ASP shopping cart application
 > that
   > > >uses a DLL to encrypt and decrypt credit card numbers. I have been
unable
 > to
   > > >figure out how to enable even the simplest ASP script to create the
 > object.
   > > >Microsoft has provided no instructions on how this can be done and
 > they've
   > > >made everything as cryptic as possible.
   > > >
   > > >Robert Robbins
   > > >Frustrated Web Developer
  > >
  > > Actually Microsoft *has* provided instructions on how to do this :
  > >
  > > HOWTO: Create an Empty MTS Package to Add Components for ASP
<font color=green>  > > <a style='text-decoration: underline;' href="http://support.microsoft.com/?id=223406</font" target="_blank">http://support.microsoft.com/?id=223406</font</a>>
  > >
  > >
  > > Regards,
  > >
  > > Paul Lynch
  > > MCSE
 >
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: How do you install a COM+ server component on IIS 6.0? 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
embed component in ASP using IIS Web Server - How to create a component with details as name,address,e-mail id,phone,etc.. and embed it in ASP and return the registration number? The component must be created in VB. An .OCX file must be created and embeded in ASP using IIS Server.

Windows Server 2003, IIS6 and the Tools Component - Does anyone know what happened to the tools component (tools.dll) in IIS6? With NT4 and IIS4 you had to install the Option Pack to get this functionality and with Windows 2000 and IIS5 it was installed by default. I am moving an Intranet application...

server side component intercepting WebDAV? - Hi, I'm searching for a way to implement an object that is called, when a WebDAV-request hits my server. My idea was to implement a storage using SQL-Server that's able to be accessed by WebDAV-enabled clients. My hope was a similar way like ASP for..

IIS 6, how do I install on WIndows 2003 server - IIS 6, how do I install on WIndows 2003 server I want to install IIS on my WIndows 2003 server. When I go into ADD/REMOVE under Windows components it is not there, anywhere at all. How do I get it on there? mick2767@hotmail.com

How do Install IIS 6 on my Win2003 server? - How do Install IIS 6 on my Win2003 server? I am getting ready to install Exchange 2003 on my new Windows 2003 server and it wants IIS on there. I went into ADD/REMOVE and WIndows components but there is nothing in there about IIS like there used to....
   Web Hosting and Web Master Forums (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]