Requirements

These are the basic server requirements for Infor Operations and Regulations Rest Services:

  • Windows Server 2016, 2019, or 2022 with latest service pack
  • IIS 10.0
  • .NET 4.8
  • Tested Oracle or SQL Server connection to your Infor Operations and Regulations database
  • Infor Operations and Regulations
  • Rest Services should not be installed on the same server as WebDAV publishing, because WebDAV will intercept PUT, POST, and DELETE requests.

    If you do install Rest Services on the same server as WebDAV, you can add this code to the web.config file for the Rest Services site to override the default WebDAV behavior:

    <system.webServer>
        <modules>
            <remove name="WebDAVModule" />
        </modules>
        <handlers>
            <remove name="WebDAV" />
        </handlers>
    </system.webServer>

    If editing web.config doesn't work, you can disable WebDAV in IIS. Select Default Web Site in the left panel, then double-click WebDAV Authoring Rules. In the right panel, click Disable WebDAV.