Deployment of a WebService project with libraries

A

Andre Boeder

Hello,

I want to deploy a WebService to our local development server. The
webservice deployment is no problem, but how do I deploy the two class
libraries in my Solution to the test server ?

I guess I have to compile the DLLs, copy them to the test server and
run
regsvr32 - is this correct ?

I currently have a reference to the projects in my webservice project
- not to the dll or something.

Thanks very much,
Andre
 
J

John Wadie

What I understand is that you have a web service that references two .net
assemblies. You can either add a setup project to take care of the
deployment for you, or manually copy the web service files to the new
server, and add the two assemblies to the bin folder of the webservice.
There's no need to register the assemblies with regsvr32, this is only
required for COM DLLs, and will fail if you try it on a managed assembly.

Cheers,
John Wadie
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top