Index: wp-includes/class-wp-xmlrpc-server.php
===================================================================
--- wp-includes/class-wp-xmlrpc-server.php	(revision 17631)
+++ wp-includes/class-wp-xmlrpc-server.php	(working copy)
@@ -888,6 +888,8 @@
 			return(new IXR_Error(500, __("Sorry, the new category failed.")));
 		}
 
+		do_action( 'xmlrpc_call_success_wp_newCategory', $cat_id, $args );
+
 		return($cat_id);
 	}
 
@@ -915,7 +917,12 @@
 		if ( !current_user_can("manage_categories") )
 			return new IXR_Error( 401, __( "Sorry, you do not have the right to delete a category." ) );
 
-		return wp_delete_term( $category_id, 'category' );
+		$status = wp_delete_term( $category_id, 'category' );
+
+		if( true == $status )
+			do_action( 'xmlrpc_call_success_wp_deleteCategory', $category_id, $args );
+
+		return $status;
 	}
 
 	/**
@@ -1107,7 +1114,12 @@
 		if ( ! get_comment($comment_ID) )
 			return new IXR_Error( 404, __( 'Invalid comment ID.' ) );
 
-		return wp_delete_comment($comment_ID);
+		$status = wp_delete_comment( $comment_ID );
+
+		if( true == $status )
+			do_action( 'xmlrpc_call_success_wp_deleteComment', $comment_ID, $args );
+
+		return $status;
 	}
 
 	/**
@@ -1179,6 +1191,8 @@
 		if ( !$result )
 			return new IXR_Error(500, __('Sorry, the comment could not be edited. Something wrong happened.'));
 
+		do_action( 'xmlrpc_call_success_wp_editComment', $comment_ID, $args );
+
 		return true;
 	}
 
@@ -1262,7 +1276,11 @@
 
 		do_action('xmlrpc_call', 'wp.newComment');
 
-		return wp_new_comment($comment);
+		$comment_ID = wp_new_comment( $comment );
+
+		do_action( 'xmlrpc_call_success_wp_newComment', $comment_ID, $args );
+
+		return $comment_ID;
 	}
 
 	/**
@@ -3013,6 +3031,8 @@
 		$id = wp_insert_attachment( $attachment, $upload[ 'file' ], $post_id );
 		wp_update_attachment_metadata( $id, wp_generate_attachment_metadata( $id, $upload['file'] ) );
 
+		do_action( 'xmlrpc_call_success_mw_newMediaObject', $id, $args );
+
 		return apply_filters( 'wp_handle_upload', array( 'file' => $name, 'url' => $upload[ 'url' ], 'type' => $type ), 'upload' );
 	}
 
