Index: lib/OpenLayers/Format/WPSExecute.js
===================================================================
--- lib/OpenLayers/Format/WPSExecute.js	(revision 12201)
+++ lib/OpenLayers/Format/WPSExecute.js	(working copy)
@@ -14,9 +14,21 @@
  * Class: OpenLayers.Format.WPSExecute version 1.0.0
  *
  * Inherits from:
- *  - <OpenLayers.Format.XML>
+ *  - <OpenLayers.Format.WFST.v1_1_0>
  */
-OpenLayers.Format.WPSExecute = OpenLayers.Class(OpenLayers.Format.XML, {
+OpenLayers.Format.WPSExecute = OpenLayers.Class(OpenLayers.Format.WFST.v1_1_0, {
+
+    /**
+     * Constructor: OpenLayers.Format.WPSExecute
+     * A class for parsing and generating WPSExecute operations.
+     *
+     * Parameters:
+     * options - {Object} Optional object whose properties will be set on the
+     *     instance.
+     */
+    initialize: function(options) {
+        OpenLayers.Format.WFST.v1_1_0.prototype.initialize.apply(this, [options]);
+    },
     
     /**
      * Property: namespaces
@@ -242,7 +254,10 @@
         },
         "wcs": OpenLayers.Format.WCSGetCoverage.prototype.writers.wcs,
         "wfs": OpenLayers.Format.WFST.v1_1_0.prototype.writers.wfs,
-        "ows": OpenLayers.Format.OWSCommon.v1_1_0.prototype.writers.ows
+        "ows": OpenLayers.Format.OWSCommon.v1_1_0.prototype.writers.ows,
+        "gml": OpenLayers.Format.GML.v2.prototype.writers.gml,
+        "feature": OpenLayers.Format.GML.v2.prototype.writers.feature,
+        "ogc": OpenLayers.Format.Filter.v1_0_0.prototype.writers.ogc
     },
     
     CLASS_NAME: "OpenLayers.Format.WPSExecute" 
