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 2006/06/04 08:24:41 UTC

svn commit: r411526 - /webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c

Author: damitha
Date: Sat Jun  3 23:24:41 2006
New Revision: 411526

URL: http://svn.apache.org/viewvc?rev=411526&view=rev
Log:
Fixed the issue #178 with a minor patch

Modified:
    webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c

Modified: webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c?rev=411526&r1=411525&r2=411526&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c Sat Jun  3 23:24:41 2006
@@ -928,9 +928,6 @@
     recv_name = AXIS2_OM_ELEMENT_GET_ATTRIBUTE(recv_element, env, class_qname);
     AXIS2_QNAME_FREE(class_qname, env);
     class_name = AXIS2_OM_ATTRIBUTE_GET_VALUE(recv_name, env);
-    msg_recv_dll_name = 
-        AXIS2_DLL_DESC_CREATE_PLATFORM_SPECIFIC_DLL_NAME(dll_desc, env, 
-            class_name);
     
     conf = AXIS2_DEP_ENGINE_GET_AXIS2_CONF(desc_builder->engine, env);
     if(!conf)
@@ -942,6 +939,9 @@
     if(!impl_info_param)
     {
         dll_desc = axis2_dll_desc_create(env);
+    	msg_recv_dll_name = 
+        	AXIS2_DLL_DESC_CREATE_PLATFORM_SPECIFIC_DLL_NAME(dll_desc, env, 
+            	class_name);
         repos_name = AXIS2_DEP_ENGINE_GET_REPOS_PATH(desc_builder->engine, env);
         temp_path = AXIS2_STRACAT(repos_name, AXIS2_PATH_SEP_STR, env);
         temp_path2 = AXIS2_STRACAT(temp_path, AXIS2_LIB_FOLDER, env);



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