public void doVerb(Message message)
{
Object[] body = message.getMessageBody();
byte[] bytes = (byte[])body[0];
DataInputBuffer bufIn = new DataInputBuffer();
bufIn.reset(bytes, bytes.length);
try
{
CalloutDeployMessage cdMessage = CalloutDeployMessage.serializer().deserialize(bufIn);
/* save the callout to callout cache and to disk. */
CalloutManager.instance().addCallout( cdMessage.getCallout(), cdMessage.getScript() );