Changes between Version 167 and Version 168 of WikiStart
- Timestamp:
- 04/25/19 09:19:12 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v167 v168 72 72 We use IRI's (internationalized resource identifier, which looks similar to the well known URLs you use in your web browser) to refer to them. These IRI's are packed inside objects like the PartyRef, ProtocolRef, ProfileRef, DomainRef so that it is clear what type of object the IRI is referring to. 73 73 For example, when your party is initialized, it usually receives a Settings object that contains a ProfileRef. The intention is that the party fetches the actual profile from the web, using the IRI in the ProtocolRef. See the example agent below for an example. 74 75 There are a number of schemes used for references: 76 77 ||scheme||used with||example||comments|| 78 ||http:||party||http://localhost:8080/partiesserver/run/randompyparty-1.0.0|| || 79 ||ws:||profile||ws://localhost:8080/profilesserver/websocket/get/jobs/jobs1.json|| || 80 ||file:||profile||file:src/test/settings.json ||gives file relative to local current working dir|| 81 ||classpath:||party||classpath:genius2.exampleparties.randomparty.RandomParty||must be in classpath|| 74 82 75 83 == BidSpace … … 367 375 * Eclipse will halt server execution and switch to debugging when it hits your breakpoint 368 376 * time-outs may still be enforced while you are debugging but you avoid the Tomcat session time-out. 369 377 * With stand-alone runner, your parties are run together in a single classloader. This is different from running in the partiesserver. 370 378 371 379 = Genius2 sources =