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:
Comments
0 comments
Please sign in to leave a comment.