• Quick Start:
        # start semantic-jserv data service
        docker pull odysz/jserv-quiz
        docker run --name jserv -dp 8080:8080 odysz/jserv-quiz
    
        # start web server
        docker pull odysz/anclient-examples
        docker run --name anclient -dp 80:80 odysz/anclient-examples
    URL Sample: http://192.168.0.201/react-quiz/quizzes.html
  • Troubleshootings

    Note: don't use --rm, currently we haven't yet mounted volume to persist sqlite DB.

    This is userful to test the data service connecion:
    http://locahost:8080/jserv-quiz/login.serv11
    The an-quiz service should return this json data:
        {"type": "io.odysz.semantic.jprotocol.AnsonMsg",
         "code": "exSemantic", "opts": null, "port": "session",
         "header": null,
         "body": [{"type": "io.odysz.semantic.jprotocol.AnsonResp",
            "rs": null, "parent": "io.odysz.semantic.jprotocol.AnsonMsg", "a": null, "conn": null,
            "m": "No envelope is avaliable.", "map": null
         }],
         "version": "1.0", "seq": 0
        }
  • This application is powered by React & Material UI