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 da...@apache.org on 2007/08/06 08:24:36 UTC

svn commit: r563042 - in /webservices/axis2/trunk/c: include/axis2_const.h src/core/clientapi/op_client.c src/core/deployment/conf_builder.c

Author: damitha
Date: Sun Aug  5 23:24:35 2007
New Revision: 563042

URL: http://svn.apache.org/viewvc?view=rev&rev=563042
Log:
readded xmpp related entries which were removed by mistake in a previous commit

Modified:
    webservices/axis2/trunk/c/include/axis2_const.h
    webservices/axis2/trunk/c/src/core/clientapi/op_client.c
    webservices/axis2/trunk/c/src/core/deployment/conf_builder.c

Modified: webservices/axis2/trunk/c/include/axis2_const.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_const.h?view=diff&rev=563042&r1=563041&r2=563042
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_const.h (original)
+++ webservices/axis2/trunk/c/include/axis2_const.h Sun Aug  5 23:24:35 2007
@@ -113,6 +113,7 @@
 #define AXIS2_TRANSPORT_HTTP "http"
 #define AXIS2_TRANSPORT_SMTP "smtp"
 #define AXIS2_TRANSPORT_TCP "tcp"
+#define AXIS2_TRANSPORT_XMPP "xmpp"
 #define AXIS2_TRANSPORT_HTTPS "https"
 typedef enum
 {

Modified: webservices/axis2/trunk/c/src/core/clientapi/op_client.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/clientapi/op_client.c?view=diff&rev=563042&r1=563041&r2=563042
==============================================================================
--- webservices/axis2/trunk/c/src/core/clientapi/op_client.c (original)
+++ webservices/axis2/trunk/c/src/core/clientapi/op_client.c Sun Aug  5 23:24:35 2007
@@ -833,6 +833,10 @@
 		{
             transport_enum = AXIS2_TRANSPORT_ENUM_HTTPS;
 		}
+        else if (!axutil_strcmp (transport, "xmpp"))
+        {
+            transport_enum = AXIS2_TRANSPORT_ENUM_XMPP;
+        }
         else if (!axutil_strcmp (transport, "tcp"))
         {
             transport_enum = AXIS2_TRANSPORT_ENUM_TCP;

Modified: webservices/axis2/trunk/c/src/core/deployment/conf_builder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/deployment/conf_builder.c?view=diff&rev=563042&r1=563041&r2=563042
==============================================================================
--- webservices/axis2/trunk/c/src/core/deployment/conf_builder.c (original)
+++ webservices/axis2/trunk/c/src/core/deployment/conf_builder.c Sun Aug  5 23:24:35 2007
@@ -680,6 +680,10 @@
                 {
                     transport_enum = AXIS2_TRANSPORT_ENUM_SMTP;
                 }
+                else if (axutil_strcmp(name, AXIS2_TRANSPORT_XMPP) == 0)
+                {
+                    transport_enum = AXIS2_TRANSPORT_ENUM_XMPP;
+                }
                 else if (axutil_strcmp(name, AXIS2_TRANSPORT_TCP) == 0)
                 {
                     transport_enum = AXIS2_TRANSPORT_ENUM_TCP;



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org