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 pr...@apache.org on 2005/10/21 15:39:50 UTC

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

Author: prestonf
Date: Fri Oct 21 06:39:47 2005
New Revision: 327178

URL: http://svn.apache.org/viewcvs?rev=327178&view=rev
Log:
Part of the fix for AXISCPP-859

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=327178&r1=327177&r2=327178&view=diff
==============================================================================
--- webservices/axis/trunk/c/services.xml (original)
+++ webservices/axis/trunk/c/services.xml Fri Oct 21 06:39:47 2005
@@ -170,6 +170,12 @@
 
     <target name="setServiceCode" if="service.serviceCode">
         <propertycopy property="serviceCode" from="service.serviceCode" />
+        <if>
+            <isset property="service.serviceHeader" />
+            <then>
+                <propertycopy property="serviceHeader" from="service.serviceHeader" />
+            </then>
+        </if>
     </target>
 
 
@@ -219,6 +225,15 @@
         <copy file="${dir.autotests}/server/${serviceLang}/${serviceCode}"
               tofile="${dir.test.generated}/server/${serviceLang}/${serviceName}/${serviceCode}"
               overwrite="true" />
+        <propertycopy property="serviceCode" from="service.serviceCode" />
+        <if>
+            <isset property="service.serviceHeader"/>
+            <then>
+                <copy file="${dir.autotests}/server/${serviceLang}/${serviceHeader}"
+                      tofile="${dir.test.generated}/server/${serviceLang}/${serviceName}/${serviceHeader}"
+                      overwrite="true"/>
+            </then>
+        </if>
         <cc failonerror="false"
             incremental="false"
             outfile="${dir.test.generated}/server/${serviceLang}/${serviceName}/${serviceName}"