This is Server Protocol WAMP Component, you need to drop this component in the form and select a TsgcWebSocketServer Component using Server Property.
CallResult: When the execution of the remote procedure finishes successfully, the server responds by sending a message with the result.
CallId: this is the ID generated by client when request a call to a procedure
Result: is the result, can be a number, a JSON object...
CallProgressResult: when rpc has multiple results, this method is called when still there are more results to send. Example: if method has 20 results, from method 1 to 19, CallProgressResult must be called. And the final method, number 20, must be called with CallResult to finish method.
CallId: this is the ID generated by client when request a call to a procedure
Result: is the result, can be a number, a JSON object...
CallError: When the remote procedure call could not be executed, an error or exception occurred during the execution or the execution of the remote procedure finishes unsuccessfully for any other reason, the server responds by sending a message with error details.
CallId: this is the ID generated by the client when requesting a call to a procedure
ErrorURI: identifies the error.
ErrorDesc: error description.
ErrorDetails: application error details, is optional.
Event: Subscribers receive PubSub events published by subscribers via the EVENT message.
TopicURI: channel name where is subscribed.
Event: message text.
OnCall: event fired when the server receives RPC called by the client
CallId: this is the ID generated by the client when requesting a call to a procedure
ProcUri: procedure identifier...
Arguments: procedure params, can be a integer, a JSON object, a list...
OnBeforeCancelCall: event fired when the server receives a request to cancel a Call from client.
CallId: this is the ID generated by the client when requesting a call to a procedure
Cancel: by default is True, which means that Call will be cancelled. If server doesn't want cancel this call, set this parameter to false.
OnPrefix: Procedures and Errors are identified using URIs or CURIEs, this event is triggered when a client sends a new prefix
Prefix: compact URI expression.
URI: full URI.