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/15 22:44:54 UTC

svn commit: r170264 - in /incubator/beehive/trunk/samples/controls-webservices-blank: build.xml readme.txt systemcontrols-imports.xml

Author: mmerz
Date: Sun May 15 13:44:53 2005
New Revision: 170264

URL: http://svn.apache.org/viewcvs?rev=170264&view=rev
Log:
Fixes to bug Beehive 719

Contributor: Daryoush Mehrtash


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

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=170264&r1=170263&r2=170264&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/controls-webservices-blank/build.xml (original)
+++ incubator/beehive/trunk/samples/controls-webservices-blank/build.xml Sun May 15 13:44:53 2005
@@ -84,8 +84,10 @@
 
 	</target>
 
+        	
+
 	<!-- copy all dependencies -->
-	<target name="get.dependencies" depends="dirs">
+	<target name="deploy-beehive" depends="dirs">
 		<copy todir="${lib.dir}">
 			<fileset file="${beehive.home}/lib/common/*.jar" />
 			<fileset file="${beehive.home}/lib/controls/beehive-controls.jar" />
@@ -160,7 +162,7 @@
 		***********************************************************************************
     -->
 
-	<target name="gen-types" depends="checktypes, get.dependencies, dirs" unless="gen-types-are-uptodate">
+	<target name="gen-types" depends="checktypes, deploy-beehive, dirs" unless="gen-types-are-uptodate">
 		<!-- XMLBean build -->
 		<taskdef name="xmlbeanbuild" classname="org.apache.xmlbeans.impl.tool.XMLBean">
 			<classpath>

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=170264&view=auto
==============================================================================
--- incubator/beehive/trunk/samples/controls-webservices-blank/readme.txt (added)
+++ incubator/beehive/trunk/samples/controls-webservices-blank/readme.txt Sun May 15 13:44:53 2005
@@ -0,0 +1,13 @@
+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 
+ JUnit is installed properly.  
+ See: http://junit.sourceforge.net/doc/faq/faq.htm#running  
+ for additional details.