[Fiware-lab-help] FIWARE: localhost - Access-Control-Allow-Headers

Weslan Rezende weslan.rezende at gmail.com
Tue Dec 5 14:46:02 CET 2017


HI, i'm trying to use orion on a localhost. I installed is as follows:
mongo:
    image: mongo:3.4
    command: --nojournal
orion:
    image: fiware/orion
    links:
        - mongo
    ports:
        - "1026:1026"
    command: -dbhost mongo -corsOrigin __ALL

and i used the command: docker-compose up
this solved my problems with the get method, but other operations like post
are returning me control-access-allow-header.
How do i solve this problem?

I'm using: javascript, jQuery.

orion is installed: localhost:1026
my aplication: localhost:63342

Function post->

function postEntities() {
    var settings = {
        "async": true,
        "url": "http://localhost:1026/v2/entities/",
        "method": "POST",
        "headers": {
            "content-type": "application/json",
            "cache-control": "no-cache"
        },
        "data": "{\"id\": \"2\", \"type\": \"teste\", \"nome\":
{\"value\": \"Weslan\", \"type\": \"text\"}}"
    }

    $.ajax(settings).done(function (response) {
        console.log(response);
    });
}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.fiware.org/private/fiware-lab-help/attachments/20171205/3f497efc/attachment.html>


More information about the Fiware-lab-help mailing list

You can get more information about our cookies and privacy policies clicking on the following links: Privacy policy   Cookies policy