내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

CORS Policy Set to Wildcard but still showing restrictions

Avatar

Level 1

Hello All,

I am running into an issue where I am trying to do some testing on my local machine and I have an author and publish server currently running. For testing I have set the CORS policy to be a wildcard so that I can reference AEM components and html from my local machine. The problem is I am still getting the CORS policy restrictions even though I have changed that configuration to "*" for a wildcard to accept everything.

I was wondering if there are any steps I have to take after updating the CORS policy for it to take affect.

Thanks advance!

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 10

I don't see "Access-Control-Allow-Origin" in supported Headers in this configuration

In addition to that, you may uncheck the supports credentials if you plan to access the content anonymously otherwise add more headers like "Access-Control-Allow-Credentials"

In theory wildcard should work, but you may want to create another entry with exact origin as well "localhost:8885" since I haven't tested it with wildcard

원본 게시물의 솔루션 보기

9 답변 개

Avatar

Level 7

Hi,

which kind of issue are you facing? Could you add more details regarding the issue?

Thanks,

Antonio

Avatar

Level 1

I have a standalone HTML file that is referencing the HTML code from AEM and in the console I see that it is unable to be loaded due to CORS restrictions from "null" even though it should allow everything to access the HTML

Avatar

Level 7

Hi,

could you share a screen of the error?

Just to be sure.

Thanks,

Antonio

Avatar

Level 1

error.png

These are the errors I am seeing in console

Avatar

Level 10

The source doesn't have the headers enabled as mentioned in screenshot. Where did you set the wildcard?

Follow this article to enable CORS at server if you are dealing with local apps accessing author/publish without dispatcher as mentioned in your case-

Adobe Experience Manager Help | Understanding Cross-Origin Resource Sharing (CORS) with AEM

Video - Adobe Experience Manager Help | Developing for Cross-Origin Resource Sharing (CORS) with AEM

You don't need dispatcher configs since you access the publish directly.

Avatar

Level 1

HI gauravb10066713,

I have it set up like this:

CORS.png

Avatar

Level 1

A bit confused by the XML examples, where would I find this configuration?

Avatar

정확한 답변 작성자:
Level 10

I don't see "Access-Control-Allow-Origin" in supported Headers in this configuration

In addition to that, you may uncheck the supports credentials if you plan to access the content anonymously otherwise add more headers like "Access-Control-Allow-Credentials"

In theory wildcard should work, but you may want to create another entry with exact origin as well "localhost:8885" since I haven't tested it with wildcard

Avatar

Level 1

Adding Access-Control-Allow-Origin in the supported headers did the trick! Thank you very much for your assistance!