Deploying webservice

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Peter Schmitz

    Deploying webservice

    Hi,

    I just created my first .net web service and now I want to create an
    installation program for it. That's why I added a WebSetup project to my
    current solution and added the primary output of my web service project to it.
    But when I run this setup on a different computer (with IIS of course) the
    whole thing does not seem to work properly: Only the main Dll of my service
    is copied - and AFAIK this isn't sufficient. So:

    - What files exactly are needed to run my webservice? And what are the
    correct locations for them?

    - Isn't there any possibility to automatically generate a matching setup for
    a .net webservice?

    Thanks a lot
    Peter
  • Pete Wood

    #2
    Re: Deploying webservice

    Peter... assuming you're .NET framework is correctly installed on the target
    system, you can just XCOPY the files (ASMXs and DLLs) to the target
    directory and life should be good.

    --
    Pete Wood
    Email me at http://www.webserviceshelp.org for more help
    _______________ _______________ _______________ ____________


    "Peter Schmitz" <PeterSchmitz@d iscussions.micr osoft.com> wrote in message
    news:A094F382-8DD2-4B52-AB1B-F4A24450BAB9@mi crosoft.com...[color=blue]
    > Hi,
    >
    > I just created my first .net web service and now I want to create an
    > installation program for it. That's why I added a WebSetup project to my
    > current solution and added the primary output of my web service project to
    > it.
    > But when I run this setup on a different computer (with IIS of course) the
    > whole thing does not seem to work properly: Only the main Dll of my
    > service
    > is copied - and AFAIK this isn't sufficient. So:
    >
    > - What files exactly are needed to run my webservice? And what are the
    > correct locations for them?
    >
    > - Isn't there any possibility to automatically generate a matching setup
    > for
    > a .net webservice?
    >
    > Thanks a lot
    > Peter[/color]


    Comment

    Working...