Postby Dino » Tue Jun 22, 2010 3:48 pm
Do you mean, Is there a way from an app server or standard client node of invoking a (remote) method on the database server node?
If so, then yes. If you add "serverExecution" to the end of a method signature, then when this method is invoked, if the calling method is not already executing on the database server, JADE will shift execution of the calling process to the database server before invoking the method. When the serverExecution method completes, execution will return to the original node.
Likewise you can specify "clientExecution" to cause execution to move from a database server method back to the app server/standard client node.
There is no equivalent to invoke a method in another app server/standard client node (either in the same system or a separate system), but you could expose a web service to achieve this.
Dean.