Add Web Service without Visual Stodio .NET

  • Thread starter Thread starter Marcin O.
  • Start date Start date
M

Marcin O.

Hello all,
I have written and compiled 'Web Services", I would like now to install
it on different computer, but I don't have programme Visual Studio .NET on
the second computer. Is the possibilty of installation of of 'Web Service'
on computer without Visual Studio .NET programme and how is??

Grand THX for every help!
 
Create either a virtual directory or a new web site in IIS (using the
Internet Services Manager) and point it to a folder of your choosing. You
should make sure the folder has adequate permissions to serve up as a
website, within your security constraints. Create a /bin folder in the
folder you chose. Then, copy the ASMX file to the folder and the DLL for the
web service to the bin folder. You should now be able to hit the web service
with no problems.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
Author: ADO.NET and XML: ASP.NET on the Edge

****************************************************************************
****
Think Outside the Box!
****************************************************************************
****
 
Marcin O. said:
Hello all,
I have written and compiled 'Web Services", I would like now to install
it on different computer, but I don't have programme Visual Studio .NET on
the second computer. Is the possibilty of installation of of 'Web Service'
on computer without Visual Studio .NET programme and how is??

Grand THX for every help!
I'm assuming (always dangerous) that you have an ASP.NET Web Service.
As a starting point, I believe you'll need the .NET Framework installed on
the target computer. Then, you might try searching through the Visual Studio
help for "deployment scenarios" as a starting place for the actual
deployment process.
Hope this gets you started.
 
Back
Top