Changes between Version 29 and Version 30 of WikiStart
- Timestamp:
- 06/27/19 16:01:36 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v29 v30 8 8 The profilesserver only **serves** profiles, it does not define them. To define profiles, check the geniusweb core pages. 9 9 10 The GeniusWeb core/main page is [https://tracinsy.ewi.tudelft.nl/trac/Genius 2here].10 The GeniusWeb core/main page is [https://tracinsy.ewi.tudelft.nl/trac/GeniusWeb here]. 11 11 12 12 == Installation == … … 58 58 59 59 60 There are java examples available [ https://tracinsy.ewi.tudelft.nl/trac/Genius2ProfilesServer/browser/src/test/java/geniusweb/examples here]. Basically you just open a websocket and read the incoming profile like this (NOTICE: this is using neovisionaries WebSocketAdapter which is an external library; but we recommend the java built-in javax.websocket, see the [https://tracinsy.ewi.tudelft.nl/trac/Genius2ProfilesServer/browser/src/test/java/geniusweb/examples examples])60 There are java examples available [source:src/test/java/geniusweb/examples here]. Basically you just open a websocket and read the incoming profile like this (NOTICE: this is using neovisionaries WebSocketAdapter which is an external library; but we recommend the java built-in javax.websocket, see the [source:src/test/java/geniusweb/examples examples]) 61 61 {{{ 62 62 WebSocketFactory factory = new WebSocketFactory().setConnectionTimeout(5000); … … 90 90 91 91 {{{ 92 svn checkout https://tracinsy.ewi.tudelft.nl/svn/Genius 2ProfilesServer/92 svn checkout https://tracinsy.ewi.tudelft.nl/svn/GeniusWebProfilesServer/ 93 93 }}} 94 94 95 95 Since this is a tomcat web application, you need Eclipse Enterprise edition if you want to run this from Eclipse. 96 Also, to checkout from Eclipse, you need to prepare Eclipse for this. Check https://tracinsy.ewi.tudelft.nl/trac/Genius 2/wiki/WikiStart96 Also, to checkout from Eclipse, you need to prepare Eclipse for this. Check https://tracinsy.ewi.tudelft.nl/trac/GeniusWeb/wiki/WikiStart 97 97 98 98 It is maven based so you only need maven to compile the code.