You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2005/10/07 06:38:59 UTC

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

Author: saminda
Date: Thu Oct  6 21:38:49 2005
New Revision: 307004

URL: http://svn.apache.org/viewcvs?rev=307004&view=rev
Log:
Remove setDoREST(boolean) from Stub and MEPClient and allow it through properties if call.set()

Modified:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/clientapi/MEPClient.java
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/clientapi/Stub.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=307004&r1=307003&r2=307004&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 Thu Oct  6 21:38:49 2005
@@ -53,14 +53,14 @@
     */
     protected boolean isExceptionToBeThrownOnSOAPFault = true;
 
-    //TODO try to find a better way to handle the GET
-    public void setRestThroughPOST(boolean b) {
-        doRestThroughPOST = b;
-    }
+//    //TODO try to find a better way to handle the GET
+//    public void setRestThroughPOST(boolean b) {
+//        doRestThroughPOST = b;
+//    }
 
-    public void setDoREST(boolean b) {
-        doREST = b;
-    }
+//    public void setDoREST(boolean b) {
+//        doREST = b;
+//    }
 
     public String getSoapAction() {
         return soapAction;

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/clientapi/Stub.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/clientapi/Stub.java?rev=307004&r1=307003&r2=307004&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/clientapi/Stub.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/clientapi/Stub.java Thu Oct  6 21:38:49 2005
@@ -93,13 +93,13 @@
     public Object _get(String key){
         return this.propertyMap.get(key);
     }
-    /**
-     *
-     * @param doRest
-     */
-    public void setDoREST(boolean doRest) {
-        this.doRest = doRest;
-    }
+//    /**
+//     *
+//     * @param doRest
+//     */
+//    public void setDoREST(boolean doRest) {
+//        this.doRest = doRest;
+//    }
 
 
     /**