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 ja...@apache.org on 2006/03/08 13:55:41 UTC

svn commit: r384204 - /webservices/axis/trunk/c/services.xml

Author: jamejose
Date: Wed Mar  8 04:55:40 2006
New Revision: 384204

URL: http://svn.apache.org/viewcvs?rev=384204&view=rev
Log:
Fix for AXISCPP-948 

Modified:
    webservices/axis/trunk/c/services.xml

Modified: webservices/axis/trunk/c/services.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/services.xml?rev=384204&r1=384203&r2=384204&view=diff
==============================================================================
--- webservices/axis/trunk/c/services.xml (original)
+++ webservices/axis/trunk/c/services.xml Wed Mar  8 04:55:40 2006
@@ -6,10 +6,10 @@
 
     <target name="createServerConfigurationFile" depends="initialize, decideserverproperties">
         <!-- Select which parser library to use -->
-        <condition property="ClientParserLib" value="${libraryPrefix}${xml4c.xmlParserLibraryName}${librarySuffix}">
+        <condition property="ClientParserLib" value="${xml4c.xmlParserLibraryName}">
             <istrue value="${testconf.client.parser.xml4c}"/>
         </condition>
-        <condition property="ClientParserLib" value="${libraryPrefix}${xerces.xmlParserLibraryName}${librarySuffix}">
+        <condition property="ClientParserLib" value="${xerces.xmlParserLibraryName}">
             <istrue value="${testconf.client.parser.xerces}"/>
         </condition>
 
@@ -223,6 +223,15 @@
 
 
     <target name="compileService">
+
+	<!-- Fix to have different service implementaion file  AXISCPP-948  -->
+	<if>
+		<isset property="service.removeFile" />
+         <then>
+	  	<delete file="${dir.test.generated}/server/${serviceLang}/${serviceName}/${service.removeFile}" failonerror="false" />
+	   </then>
+	  </if>	
+
         <copy file="${dir.autotests}/server/${serviceLang}/${serviceCode}"
               tofile="${dir.test.generated}/server/${serviceLang}/${serviceName}/${serviceCode}"
               overwrite="true" />