Index: wp-includes/class-wp-xmlrpc-server.php
===================================================================
--- wp-includes/class-wp-xmlrpc-server.php	(revision 20059)
+++ wp-includes/class-wp-xmlrpc-server.php	(working copy)
@@ -1563,7 +1563,9 @@
 			return(new IXR_Error(500, __('Sorry, the new category failed.')));
 		}
 
-		return($cat_id);
+		do_action( 'xmlrpc_call_success_wp_newCategory', $cat_id, $args );
+
+		return $cat_id;
 	}
 
 	/**
@@ -1590,7 +1592,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;
 	}
 
 	/**
@@ -1802,7 +1809,12 @@
 
 		do_action('xmlrpc_call', 'wp.deleteComment');
 
-		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;
 	}
 
 	/**
@@ -1890,6 +1902,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;
 	}
 
@@ -1973,7 +1987,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;
 	}
 
 	/**
@@ -3740,6 +3758,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' );
 	}
 
