We use proprietary and third party´s cookies to improve your experience and our services, identifying your Internet Browsing preferences on our website; develop analytic activities and display advertising based on your preferences. If you keep browsing, you accept its use. You can get more information on our Cookie Policy
Cookies Policy
Ask Your Question

koff's profile - activity

2019-10-19 18:07:40 +0200 received badge  Taxonomist
2016-11-14 08:10:17 +0200 received badge  Notable Question (source)
2016-11-14 08:10:17 +0200 received badge  Famous Question (source)
2016-09-15 08:16:03 +0200 received badge  Popular Question (source)
2016-08-25 03:17:47 +0200 commented question can't display the POI from ContextBroker to MapViewer

I changed config at "Use the FIWARE credentials of the user" to false, and displayed PoI on the Map. Thanks.

2016-08-24 08:32:22 +0200 asked a question can't display the POI from ContextBroker to MapViewer

I'm trying to connect the OrionContextBroker and Wirecloud MapViewer widget in the local environment without the FIWARE Lab. I want to display the POI from ContextBroker to MapViewer, but nothing appears in the map.

The following Entity is entered in the OrionContextBroker:

curl localhost:1026/v1/contextEntities/City1 -s -S --header 'Accept: application/json' | python -mjson.tool { "contextElement": { "attributes": [

        {
            "name": "Latitud", 
            "type": "float", 
            "value": "139.692101"
        }, 
        {
            "name": "Longitud", 
            "type": "float", 
            "value": "35.689634"
        }
    ], 
    "id": "City1", 
    "isPattern": "false", 
    "type": "City"
}, 
"statusCode": {
    "code": "200", 
    "reasonPhrase": "OK"
}

}

The configuration of the NGSISource operator is:

NGSI server URL : http://localhost:1026/

NGSI proxy URL : http://localhost:3000

Use the FIWARE credentials of the user : true

NGSI scope : /

NGSI entity types : City

Monitored NGSI Attributes : Latitud, Longitud

The configuration of the NGSI Entity To PoI operator is:

Coordinates attribute : Latitud, Longitud

NGSI source operator outputs the following error:

“Error creating subscription in the context broker server: Unexpected response from WireCloud's proxy”

And Browser Console outputs the followingerror:

http://localhost/cdp/http/localhost:1... Failed to load resource: the server responded with a status of 422 (Unknown Status Code)

I'm guessing that there is a cause to NGSIProxy. Do you know something cause? Please help me.