Quote Xquery Sample =================== This sample covers the most important integration scenarios for the xquery implementation type and its corresponding saxon data bindings. If you just want to run it to see what happens open two command prompts (one for the server and the other for the client), navigate to this sample directory and do: Command Prompt 1: --------------------------------------- ant run-server OR if you don't have ant, on Windows do java -cp ..\..\lib\tuscany-sca-manifest.jar;target\sample-quote-xquery.jar xquery.quote.XQueryQuoteServer and on Linux do java -cp ../../lib/tuscany-sca-manifest.jar:target/sample-quote-xquery.jar xquery.quote.XQueryQuoteServer Output ------ Buildfile: build.xml run-server: [java] Nov 1, 2007 11:29:31 PM org.apache.tuscany.sca.http.jetty.JettyServer addServletMapping [java] INFO: Added Servlet mapping: http://localhost:8085/QuoteJoinService [java] Nov 1, 2007 11:29:31 PM org.apache.tuscany.sca.http.jetty.JettyServer addServletMapping [java] INFO: Added Servlet mapping: http://localhost:8085/AvailQuoteProviderService [java] XQuery Quote server is started (press enter to shutdown). Leave the server running and open another command prompt and navigate into this sample directory Command Prompt 2: ---------------------------------------- ant run OR if you don't have ant, on Windows do java -cp ..\..\lib\tuscany-sca-manifest.jar;target\sample-quote-xquery.jar xquery.quote.XQueryQuoteClient and on Linux do java -cp ../../lib/tuscany-sca-manifest.jar:target/sample-quote-xquery.jar xquery.quote.XQueryQuoteClient Output ---------- Buildfile: build.xml run: [java] Input quote for the price list: [java] [java] [java] Acme Inc [java] [java] [java] [java] 12 [java] 1.0 [java] [java] [java] 134 [java] 34.1 [java] [java] [java] 211 [java] 10.0 [java] [java] [java] [java] [java] Input quote for the availability: [java] [java] [java] [java] 12 [java] 10 [java] true [java] 2003-03-22 [java] [java] [java] 134 [java] 345 [java] false [java] BackOrder [java] [java] [java] 211 [java] 100 [java] true [java] 2003-04-21 [java] [java] [java] [java] [java] Output quote from local join: [java] [java] [java] Acme Inc [java]
12 Springs Rd,Morris Plains,NJ,07960
[java] [java] 12 [java] 1.0 [java] 10 [java] true [java] 2003-03-22 [java] 0.1 [java] 11.0 [java] [java] [java] 134 [java] 34.1 [java] 345 [java] false [java] BackOrder [java] 0.1 [java] 0.0 [java] [java] [java] 211 [java] 10.0 [java] 100 [java] true [java] 2003-04-21 [java] 0.1 [java] 1100.0 [java] [java]
[java] [java] [java] Output quote from local join (second invokation): [java] [java] [java] Acme Inc [java]
12 Springs Rd,Morris Plains,NJ,07960
[java] [java] 12 [java] 1.0 [java] 10 [java] true [java] 2003-03-22 [java] 0.2 [java] 12.0 [java] [java] [java] 134 [java] 34.1 [java] 345 [java] false [java] BackOrder [java] 0.2 [java] 0.0 [java] [java] [java] 211 [java] 10.0 [java] 100 [java] true [java] 2003-04-21 [java] 0.2 [java] 1200.0 [java] [java]
[java] [java] [java] Output quote from web service join: [java] [java] [java] Acme Inc [java]
12 Springs Rd,Morris Plains,NJ,07960
[java] [java] 12 [java] 1.0 [java] 10 [java] true [java] 2003-03-22 [java] 0.1 [java] 11.0 [java] [java] [java] 134 [java] 34.1 [java] 345 [java] false [java] BackOrder [java] 0.1 [java] 0.0 [java] [java] [java] 211 [java] 10.0 [java] 100 [java] true [java] 2003-04-21 [java] 0.1 [java] 1100.0 [java] [java]
[java] [java] [java] Output quote from properties join: [java] [java] [java] Acme Inc [java]
12 Springs Rd,Morris Plains,NJ,07960
[java] [java] 12 [java] 1.0 [java] 10 [java] true [java] 2003-03-22 [java] 0.1 [java] 11.0 [java] [java] [java] 134 [java] 34.1 [java] 345 [java] false [java] BackOrder [java] 0.1 [java] 0.0 [java] [java] [java] 211 [java] 10.0 [java] 100 [java] true [java] 2003-04-21 [java] 0.1 [java] 1100.0 [java] [java]
[java] [java] [java] Output quote from external references join: [java] [java] [java] Acme Inc [java]
12 Springs Rd,Morris Plains,NJ,07960
[java] [java] 12 [java] 1.0 [java] 10 [java] true [java] 2003-03-22 [java] 0.1 [java] 11.0 [java] [java] [java] 134 [java] 34.1 [java] 345 [java] false [java] BackOrder [java] 0.1 [java] 0.0 [java] [java] [java] 211 [java] 10.0 [java] 100 [java] true [java] 2003-04-21 [java] 0.1 [java] 1100.0 [java] [java]
[java] BUILD SUCCESSFUL Total time: 16 seconds Sample Overview --------------- 1. There is a central component for invoking the different scenarios: QuoteJoinLocalComponent 2. It provides the following cases: - invoke XQuery component in the current assembly, by providing all needed information as input parameters - invoke XQuery component in external assembly, which is exposed as a web service - invoke XQuery component in the current assembly, which retrieves the needed information from the component properties - invoke XQuery component in the current assembly, which retrieves the needed information from its references to other components: - one of the components is in the current assembly - the other component is in anther assembly and it is exposed (and accessed) as web service 3. All of the XQuery components have reference to a component for calculation of the total price 4. SDO is used for data interchange src/main/resources wsdl AvailQuote.xsd PriceQuote.xsd Quote.xsd quotejoin.wsdl META-INF sca quote_join_external_references.xq --- the external references xquery script quote_join_properties.xq --- the property-based join xquery script quote_join.xq --- the join xquery script xqueryquotews.composite --- composite file for the client side xqueryquotewsclient.composite --- composite file for the service side build.xml - the Ant build file pom.xml - the Maven build file Building And Running The Sample Using Ant ----------------------------------------- cd quote-xquery ant compile ant run-server you should see: Buildfile: build.xml run: Building And Running The Sample Using Maven ------------------------------------------- With either the binary or source distributions the sample can be built and run using Maven as follows. cd quote-xquery mvn This shows that the Junit test cases have run successfully.