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 ka...@apache.org on 2006/12/15 07:29:56 UTC

svn commit: r487462 - in /webservices/axis2/trunk/c: modules/core/engine/conf.c util/include/axis2_date_time.h util/src/date_time.c

Author: kaushalye
Date: Thu Dec 14 22:29:55 2006
New Revision: 487462

URL: http://svn.apache.org/viewvc?view=rev&rev=487462
Log:
Fixed problem in AXIS2_DATE_TIME_SET_DATE_TIME macro

Modified:
    webservices/axis2/trunk/c/modules/core/engine/conf.c
    webservices/axis2/trunk/c/util/include/axis2_date_time.h
    webservices/axis2/trunk/c/util/src/date_time.c

Modified: webservices/axis2/trunk/c/modules/core/engine/conf.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/engine/conf.c?view=diff&rev=487462&r1=487461&r2=487462
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/conf.c (original)
+++ webservices/axis2/trunk/c/modules/core/engine/conf.c Thu Dec 14 22:29:55 2006
@@ -458,6 +458,8 @@
             axis2_conf_free(&(config_impl->conf), env);
             return NULL;
         }
+        /*Incase of using security we need to find the service/operation parameters before the dispatch phase.
+         *This is required to give parameters to the security inflow.*/
         uri_dispatch = axis2_req_uri_disp_create(env);
         if (uri_dispatch)
         {

Modified: webservices/axis2/trunk/c/util/include/axis2_date_time.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/include/axis2_date_time.h?view=diff&rev=487462&r1=487461&r2=487462
==============================================================================
--- webservices/axis2/trunk/c/util/include/axis2_date_time.h (original)
+++ webservices/axis2/trunk/c/util/include/axis2_date_time.h Thu Dec 14 22:29:55 2006
@@ -243,9 +243,9 @@
         ((date_time)->ops->deserialize_date_time(date_time, env, date_time_str))
 
 #define AXIS2_DATE_TIME_SET_DATE_TIME(date_time, env, \
-                           year, month, date, hour, min, second ) \
+                           year, month, date, hour, min, second, milliseconds ) \
         ((date_time)->ops->set_date_time (date_time, env, \
-                           year, month, date, hour, min, second,milliseconds) )
+                           year, month, date, hour, min, second, milliseconds) )
  
 #define AXIS2_DATE_TIME_SERIALIZE_TIME(date_time, env) \
         ((date_time)->ops->serialize_time (date_time, env ) )

Modified: webservices/axis2/trunk/c/util/src/date_time.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/date_time.c?view=diff&rev=487462&r1=487461&r2=487462
==============================================================================
--- webservices/axis2/trunk/c/util/src/date_time.c (original)
+++ webservices/axis2/trunk/c/util/src/date_time.c Thu Dec 14 22:29:55 2006
@@ -263,7 +263,7 @@
 axis2_date_time_set_date_time(axis2_date_time_t* date_time,
         const axis2_env_t *env,
         int year, int month, int day,
-        int hour, int min, int second,int milliseconds)
+        int hour, int min, int second, int milliseconds)
 {
     axis2_date_time_impl_t *date_time_impl = NULL;
 



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