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 na...@apache.org on 2005/12/27 02:49:59 UTC

svn commit: r359156 - in /webservices/axis/trunk/c/src: common/ engine/server/ server/simple_axis_server/ soap/ transport/axis3/ wsdl/org/apache/axis/wsdl/wsdl2ws/ wsdl/org/apache/axis/wsdl/wsdl2ws/c/ wsdl/org/apache/axis/wsdl/wsdl2ws/c/literal/ wsdl/o...

Author: nadiramra
Date: Mon Dec 26 17:49:49 2005
New Revision: 359156

URL: http://svn.apache.org/viewcvs?rev=359156&view=rev
Log:
AXISCPP-892 - Change "occured" to "occurred"

Modified:
    webservices/axis/trunk/c/src/common/AxisMessage.cpp
    webservices/axis/trunk/c/src/engine/server/ServerAxisEngine.cpp
    webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisServer.cpp
    webservices/axis/trunk/c/src/soap/AxisSoapException.cpp
    webservices/axis/trunk/c/src/soap/SoapDeSerializer.cpp
    webservices/axis/trunk/c/src/transport/axis3/HTTPTransportException.cpp
    webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/WSDL2Ws.java
    webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/c/AllParamWriter.java
    webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/c/literal/AllParamWriter.java
    webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/AllExceptionWriter.java
    webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/AllParamWriter.java
    webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/ExceptionHeaderWriter.java
    webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/ExceptionWriter.java
    webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/literal/AllParamWriter.java

Modified: webservices/axis/trunk/c/src/common/AxisMessage.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/common/AxisMessage.cpp?rev=359156&r1=359155&r2=359156&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/common/AxisMessage.cpp (original)
+++ webservices/axis/trunk/c/src/common/AxisMessage.cpp Mon Dec 26 17:49:49 2005
@@ -45,11 +45,11 @@
             break; 
         case SOAP_VERSION_MISMATCH :
             m_sMessage = "AxisSoapException:Soap Version mismatch fault" \
-                " occured";
+                " occurred";
             break;
         case SOAP_MUST_UNDERSTAND:
             m_sMessage = "AxisSoapException:Soap Must understand fault" \
-                " occured";
+                " occurred";
             break;
         case CLIENT_SOAP_MESSAGE_INCOMPLETE:
             m_sMessage = "AxisSoapException:Received message is incomplete";
@@ -121,11 +121,11 @@
             m_sMessage = "AxisEngineException:Wrong handler type";
             break;
         case SERVER_TRANSPORT_RECEPTION_EXCEPTION:
-            m_sMessage = "AxisTransportException:Problem occured when" \
+            m_sMessage = "AxisTransportException:Problem occurred when" \
                 " receiving the stream";
             break;
         case SERVER_TRANSPORT_SENDING_EXCEPTION:
-            m_sMessage = "AxisTransportException:Problem occured when" \
+            m_sMessage = "AxisTransportException:Problem occurred when" \
                 " sending the stream";
             break;
         case SERVER_TRANSPORT_HTTP_EXCEPTION:
@@ -193,7 +193,7 @@
             m_sMessage = "Configuration details have already ben set";
             break;
         default:
-            m_sMessage = "Unknown Exception has occured";
+            m_sMessage = "Unknown Exception has occurred";
 
     }
     return m_sMessage;

Modified: webservices/axis/trunk/c/src/engine/server/ServerAxisEngine.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/engine/server/ServerAxisEngine.cpp?rev=359156&r1=359155&r2=359156&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/engine/server/ServerAxisEngine.cpp (original)
+++ webservices/axis/trunk/c/src/engine/server/ServerAxisEngine.cpp Mon Dec 26 17:49:49 2005
@@ -337,7 +337,7 @@
 	    return AXIS_SUCCESS;	//Service created fault is written to the stream. 
 	    //so return success.
 	}
-	else			/* An exception has occured inside Axis C++ engine.(not in a
+	else			/* An exception has occurred inside Axis C++ engine.(not in a
 				 * webservice or handler). Later we handle this according to the
 				 * exception code returned.
 				 */

Modified: webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisServer.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisServer.cpp?rev=359156&r1=359155&r2=359156&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisServer.cpp (original)
+++ webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisServer.cpp Mon Dec 26 17:49:49 2005
@@ -155,7 +155,7 @@
 
     if (argc < 2)
     {
-   printf ("Problem occured.\nUsage: %s <Server Port>", argv[0]);
+   printf ("Problem occurred.\nUsage: %s <Server Port>", argv[0]);
    exit (1);
     }
 
@@ -172,7 +172,7 @@
     iServerPort = atoi (argv[1]);
     if (iServerPort == 0)
     {
-   printf ("Problem occured. Error in specified server port");
+   printf ("Problem occurred. Error in specified server port");
    exit (1);
     }
     else

Modified: webservices/axis/trunk/c/src/soap/AxisSoapException.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/soap/AxisSoapException.cpp?rev=359156&r1=359155&r2=359156&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/soap/AxisSoapException.cpp (original)
+++ webservices/axis/trunk/c/src/soap/AxisSoapException.cpp Mon Dec 26 17:49:49 2005
@@ -56,10 +56,10 @@
     {
 
         case SOAP_VERSION_MISMATCH :
-            m_sMessageForExceptionCode = "AxisSoapException:Soap Version mismatch fault occured";
+            m_sMessageForExceptionCode = "AxisSoapException:Soap Version mismatch fault occurred";
             break;
         case SOAP_MUST_UNDERSTAND:
-			m_sMessageForExceptionCode = "AxisSoapException:Soap Must understand fault occured";
+			m_sMessageForExceptionCode = "AxisSoapException:Soap Must understand fault occurred";
             break;
         case CLIENT_SOAP_MESSAGE_INCOMPLETE:
 			m_sMessageForExceptionCode = "AxisSoapException:Received message is incomplete";

Modified: webservices/axis/trunk/c/src/soap/SoapDeSerializer.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/soap/SoapDeSerializer.cpp?rev=359156&r1=359155&r2=359156&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/soap/SoapDeSerializer.cpp (original)
+++ webservices/axis/trunk/c/src/soap/SoapDeSerializer.cpp Mon Dec 26 17:49:49 2005
@@ -445,7 +445,7 @@
     //if (0 != strcmp(m_pNode->m_pchNameOrValue, pName)) return AXIS_FAIL;
     if (0 != strcmp (m_pNode->m_pchNameOrValue, pName))
     {
-	/* A soap fault has occured. we will deserialize it as doc literal
+	/* A soap fault has occurred. we will deserialize it as doc literal
 	 * So we set the style as doc literal. This way of doing things
 	 * is not so nice. I'll rectify this asap
 	 */

Modified: webservices/axis/trunk/c/src/transport/axis3/HTTPTransportException.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/transport/axis3/HTTPTransportException.cpp?rev=359156&r1=359155&r2=359156&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/transport/axis3/HTTPTransportException.cpp (original)
+++ webservices/axis/trunk/c/src/transport/axis3/HTTPTransportException.cpp Mon Dec 26 17:49:49 2005
@@ -51,14 +51,14 @@
     {
 		case SERVER_TRANSPORT_RECEPTION_EXCEPTION:
 		{
-            m_sMessageForExceptionCode = "HTTPTransportException:Problem occured when" \
+            m_sMessageForExceptionCode = "HTTPTransportException:Problem occurred when" \
                 " receiving the stream";
             break;
 		}
 
         case SERVER_TRANSPORT_SENDING_EXCEPTION:
 		{
-            m_sMessageForExceptionCode = "HTTPTransportException:Problem occured when sending" \
+            m_sMessageForExceptionCode = "HTTPTransportException:Problem occurred when sending" \
                 " the stream";
             break;
 		}

Modified: webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/WSDL2Ws.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/WSDL2Ws.java?rev=359156&r1=359155&r2=359156&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/WSDL2Ws.java (original)
+++ webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/WSDL2Ws.java Mon Dec 26 17:49:49 2005
@@ -833,7 +833,7 @@
                 throw new WrapperFault(
                     "["
                         + typename
-                        + "]unexpected condition occured "
+                        + "]unexpected condition occurred "
                         + ".. please inform the axis-dev@apache.org mailing list ASAP");
             }
             type.getRefType();

Modified: webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/c/AllParamWriter.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/c/AllParamWriter.java?rev=359156&r1=359155&r2=359156&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/c/AllParamWriter.java (original)
+++ webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/c/AllParamWriter.java Mon Dec 26 17:49:49 2005
@@ -95,7 +95,7 @@
             catch (Exception e)
             {
                 System.out.println(
-                    "Error occured yet we continue to genarate other classes ... you should check the error");
+                    "Error occurred yet we continue to genarate other classes ... you should check the error");
                 e.printStackTrace();
             }
         }

Modified: webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/c/literal/AllParamWriter.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/c/literal/AllParamWriter.java?rev=359156&r1=359155&r2=359156&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/c/literal/AllParamWriter.java (original)
+++ webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/c/literal/AllParamWriter.java Mon Dec 26 17:49:49 2005
@@ -91,7 +91,7 @@
             catch (Exception e)
             {
                 System.out.println(
-                    "Error occured yet we continue to genarate other classes ... you should check the error");
+                    "Error occurred yet we continue to genarate other classes ... you should check the error");
                 e.printStackTrace();
             }
         }

Modified: webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/AllExceptionWriter.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/AllExceptionWriter.java?rev=359156&r1=359155&r2=359156&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/AllExceptionWriter.java (original)
+++ webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/AllExceptionWriter.java Mon Dec 26 17:49:49 2005
@@ -58,7 +58,7 @@
 		 }			
 		 catch(Exception e)
 		{
-				System.out.println("Error occured yet we continue to genarate other classes ... you should check the error");
+				System.out.println("Error occurred yet we continue to genarate other classes ... you should check the error");
 				e.printStackTrace();
 		}	
      }

Modified: webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/AllParamWriter.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/AllParamWriter.java?rev=359156&r1=359155&r2=359156&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/AllParamWriter.java (original)
+++ webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/AllParamWriter.java Mon Dec 26 17:49:49 2005
@@ -110,7 +110,7 @@
             catch (Exception e)
             {
                 System.out.println(
-                    "Error occured generating code for "
+                    "Error occurred generating code for "
                         + type.getLanguageSpecificName()
                         + ". Yet we continue to generate other classes ... You should check the error");
                 e.printStackTrace();

Modified: webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/ExceptionHeaderWriter.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/ExceptionHeaderWriter.java?rev=359156&r1=359155&r2=359156&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/ExceptionHeaderWriter.java (original)
+++ webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/ExceptionHeaderWriter.java Mon Dec 26 17:49:49 2005
@@ -242,7 +242,7 @@
         catch (Exception e)
         {
             System.out.println(
-                "Error occured yet we continue to generate other classes ... you should check the error");
+                "Error occurred yet we continue to generate other classes ... you should check the error");
             e.printStackTrace();
         }
     }

Modified: webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/ExceptionWriter.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/ExceptionWriter.java?rev=359156&r1=359155&r2=359156&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/ExceptionWriter.java (original)
+++ webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/ExceptionWriter.java Mon Dec 26 17:49:49 2005
@@ -269,7 +269,7 @@
             writer.write("\t\t\tbreak;\n");
             writer.write("\t\tdefault:\n");
             writer.write(
-                "\t\t\tm_sMessageForExceptionCode = \"Unknown Exception has occured in the "
+                "\t\t\tm_sMessageForExceptionCode = \"Unknown Exception has occurred in the "
                     + getServiceName()
                     + " service\";\n");
             writer.write("\t}\n");

Modified: webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/literal/AllParamWriter.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/literal/AllParamWriter.java?rev=359156&r1=359155&r2=359156&view=diff
==============================================================================
--- webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/literal/AllParamWriter.java (original)
+++ webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/literal/AllParamWriter.java Mon Dec 26 17:49:49 2005
@@ -136,7 +136,7 @@
             catch (Exception e)
             {
                 System.out.println(
-                    "Error occured generating code for "
+                    "Error occurred generating code for "
                         + type.getLanguageSpecificName()
                         + ". Yet we continue to genarate other classes ... You should check the error");
                 e.printStackTrace();