diff --git a/wsclient_feeds.module b/wsclient_feeds.module
index 2f158ed..d37c638 100644
--- a/wsclient_feeds.module
+++ b/wsclient_feeds.module
@@ -19,7 +19,6 @@ function wsclient_feeds_ctools_plugin_api($owner, $api) {
   return NULL;
 }
 
-
 /**
  * Implements hook_feeds_plugins().
  */
@@ -31,6 +30,8 @@ function wsclient_feeds_feeds_plugins() {
     'handler' => array(
       'parent' => 'FeedsFetcher',
       'class' => 'FeedsWSClientFetcher',
+      'file' => 'FeedsWSClientFetcher.inc',
+      'path' => $path,
     ),
   );
   $info['FeedsWSClientParser'] = array(
@@ -39,6 +40,8 @@ function wsclient_feeds_feeds_plugins() {
     'handler' => array(
       'parent' => 'FeedsParser',
       'class'  => 'FeedsWSClientParser',
+      'file' => 'FeedsWSClientParser.inc',
+      'path' => $path,
     ),
   );
   $info['FeedsUniqueNodeProcessor'] = array(
@@ -86,7 +89,6 @@ function wsclient_feeds_fetch_instances($conditions = array()) {
   return $entities;
 }
 
-
 /**
  * Small helper function. Parse the service_operation key.
  *
