private void doDeploy(String callout, String script)
{
Set<EndPoint> allMbrs = Gossiper.instance().getAllMembers();
/* Send the script to all mbrs to deploy it locally. */
CalloutDeployMessage cdMessage = new CalloutDeployMessage(callout, script);
try
{
Message message = CalloutDeployMessage.getCalloutDeployMessage(cdMessage);
for ( EndPoint mbr : allMbrs )
{