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 di...@apache.org on 2005/12/27 04:47:03 UTC

svn commit: r359168 - in /webservices/axis2/trunk/java/modules: core/src/org/apache/axis2/description/ core/src/org/apache/axis2/transport/http/ integration/test/org/apache/axis2/engine/

Author: dims
Date: Mon Dec 26 19:46:57 2005
New Revision: 359168

URL: http://svn.apache.org/viewcvs?rev=359168&view=rev
Log:
- chuncked->chunked
- mdoules->modules
- Remove unused file


Added:
    webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLChunkedTest.java   (contents, props changed)
      - copied, changed from r359135, webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLChunckedTest.java
Removed:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/description/DefinedParameters.java
    webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLChunckedTest.java
Modified:
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/description/AxisServiceGroup.java
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/AbstractHTTPSender.java
    webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/SOAPOverHTTPSender.java

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/description/AxisServiceGroup.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/description/AxisServiceGroup.java?rev=359168&r1=359167&r2=359168&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/description/AxisServiceGroup.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/description/AxisServiceGroup.java Mon Dec 26 19:46:57 2005
@@ -33,7 +33,7 @@
     private Log log = LogFactory.getLog(getClass());
 
     // to store module ref at deploy time parsing
-    private ArrayList mdoulesList = new ArrayList();
+    private ArrayList modulesList = new ArrayList();
 
     // to store service Group engagedModules name
     private ArrayList engagedModules;
@@ -85,7 +85,7 @@
     }
 
     public void addModuleref(QName moduleref) {
-        mdoulesList.add(moduleref);
+        modulesList.add(moduleref);
     }
 
     public void addParameter(Parameter param) throws AxisFault {
@@ -188,7 +188,7 @@
     }
 
     public ArrayList getModuleRefs() {
-        return mdoulesList;
+        return modulesList;
     }
 
     public Parameter getParameter(String name) {

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/AbstractHTTPSender.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/AbstractHTTPSender.java?rev=359168&r1=359167&r2=359168&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/AbstractHTTPSender.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/AbstractHTTPSender.java Mon Dec 26 19:46:57 2005
@@ -289,15 +289,15 @@
         private boolean doingMTOM = false;
         private byte[] bytes;
         private String charSetEnc;
-        private boolean chuncked;
+        private boolean chunked;
         private OMElement element;
         private MessageContext msgCtxt;
         private String soapActionString;
 
-        public AxisRequestEntity(OMElement element, boolean chuncked, MessageContext msgCtxt,
+        public AxisRequestEntity(OMElement element, boolean chunked, MessageContext msgCtxt,
                                  String charSetEncoding, String soapActionString) {
             this.element = element;
-            this.chuncked = chuncked;
+            this.chunked = chunked;
             this.msgCtxt = msgCtxt;
             this.doingMTOM = msgCtxt.isDoingMTOM();
             this.charSetEnc = charSetEncoding;
@@ -337,7 +337,7 @@
         public void writeRequest(OutputStream out) throws IOException {
             try {
                 if (doingMTOM) {
-                    if (chuncked) {
+                    if (chunked) {
                         this.handleOMOutput(out, doingMTOM);
                     } else {
                         if (bytes == null) {
@@ -347,7 +347,7 @@
                         out.write(bytes);
                     }
                 } else {
-                    if (chuncked) {
+                    if (chunked) {
                         this.handleOMOutput(out, doingMTOM);
                     } else {
                         if (bytes == null) {
@@ -371,7 +371,7 @@
         public long getContentLength() {
             try {
                 if (doingMTOM) {
-                    if (chuncked) {
+                    if (chunked) {
                         return -1;
                     } else {
                         if (bytes == null) {
@@ -381,7 +381,7 @@
                         return bytes.length;
                     }
                 } else {
-                    if (chuncked) {
+                    if (chunked) {
                         return -1;
                     } else {
                         if (bytes == null) {

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/SOAPOverHTTPSender.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/SOAPOverHTTPSender.java?rev=359168&r1=359167&r2=359168&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/SOAPOverHTTPSender.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/http/SOAPOverHTTPSender.java Mon Dec 26 19:46:57 2005
@@ -128,15 +128,15 @@
         private boolean doingMTOM = false;
         private byte[] bytes;
         private String charSetEnc;
-        private boolean chuncked;
+        private boolean chunked;
         private OMElement element;
         private MessageContext msgCtxt;
         private String soapActionString;
 
-        public AxisSOAPRequestEntity(OMElement element, boolean chuncked, MessageContext msgCtxt,
+        public AxisSOAPRequestEntity(OMElement element, boolean chunked, MessageContext msgCtxt,
                                      String charSetEncoding, String soapActionString) {
             this.element = element;
-            this.chuncked = chuncked;
+            this.chunked = chunked;
             this.msgCtxt = msgCtxt;
             this.doingMTOM = msgCtxt.isDoingMTOM();
             this.charSetEnc = charSetEncoding;
@@ -176,7 +176,7 @@
         public void writeRequest(OutputStream out) throws IOException {
             try {
                 if (doingMTOM) {
-                    if (chuncked) {
+                    if (chunked) {
                         this.handleOMOutput(out, doingMTOM);
                     } else {
                         if (bytes == null) {
@@ -186,7 +186,7 @@
                         out.write(bytes);
                     }
                 } else {
-                    if (chuncked) {
+                    if (chunked) {
                         this.handleOMOutput(out, doingMTOM);
                     } else {
                         if (bytes == null) {
@@ -210,7 +210,7 @@
         public long getContentLength() {
             try {
                 if (doingMTOM) {
-                    if (chuncked) {
+                    if (chunked) {
                         return -1;
                     } else {
                         if (bytes == null) {
@@ -220,7 +220,7 @@
                         return bytes.length;
                     }
                 } else {
-                    if (chuncked) {
+                    if (chunked) {
                         return -1;
                     } else {
                         if (bytes == null) {

Copied: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLChunkedTest.java (from r359135, webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLChunckedTest.java)
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLChunkedTest.java?p2=webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLChunkedTest.java&p1=webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLChunckedTest.java&r1=359135&r2=359168&rev=359168&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLChunckedTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLChunkedTest.java Mon Dec 26 19:46:57 2005
@@ -35,22 +35,17 @@
 
 import javax.xml.namespace.QName;
 
-public class EchoRawXMLChunckedTest extends TestCase implements TestConstants {
-
-    private Log log = LogFactory.getLog(getClass());
-    private QName transportName = new QName("http://localhost/my",
-            "NullTransport");
+public class EchoRawXMLChunkedTest extends TestCase implements TestConstants {
 
     private AxisService service;
 
-    private boolean finish = false;
     private static final String CLIENT_HOME = Constants.TESTING_PATH + "chunked-enabledRepository";
 
-    public EchoRawXMLChunckedTest() {
-        super(EchoRawXMLChunckedTest.class.getName());
+    public EchoRawXMLChunkedTest() {
+        super(EchoRawXMLChunkedTest.class.getName());
     }
 
-    public EchoRawXMLChunckedTest(String testName) {
+    public EchoRawXMLChunkedTest(String testName) {
         super(testName);
     }
 

Propchange: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLChunkedTest.java
------------------------------------------------------------------------------
    svn:eol-style = native