Changes between Version 40 and Version 41 of WikiStart
- Timestamp:
- 08/13/19 10:27:42 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v40 v41 3 3 This is the homepage of the GeniusWeb run server. 4 4 5 The GeniusWeb main page is [https://tracinsy.ewi.tudelft.nl/ trac/Genius2 here].5 The GeniusWeb main page is [https://tracinsy.ewi.tudelft.nl/pubtrac/Genius2 here]. 6 6 7 7 The run server can run sessions and tournaments as specified. … … 28 28 * Press the "Start Session" button. 29 29 30 [[Image(https://tracinsy.ewi.tudelft.nl/ trac/Genius2RunServer/raw-attachment/wiki/WikiStart/snap.png, 90%)]]30 [[Image(https://tracinsy.ewi.tudelft.nl/pubtrac/Genius2RunServer/raw-attachment/wiki/WikiStart/snap.png, 90%)]] 31 31 32 32 The information made available about the running session is determined by the protocol. For SAOP, there are currently two ways to check the progress on the running session … … 51 51 * Press the "Start Tournament" button. 52 52 53 [[Image(https://tracinsy.ewi.tudelft.nl/ trac/Genius2RunServer/raw-attachment/wiki/WikiStart/runtour.png, 60%)]]53 [[Image(https://tracinsy.ewi.tudelft.nl/pubtrac/Genius2RunServer/raw-attachment/wiki/WikiStart/runtour.png, 60%)]] 54 54 55 55 == The source code … … 70 70 This section describes the [source:/src/main/java/geniusweb/runserver/RunNego.java RunNego] service. It is available at {{{http:..:8080//runserver/run}}}. 71 71 This service starts up and runs a complete Nego (session or tournament) when it is accessed (http get or post). 72 To start a negotiation, the http get must include a JSON-serialized [https://tracinsy.ewi.tudelft.nl/ trac/Genius2/browser/protocol/src/main/java/geniusweb/protocol/NegoSettings.java geniusweb.protocol.NegoSettings] object. All details are in the javadocs, here we discuss it only briefly.72 To start a negotiation, the http get must include a JSON-serialized [https://tracinsy.ewi.tudelft.nl/pubtrac/Genius2/browser/protocol/src/main/java/geniusweb/protocol/NegoSettings.java geniusweb.protocol.NegoSettings] object. All details are in the javadocs, here we discuss it only briefly. 73 73 74 74 After session is started, popup shows the negotiation ID. The ID starts with the name of the protocol (SAOP, APP) followed by a serial number. … … 130 130 131 131 Since this is a tomcat web application, you need Eclipse Enterprise edition if you want to run this from Eclipse. 132 Also, to checkout from Eclipse, you need to prepare Eclipse for this. Check https://tracinsy.ewi.tudelft.nl/ trac/GeniusWeb132 Also, to checkout from Eclipse, you need to prepare Eclipse for this. Check https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWeb 133 133 134 134 It is maven based so you only need maven to compile the code.