Red Hat Bugzilla – Bug 1164106
RTGov "quickstarts/overlord/rtgov/activityclient/" quickstart only demonstrates insertion of transaction with Context type as "Message"
Last modified: 2015-11-02 03:12:31 EST
Document URL: - NA Section Number and Name: - NA Describe the issue: - The current FSW 6.0.0 RTGov quickstart of "quickstarts/overlord/rtgov/activityclient/" only shows the insertion of transactions with Context type as "Message". e.g. quickstarts/overlord/rtgov/activityclient/src/main/resources/txns/OrderJam.json ~~~ ... [{ "type":"RequestReceived", "interface":"{urn:switchyard-quickstart-demo:orders:1.0}OrderService", "operation":"submitOrder", "serviceType":"{urn:switchyard-quickstart-demo:orders:0.1.0}OrderService", "messageType":"{urn:switchyard-quickstart-demo:orders:1.0}submitOrder", "context":[{ "value":"{ID}-1", "type":"Message" },{ "value":"{ID}" }], "properties":{ "item":"JAM", "customer":"Fred" } ... ~~~ - However, due to the current limitation in the Call Trace gadget (as filed in this Feature Request [1]) , it only shows the trace of transactions which has used Context type of "Conversation" . Hence, I think our quickstart also should be updated to include transactions of other Context type too. For an example see these transactions as per the master branch [2] of the same quickstart. ~~~ ... [{ "type":"RequestReceived", "interface":"{urn:switchyard-quickstart-demo:orders:1.0}OrderService", "operation":"submitOrder", "serviceType":"{urn:switchyard-quickstart-demo:orders:0.1.0}OrderService", "messageType":"{urn:switchyard-quickstart-demo:orders:1.0}submitOrder", "context":[{ "value":"{ID}-1", "type":"Message" },{ "value":"{ID}", "type": "Conversation" }], "properties":{ "item":"BUTTER", "customer":"{CUSTOMER}" } ... ~~~ Can you please update the quickstarts in future releases of RTGov quickstarts? [1] https://bugzilla.redhat.com/show_bug.cgi?id=1164086 [2] https://github.com/Governance/rtgov/blob/master/samples/jbossas/activityclient/src/main/resources/txns/OrderButter.json Suggestions for improvement: - Please update the "quickstarts/overlord/rtgov/activityclient/" quickstart as per the master branch [1] . [1] https://github.com/Governance/rtgov/blob/master/samples/jbossas/activityclient/src/main/resources/txns/ Additional information: - NA