Web-Server Configuration

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

    Web-Server Configuration

    I have developed my first Webservice on local machine. Now I want to store it
    to our webserver. I copied the AMSX File to a Web Folder on Server. But it
    does not work. Error 401 when calling it through URL.
    So I looked up that on my machine the Web configuration knows all the .NET
    Framework File Extension Mappings like .asmx... But the Webserver that does
    have .NETv1.1 installed does not have those Mappings.

    Do I have to add each .NET File Mapping manually????

    Markus
  • MarkusPoehler

    #2
    RE: Web-Server Configuration

    Sorry its not Error 401 but 404 "not found".

    "MarkusPoeh ler" wrote:
    [color=blue]
    > I have developed my first Webservice on local machine. Now I want to store it
    > to our webserver. I copied the AMSX File to a Web Folder on Server. But it
    > does not work. Error 401 when calling it through URL.
    > So I looked up that on my machine the Web configuration knows all the .NET
    > Framework File Extension Mappings like .asmx... But the Webserver that does
    > have .NETv1.1 installed does not have those Mappings.
    >
    > Do I have to add each .NET File Mapping manually????
    >
    > Markus[/color]

    Comment

    • Simon Svensson

      #3
      Re: Web-Server Configuration

      Check out
      %SystemRoot%\Mi crosoft.Net\Fra mework\v1.1.432 2\aspnet_regiis .exe that
      will do whatever you commands it to do. Running "aspnet_reg iis -i" would
      register ASP.NET in your IIS. Check "aspnet_reg iis -?" for more options.

      This problem is often caused by installing IIS after you installed .NET
      Framework.

      MarkusPoehler wrote:[color=blue]
      > Sorry its not Error 401 but 404 "not found".
      >
      > "MarkusPoeh ler" wrote:
      >
      >[color=green]
      >>I have developed my first Webservice on local machine. Now I want to store it
      >>to our webserver. I copied the AMSX File to a Web Folder on Server. But it
      >>does not work. Error 401 when calling it through URL.
      >>So I looked up that on my machine the Web configuration knows all the .NET
      >>Framework File Extension Mappings like .asmx... But the Webserver that does
      >>have .NETv1.1 installed does not have those Mappings.
      >>
      >>Do I have to add each .NET File Mapping manually????
      >>
      >>Markus[/color][/color]

      Comment

      Working...