我有自己的Orion Context Broker实例,我使用IDAS和我自己的软件服务。我创建了一个实体,我可以毫无问题地更新/查询信息。当我订阅实体以在值发生变化时通知我时,我得到以下有效负载:
* Status Code: 200
{
"subscribeResponse" : {
"subscriptionId" : "555c979c98add18cc3e1839b",
"duration" : "P1M",
"throttling" : "PT5S"
}
}
并让rest api听取我在订阅请求时指示的主机和端口,我收到该订阅的通知:
[20/May/2015 10:22:59] "POST / HTTP/1.1" 200
问题在于,当我尝试更新contextbroker上的值时,我不会收到有关该更改值的通知。
我尝试使用accumulator-script.py并得到相同的"错误"。
我在瓶子框架中使用我创建的python脚本:
import bottle
DEFAULT = {'url': '/'}
@bottle.post(DEFAULT['url'] )
def post_default():
print str(bottle.request.json)
if __name__ == '__main__':
bottle.run(host='188.1??.??.??', port=????, debug=True, reloader=True)
(由于安全问题,我隐藏了主机和端口)
修改
通过以下方式使用Figway的脚本SetSubscription.py订阅contextBroker:
python2.7 SetSubscription.py [entity][attribute][server url]
使用我自己的脚本更新实体:
import json
import urllib
import urllib2
BASE_URL = 'http://188.?.?.?:????'
UPDATE_URL = BASE_URL+'/ngsi10/updateContext'
HEADERS = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Fiware-Service': 'fiwaretestapi'
}
UPDATE_EXAMPLE = {
"contextElements": [
{
"type": "",
"isPattern": "false",
"id": "bustest3",
"attributes": [
{
"name": "temperature",
"type": "int",
"value": "19"
}
]
}
],
"updateAction": "APPEND"
}
def post(url, data):
""""""
req = urllib2.Request(url, data, HEADERS)
f = urllib2.urlopen(req)
result = json.loads(f.read())
f.close()
return result
if __name__ == "__main__":
print post(UPDATE_URL, json.dumps(UPDATE_EXAMPLE))
它的输出:
[{u'contextElement': {u'attributes': [{u'type': u'int', u'name': u'temperature', u'value': u''}], u'type': u'thing', u'id': u'bustest3', u'isPattern': u'false'}, u'statusCode': {u'code': u'200', u'reasonPhrase': u'OK'}}]}
{u'contextResponses': [{u'contextElement': {u'attributes': [{u'type': u'string', u'name': u'att_name', u'value': u'value', u'metadatas': [{u'type': u'ISO8601', u'name': u'TimeInstant', u'value': u'2015-05-20T14:36:45.752248Z'}]}, {u'type': u'int', u'name': u'temperature', u'value': u'19', u'metadatas': [{u'type': u'ISO8601', u'name': u'TimeInstant', u'value': u'2015-05-20T14:36:45.751958Z'}]}, {u'type': u'ISO8601', u'name': u'TimeInstant', u'value': u'2015-05-20T14:36:45.751958Z'}], u'type': u'thing', u'id': u'bustest3', u'isPattern': u'false'}, u'statusCode': {u'code': u'200', u'reasonPhrase': u'OK'}}]}
我不知道在ContextBroker中有更新,但我的问题已经发生在一周前了。因此我使用的是0.20。
修改
这是我使用SetSubscription.py进行的确切请求:
python2.7 SetSubscription.py bustest3 temperature http://188.???.??.???:8082
这是我订阅后获得的有效负载:
* Asking to http://188.???.??.???:1026/v1/subscribeContext
* Headers: {'Fiware-Service': 'fiwaretestapi', 'content-type': 'application/json', 'accept': 'application/json', 'X-Auth-Token': 'NULL'}
* Sending PAYLOAD:
{
"reference": "http://188.???.??.???:8082",
"throttling": "PT5S",
"entities": [
{
"type": "",
"id": "bustest3",
"isPattern": "false"
}
],
"attributes": [
"temperature"
],
"duration": "P1M",
"notifyConditions": [
{
"condValues": [
"temperature"
],
"type": "ONCHANGE"
}
]
}
...
* Status Code: 200
{
"subscribeResponse" : {
"subscriptionId" : "555ef47298add18cc3e1839d",
"duration" : "P1M",
"throttling" : "PT5S"
}
}
在另一部分我正在收听端口,当我订阅时,我得到了:
"POST / HTTP/1.1" 200 0
{u'originator': u'localhost', u'subscriptionId': u'???????????????????????', u'contextResponses': [{u'contextElement': {u'attributes': [{u'type': u'int', u'name': u'temperature', u'value': u'100', u'metadatas': [{u'type': u'ISO8601', u'name': u'TimeInstant', u'value': u'2015-05-20T14:36:45.751958Z'}]}], u'type': u'thing', u'id': u'bustest3', u'isPattern': u'false'}, u'statusCode': {u'code': u'200', u'reasonPhrase': u'OK'}}]}
188.???.??.??? - - [22/May/2015 05:20:50] "POST / HTTP/1.1" 200 0
答案 0 :(得分:1)
我想通了,我正在伪造将'Fiware-ServicePath':'/'标头添加到update_context脚本中,并且因为它没有通过。它现在正在工作,REST API正在获得更改的值。
感谢您的支持:-)
答案 1 :(得分:0)
比较您用来执行updateContext的Fiware服务:
HEADERS = {
...
'Fiware-Service: 'my_service'
}
以及用于创建订阅的那个:
Headers: {'Fiware-Service': 'fiwaretestapi', ...}
两者都不同。这可能是导致问题的原因。