1)Open Web.config file from the following location:
Program Files (x86)\Adobe\FrameMakerPublishingServer2017\www
2)To enable Windows authentication over HTTP, locate the following lines and uncomment them:
<endpoint address="fmserver/v1" binding="webHttpBinding" contract="Server.IWebService" behaviorConfiguration="webhttp" bindingConfiguration="securehttp" />
<endpoint address="" binding="webHttpBinding" contract="Server.IWebPage" behaviorConfiguration="webhttp" bindingConfiguration="securehttp" />
3)To enable Windows authentication over HTTPS, locate the following lines and uncomment them:
<endpoint address="fmserver/v1" binding="webHttpBinding" contract="Server.IWebService" behaviorConfiguration="webhttp" bindingConfiguration="securehttps" />
<endpoint address="" binding="webHttpBinding" contract="Server.IWebPage" behaviorConfiguration="webhttp" bindingConfiguration="securehttps" />
note: By default the code is commented using the <!-- and --> tags. Remove the comment tags to use the code in the Web.config file.
4)In the Internet Information Services (IIS) Manager, go to Sites > fmps14, select Authentication (under IIS) and enable Windows Authentication.
note: If you do not enable authentication, there is no need to pass the authentication-related parameters while accessing FMPS through APIs. For more information, see Working with FMPS using the APIs.