[jira] [Updated] (ARTEMIS-4027) Cannot access management API due to CORS problems (403)

2022-10-04 Thread daves (Jira)


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-4027?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

daves updated ARTEMIS-4027:
---
Attachment: f2.JPG
f1.JPG

> Cannot access management API due to CORS problems (403)
> ---
>
> Key: ARTEMIS-4027
> URL: https://issues.apache.org/jira/browse/ARTEMIS-4027
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>  Components: API
>Affects Versions: 2.25.0
>Reporter: daves
>Priority: Major
> Attachments: artemis.log, consoleError.JPG, etc.zip, f1.JPG, f2.JPG, 
> options.JPG
>
>
> I try to access the management API from a client app running in chrome.
> This does not work because the preflight check fails.
> OPTIONS request:
>  
> {code:java}
> fetch("http://localhost:8161/console/jolokia/?maxDepth=7&maxCollectionSize=5&ignoreErrors=false&canonicalNaming=false";,
>  {
>   "headers": {
>     "accept": "*/*",
>     "accept-language": "en-US,en;q=0.9",
>     "sec-fetch-dest": "empty",
>     "sec-fetch-mode": "cors",
>     "sec-fetch-site": "cross-site"
>   },
>   "referrerPolicy": "strict-origin-when-cross-origin",
>   "body": null,
>   "method": "OPTIONS",
>   "mode": "cors",
>   "credentials": "omit"
> });
>  
> {code}
>  
> The request fails with a 403 not authenticated... which is strange since 
> preflight checks must not be authenticated.
> !options.JPG!
>  
> I tried to configure CORS in the jolokia-access.xml file like so:
>  
>  
> {code:java}
> 
>    
>      
>      *://* 
>      
>      
>           
>  {code}
>  
>  
> I also tried to specify the URL and port of my application explicitly. But 
> this did not work either.
>  
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (ARTEMIS-4027) Cannot access management API due to CORS problems (403)

2022-10-04 Thread daves (Jira)


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-4027?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

daves updated ARTEMIS-4027:
---
Attachment: artemis.log

> Cannot access management API due to CORS problems (403)
> ---
>
> Key: ARTEMIS-4027
> URL: https://issues.apache.org/jira/browse/ARTEMIS-4027
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>  Components: API
>Affects Versions: 2.25.0
>Reporter: daves
>Priority: Major
> Attachments: artemis.log, consoleError.JPG, etc.zip, options.JPG
>
>
> I try to access the management API from a client app running in chrome.
> This does not work because the preflight check fails.
> OPTIONS request:
>  
> {code:java}
> fetch("http://localhost:8161/console/jolokia/?maxDepth=7&maxCollectionSize=5&ignoreErrors=false&canonicalNaming=false";,
>  {
>   "headers": {
>     "accept": "*/*",
>     "accept-language": "en-US,en;q=0.9",
>     "sec-fetch-dest": "empty",
>     "sec-fetch-mode": "cors",
>     "sec-fetch-site": "cross-site"
>   },
>   "referrerPolicy": "strict-origin-when-cross-origin",
>   "body": null,
>   "method": "OPTIONS",
>   "mode": "cors",
>   "credentials": "omit"
> });
>  
> {code}
>  
> The request fails with a 403 not authenticated... which is strange since 
> preflight checks must not be authenticated.
> !options.JPG!
>  
> I tried to configure CORS in the jolokia-access.xml file like so:
>  
>  
> {code:java}
> 
>    
>      
>      *://* 
>      
>      
>           
>  {code}
>  
>  
> I also tried to specify the URL and port of my application explicitly. But 
> this did not work either.
>  
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (ARTEMIS-4027) Cannot access management API due to CORS problems (403)

2022-10-04 Thread daves (Jira)


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-4027?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

daves updated ARTEMIS-4027:
---
Attachment: consoleError.JPG

> Cannot access management API due to CORS problems (403)
> ---
>
> Key: ARTEMIS-4027
> URL: https://issues.apache.org/jira/browse/ARTEMIS-4027
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>  Components: API
>Affects Versions: 2.25.0
>Reporter: daves
>Priority: Major
> Attachments: consoleError.JPG, etc.zip, options.JPG
>
>
> I try to access the management API from a client app running in chrome.
> This does not work because the preflight check fails.
> OPTIONS request:
>  
> {code:java}
> fetch("http://localhost:8161/console/jolokia/?maxDepth=7&maxCollectionSize=5&ignoreErrors=false&canonicalNaming=false";,
>  {
>   "headers": {
>     "accept": "*/*",
>     "accept-language": "en-US,en;q=0.9",
>     "sec-fetch-dest": "empty",
>     "sec-fetch-mode": "cors",
>     "sec-fetch-site": "cross-site"
>   },
>   "referrerPolicy": "strict-origin-when-cross-origin",
>   "body": null,
>   "method": "OPTIONS",
>   "mode": "cors",
>   "credentials": "omit"
> });
>  
> {code}
>  
> The request fails with a 403 not authenticated... which is strange since 
> preflight checks must not be authenticated.
> !options.JPG!
>  
> I tried to configure CORS in the jolokia-access.xml file like so:
>  
>  
> {code:java}
> 
>    
>      
>      *://* 
>      
>      
>           
>  {code}
>  
>  
> I also tried to specify the URL and port of my application explicitly. But 
> this did not work either.
>  
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (ARTEMIS-4027) Cannot access management API due to CORS problems (403)

2022-10-04 Thread daves (Jira)


 [ 
https://issues.apache.org/jira/browse/ARTEMIS-4027?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

daves updated ARTEMIS-4027:
---
Attachment: etc.zip

> Cannot access management API due to CORS problems (403)
> ---
>
> Key: ARTEMIS-4027
> URL: https://issues.apache.org/jira/browse/ARTEMIS-4027
> Project: ActiveMQ Artemis
>  Issue Type: Bug
>  Components: API
>Affects Versions: 2.25.0
>Reporter: daves
>Priority: Major
> Attachments: etc.zip, options.JPG
>
>
> I try to access the management API from a client app running in chrome.
> This does not work because the preflight check fails.
> OPTIONS request:
>  
> {code:java}
> fetch("http://localhost:8161/console/jolokia/?maxDepth=7&maxCollectionSize=5&ignoreErrors=false&canonicalNaming=false";,
>  {
>   "headers": {
>     "accept": "*/*",
>     "accept-language": "en-US,en;q=0.9",
>     "sec-fetch-dest": "empty",
>     "sec-fetch-mode": "cors",
>     "sec-fetch-site": "cross-site"
>   },
>   "referrerPolicy": "strict-origin-when-cross-origin",
>   "body": null,
>   "method": "OPTIONS",
>   "mode": "cors",
>   "credentials": "omit"
> });
>  
> {code}
>  
> The request fails with a 403 not authenticated... which is strange since 
> preflight checks must not be authenticated.
> !options.JPG!
>  
> I tried to configure CORS in the jolokia-access.xml file like so:
>  
>  
> {code:java}
> 
>    
>      
>      *://* 
>      
>      
>           
>  {code}
>  
>  
> I also tried to specify the URL and port of my application explicitly. But 
> this did not work either.
>  
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)