Hi Friedrich
available for Magritt3 one can find:
talkJson: talkTitle
<get>
<produces: 'application/json'>
<path: '/talk?title={talkTitle}'>
| talk |
talk := self talkFromTitle: talkTitle.
self requestContext respond: [ :response |
response
contentType: WAMimeType applicationJson;
nextPutAll: talk asJson ]
So it seems this should produce come Json format. Does that work for
anyone?