How Create Setup For Window Application with WebService in .NET

N

Neeraj

Hi
I have an windows based application which is using the webservice.
I want to create the One Setup which not only install the
Application it should install the Webservice on given Virtual
Directeriy. How can i merge to differnt thing in one setup
Till Now i am creating two setup one for application and Other For
WebSetup.

If any one have idea please share with me

thanks
Neeraj
 
R

RobinS

Assuming you mean a Windows Forms application when you say "windows based
application", and assuming the webservice is not dependent on the WinForms
app
being present, you could use ClickOnce. Deploy the webservice as a
prerequisite
using the Bootstrapper, and deploy the application using ClickOnce.

The prerequisite can be a .exe installation package, or msi, or even just a
..Net program you want to run. You can use the bootstrapper manifest
generator
to add your own entries to the prerequisite list in Visual Studio.

The other thing we have considered is to include the webservice installation
in the application deployment, and then have the application actually
check for the necessity to install the webservice and do so if needed.

Good luck.
Robin S.
GoldMail, Inc.
 

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