You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2005/10/07 12:43:55 UTC

svn commit: r307081 - /webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/clientapi/MEPClient.java

Author: saminda
Date: Fri Oct  7 03:43:48 2005
New Revision: 307081

URL: http://svn.apache.org/viewcvs?rev=307081&view=rev
Log:
Removing unnecessary method calls and instant variables pertaining to REST

Modified:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/clientapi/MEPClient.java

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/clientapi/MEPClient.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/clientapi/MEPClient.java?rev=307081&r1=307080&r2=307081&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/clientapi/MEPClient.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/clientapi/MEPClient.java Fri Oct  7 03:43:48 2005
@@ -41,8 +41,6 @@
     protected final String mep;
     protected String soapVersionURI = SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI;
     protected String soapAction = "";
-    protected boolean doREST = false;
-    protected boolean doRestThroughPOST = true;
     protected String wsaAction;
 
     /*
@@ -83,9 +81,7 @@
         //if operation not alrady added, add it
         if (serviceContext.getServiceConfig().getOperation(axisop.getName()) == null) {
             serviceContext.getServiceConfig().addOperation(axisop);
-        }
-        msgCtx.setDoingREST(doREST);
-        msgCtx.setRestThroughPOST(doRestThroughPOST);
+        }        
         if (wsaAction != null) {
             msgCtx.setWSAAction(wsaAction);
         }