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 aj...@apache.org on 2005/06/05 15:49:11 UTC

svn commit: r180089 - in /webservices/axis/trunk/java/modules/samples: maven.xml xdocs/amazonQS/AmazonSimpleWebService.html

Author: ajith
Date: Sun Jun  5 06:49:10 2005
New Revision: 180089

URL: http://svn.apache.org/viewcvs?rev=180089&view=rev
Log:
updated the maven build file to include the sample.amazon.common package to both the source and the bin.

Modified:
    webservices/axis/trunk/java/modules/samples/maven.xml
    webservices/axis/trunk/java/modules/samples/xdocs/amazonQS/AmazonSimpleWebService.html

Modified: webservices/axis/trunk/java/modules/samples/maven.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/samples/maven.xml?rev=180089&r1=180088&r2=180089&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/samples/maven.xml (original)
+++ webservices/axis/trunk/java/modules/samples/maven.xml Sun Jun  5 06:49:10 2005
@@ -71,6 +71,7 @@
         <ant:copy todir="${samples.dir}/amazonQS/src">
         	<ant:fileset dir="src">
         		<ant:include name="sample/amazon/amazonSimpleQueueService/**"/>
+        		<ant:include name="sample/amazon/common/**"/>
         	</ant:fileset> 
 	</ant:copy> 
         <mkdir dir="${samples.dir}/amazonQS/docs"/>
@@ -83,6 +84,7 @@
         <jar destfile="${samples.dir}/amazonQS/amazonQS.jar">
             <fileset dir="target/classes">
                 <include name="sample/amazon/amazonSimpleQueueService/**"/>
+                <include name="sample/amazon/common/**"/>
             </fileset>           
         </jar>
     </goal>
@@ -93,6 +95,7 @@
         <ant:copy todir="${samples.dir}/googleSearch/src">
         	<ant:fileset dir="src">
         		<ant:include name="sample/google/search/**"/>
+        		<ant:include name="sample/google/common/**"/>
         	</ant:fileset> 
 	</ant:copy> 
         <mkdir dir="${samples.dir}/googleSearch/docs"/>
@@ -116,6 +119,7 @@
         <ant:copy todir="${samples.dir}/googleSpellcheck/src">
         	<ant:fileset dir="src">
         		<ant:include name="sample/google/spellcheck/**"/>
+        		<ant:include name="sample/google/common/**"/>
         	</ant:fileset> 
 	</ant:copy> 
         <mkdir dir="${samples.dir}/googleSpellcheck/docs"/>

Modified: webservices/axis/trunk/java/modules/samples/xdocs/amazonQS/AmazonSimpleWebService.html
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/samples/xdocs/amazonQS/AmazonSimpleWebService.html?rev=180089&r1=180088&r2=180089&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/samples/xdocs/amazonQS/AmazonSimpleWebService.html (original)
+++ webservices/axis/trunk/java/modules/samples/xdocs/amazonQS/AmazonSimpleWebService.html Sun Jun  5 06:49:10 2005
@@ -30,8 +30,8 @@
 <p>  In these operations user will be given the autonomy to create a new queue or use an existing queue to enqueue the selected queue. Only one queue is subjected to manipulate at a given instance. </p>
 <h4><em>  OUT operations</em></h4>
 <p>  In these operations user will be given the autonomy to list the queues that once possess for a given subscription Id and read the entries of a particular queue or if the queue is empty the queue can deliberately be deleted. If the queue is not empty, the delete operation will not work. The queue must empty before it has to be deleted. It is expected that the user to implement the de-queue operation in order to get the full understanding of the code. Necessary steps will be provided at the end of this documentation. </p>
-<p>  On the perimeters of this example, I have generated a key (0HPJJ4GJDSG2TZ2C8X02) which is the subscription Id and hard coded to the key.properties file and OMElement objects obtained the value through Properties API, for each operation invocation. The service end point also hard coded,<br>
-  (http://webservices.amazon.com/onca/soap?Service=AWSSimpleQueueService). Thus, when a user reads the queues available, queues pertaining to this key will be displayed. </p>
+<p>  On the perimeters of this example, I have generated a key (0HPJJ4GJDSG2TZ2C8X02) which is the subscription Id and hard coded to the key.properties file and OMElement objects obtained the value through Properties API, for each operation invocation. The service end point also hard coded,
+  (<a href="http://webservices.amazon.com/onca/soap?Service=AWSSimpleQueueService">http://webservices.amazon.com/onca/soap?Service=AWSSimpleQueueService</a> ). Thus, when a user reads the queues available, queues pertaining to this key will be displayed. </p>
 <h2>  Section 2 - Architecture and Advanced Operations</h2>
 <h3>  Architecture of the Code</h3>
 <p>  The structure of the code has been divided in to three sections for the simplicity of understanding.</p>