Changes between Version 167 and Version 168 of WikiStart


Ignore:
Timestamp:
04/25/19 09:19:12 (5 years ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v167 v168  
    7272We 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.
    7373For 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
     75There 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||
    7482
    7583== BidSpace
     
    367375 * Eclipse will halt server execution and switch to debugging when it hits your breakpoint
    368376 * 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.
    370378
    371379= Genius2 sources =