Changes between Version 14 and Version 15 of WikiStart


Ignore:
Timestamp:
03/11/19 15:13:32 (6 years ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v14 v15  
    2020After installing and starting, go to [http://localhost:8080/profilesserver] to see if it works.
    2121
    22 To download a profile in your agent, check the examples in  [https://tracinsy.ewi.tudelft.nl/trac/Genius2ProfilesServer/browser/src/test/java/genius2/examples]. Basically you just open a websocket and read the incoming profile like this
     22
     23= Downloading a profile programatically
     24To download a profile in your agent, create a websocket and fetch the profile.
     25
     26
     27There are java examples available [https://tracinsy.ewi.tudelft.nl/trac/Genius2ProfilesServer/browser/src/test/java/genius2/examples here]. Basically you just open a websocket and read the incoming profile like this
    2328{{{
    2429WebSocketFactory factory = new WebSocketFactory().setConnectionTimeout(5000);
     
    3540
    3641
    37 You can also download this source repository (you don't need this if you just want to use the profilesserver)
     42== Using the source code ==
     43You can download the source repository. Note that you don't need this if you just want to use the profiles server.
    3844
    3945{{{
    4046svn checkout https://tracinsy.ewi.tudelft.nl/svn/Genius2ProfilesServer/
    4147}}}
    42 Since this is a tomcat web application, you need Eclipse Enterprise edition if you want to use this from Eclipse.
     48
     49Since this is a tomcat web application, you need Eclipse Enterprise edition if you want to run this from Eclipse.
    4350Also, to checkout from Eclipse, you need to prepare Eclipse for this. Check https://tracinsy.ewi.tudelft.nl/trac/Genius2/wiki/WikiStart
    4451
     52It is maven based so you only need maven to compile the code.
    4553
    46 == Profile structure ==