My First Kaa Application. Not able to Application CTL. Not getting any error but not able to add Schema -


i learning kaa , trying run first application following
http://kaaproject.github.io/kaa/docs/v0.10.0/programming-guide/your-first-kaa-application/

completed steps. under section, create schema, created 2 schemas required.

  1. data-schema.json

    {      "type": "record",      "name": "datacollection",      "namespace": "org.kaaproject.kaa.schema.mytestapp",      "fields": [          {              "name": "temperature",              "type": "int"          }      ]  } 
  2. configuration-schema.json

    {      "type": "record",      "name": "configuration",      "namespace": "org.kaaproject.kaa.schema.mytestapp",      "fields": [          {              "name": "sampleperiod",              "type": "int",              "by_default": 1          }      ]  } 

i created , tried upload them mentioned in step 3 under section "create schema". then, tried follow step 4, 5 , 6 under same section. step 4, 5 , 6 "adding log schema".

in step 6, should below fqn existing type org.kaaproject.kaa.schema.mytestapp.datacollection

this missing. should added existing type when performed step 1, 2 , 3 under "create schema" section. not getting error , it's not adding.

i read because of similar fqn present. tried various combination it's not working.

what missing or doing wrong?


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -