Camunda BPM JS SDKのan exampleがデフォルトのhttp://localhost:8080ドメインに展開されています。私は自分のドメインでその例を実行したいと思います。単純なPHPまたはプレーンなHTMLページを実行しているとhttp://localhost:8000と言ってください。当然私はNo 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8000' is therefore not allowed access
号を受け取る。私はthis snippetを$CATALINA_HOME/conf/web.xml
に追加し、Tomcatを再起動します。そして、これはまったく効果がないように見えます。私は追加しようとしましたCamunda Form JS SDKでCORSの問題
<init-param>
<param-name>cors.allowed.origins</param-name>
<param-value>*</param-value>
</init-param>
まだ効果がありません。
誰かが他のドメインでJS SDKの使用を許可するように変更する設定を提案できますか?