You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by mm...@apache.org on 2005/05/16 00:26:36 UTC

svn commit: r170272 - in /incubator/beehive/trunk/samples/controls-webservices-blank: README.txt build.xml readme.txt

Author: mmerz
Date: Sun May 15 15:26:34 2005
New Revision: 170272

URL: http://svn.apache.org/viewcvs?rev=170272&view=rev
Log:
Additional fixes for beehive 719 bug.

Contributor: Daryoush Mehrtash

Added:
    incubator/beehive/trunk/samples/controls-webservices-blank/README.txt
Removed:
    incubator/beehive/trunk/samples/controls-webservices-blank/readme.txt
Modified:
    incubator/beehive/trunk/samples/controls-webservices-blank/build.xml

Added: incubator/beehive/trunk/samples/controls-webservices-blank/README.txt
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/controls-webservices-blank/README.txt?rev=170272&view=auto
==============================================================================
--- incubator/beehive/trunk/samples/controls-webservices-blank/README.txt (added)
+++ incubator/beehive/trunk/samples/controls-webservices-blank/README.txt Sun May 15 15:26:34 2005
@@ -0,0 +1,15 @@
+This sample is designed to show the build process for the web-service 
+controls.  The web-service control is generated based on a WSDL and 
+schemas of the web-service.  
+
+For a detailed documentation of the build process please see: 
+ (wiki page address goes here).
+
+Note: This sample also demonstrates the unit testing of the
+ web-service control.  A test example is shown in the “junit” 
+ directory.   To build and run the unit testing make sure you have 
+ both junit.jar and the optional tasks jar file in ANT_HOME/lib.  
+ 
+ For additional information on running JUnit tests with ant see:
+ http://ant.apache.org/manual/OptionalTasks/junit.html
+  

Modified: incubator/beehive/trunk/samples/controls-webservices-blank/build.xml
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/controls-webservices-blank/build.xml?rev=170272&r1=170271&r2=170272&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/controls-webservices-blank/build.xml (original)
+++ incubator/beehive/trunk/samples/controls-webservices-blank/build.xml Sun May 15 15:26:34 2005
@@ -88,11 +88,11 @@
 
 	<!-- copy all dependencies -->
 	<target name="deploy-beehive" depends="dirs">
+		<deploy-controls destDir="${lib.dir}" />
 		<copy todir="${lib.dir}">
+			<fileset file="${beehive.home}/lib/wsm/*.jar" />
 			<fileset file="${beehive.home}/lib/common/*.jar" />
-			<fileset file="${beehive.home}/lib/controls/beehive-controls.jar" />
 			<fileset file="${beehive.home}/lib/controls/beehive-webservice-control.jar" />
-			<fileset file="${beehive.home}/lib/wsm/*.jar" />
 		</copy>
 	</target>