1

Orion Context Broker から情報を取得するためのオペレーターを開発しました。

ログインしているときは完全に機能しますが、シークレット ウィンドウに (埋め込まれた URL を使用して) 匿名で入力しようとすると、オペレーターは次のエラーを発生させます。

(画像へのリンク): http://i.stack.imgur.com/jxMkr.png

コンソールからのスクリーンショット

これはコードです:

var doInitialSubscription = function doInitialSubscription() {

        this.subscriptionId = null;

        this.ngsi_server = MashupPlatform.prefs.get('ngsi_server');
        this.ngsi_proxy = MashupPlatform.prefs.get('ngsi_proxy');
        this.connection = new NGSI.Connection(this.ngsi_server, {
            ngsi_proxy_url: this.ngsi_proxy
        });

        console.log("Send initial subscription");

        var types = ['SMARTMETER'];
        var entityIdList = [];
        var entityId;
        entityId = {
            id: '.*',
            type: 'SMARTMETER',
            isPattern: true
        };
        entityIdList.push(entityId);
        var attributeList = null;
        var duration = 'PT3H';
        var throttling = null;
        var notifyConditions = [{
            'type': 'ONCHANGE',
            'condValues': condValues
        }];
        var options = {
            flat: true,
            onNotify: handlerReceiveEntity.bind(this),
            onSuccess: function (data) {
                console.log("Subscription success ID: "+data.subscriptionId);
                this.subscriptionId = data.subscriptionId;
                this.refresh_interval = setInterval(refreshNGSISubscription.bind(this), 1000 * 60 * 60 * 2);  // each 2 hours
                window.addEventListener("beforeunload", function () {
                    this.connection.cancelSubscription(this.subscriptionId);
                }.bind(this));
            }.bind(this),
            onFailure: function(data) {
                console.log(data);
            }

        };
        console.log("Now creating subscription...");
        this.connection.createSubscription(entityIdList, attributeList, duration, throttling, notifyConditions, options);
    };

何が悪いのか考えていますか?

4

1 に答える 1

1

質問に対するユーザーのコメントによると、Orion 0.19.0 に更新すると (詳細はこちらの DB アップグレード手順に従ってください)、問題が解決します。

于 2015-03-03T19:42:37.127 に答える