user158977
user158977

Reputation: 91

ASMX Web Service

I am just working on .NET for the past six month.I am using VS 2005.I have been assigned a task to test a Web service.I have created a Web service project in VS 2005 IDE and a simple method that returns an ArrayList of employee type.I have the employee table in SQL Server 2005 Standard Edition.

I need to perform the following tasks :


Advanced thanks to all seniors and helping hands.

Upvotes: 1

Views: 385

Answers (1)

Stephen Wrighton
Stephen Wrighton

Reputation: 37850

1) Visual Studio provides a PUBLISH command which will send all the needed files to a location of your choosing.

2) Only if you pay for such a service--but it won't be GOOGLE or MICROSOSFT.

3) Depends on where you're deploying to. But ultimately, it will be either restoring a backup of the DB or you'll need to script your DB out to a file and then run the resulting SQL on your server

4) I don't think you'll find many 'free' servers out there for this purpose. That said, it should not be that hard to repurpose a desktop workstation running XP Professional for testing the service.

Upvotes: 5

Related Questions