Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 610 Bytes

how-to-enable-cors-for-the-qlm-license-server.md

File metadata and controls

19 lines (14 loc) · 610 Bytes

How to enable CORS for the QLM License Server

To enable CORS for the QLM License Server, edit the web.config file of the License Server and add the following fragments in the system.webServer section:

<httpProtocol>
   <customHeaders>
      <add name="Access-Control-Allow-Headers" value="accept, content-type" />
      <add name="Access-Control-Allow-Origin" value="*" />
      <add name="Access-Control-Allow-Methods" value="POST, GET, OPTIONS" />
   </customHeaders>
</httpProtocol>

Example:

mceclip0.png