diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-11 23:07:07 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-11 23:07:07 +0000 |
commit | 5559ef5edbf8d3616f7a4b497b2a459b0ee4082b (patch) | |
tree | 424dfa28917e6204d4fd24e4328d274f8d2d14d0 /sca-java-1.x/branches/sca-java-1.0/samples/quote-xquery/src/main/resources/xqueryquotewsclient.composite | |
parent | 3dd7e2c4da9c80b8182a2d04dc129a67aa7910df (diff) |
Moving 1.x branches
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835122 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/branches/sca-java-1.0/samples/quote-xquery/src/main/resources/xqueryquotewsclient.composite')
-rw-r--r-- | sca-java-1.x/branches/sca-java-1.0/samples/quote-xquery/src/main/resources/xqueryquotewsclient.composite | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/sca-java-1.x/branches/sca-java-1.0/samples/quote-xquery/src/main/resources/xqueryquotewsclient.composite b/sca-java-1.x/branches/sca-java-1.0/samples/quote-xquery/src/main/resources/xqueryquotewsclient.composite new file mode 100644 index 0000000000..f078b9ee9f --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.0/samples/quote-xquery/src/main/resources/xqueryquotewsclient.composite @@ -0,0 +1,111 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. +--> +<composite xmlns="http://www.osoa.org/xmlns/sca/1.0" targetNamespace="http://quote.xquery/client" + xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.0" xmlns:xq="http://quote.xquery/client" + name="xqueryquotewsclient"> + + <component name="QuoteJoinLocalComponent"> + <implementation.java class="xquery.quote.QuoteJoinLocalImpl" /> + <reference name="quoteJoin" target="QuoteJoinComponent" /> + <reference name="propertiesQuoteJoin" target="QuoteJoinPropertiesComponent" /> + <reference name="externalServicesQuoteJoin" target="QuoteJoinExternalReferencesComponent" /> + </component> + + <component name="QuoteJoinComponent"> + <tuscany:implementation.xquery location="META-INF/sca/quote_join.xq" /> + <reference name="quoteCalculator" target="QuoteCalculatorComponent" /> + </component> + + <component name="QuoteJoinPropertiesComponent"> + <tuscany:implementation.xquery location="META-INF/sca/quote_join_properties.xq" /> + <!-- Reset the default namespace as the sub-elements under pri:priceQuote are + unqualified --> + <property name="priceQuoteDoc"> + <pri:priceQuote xmlns:pri="http://www.example.org/price" xmlns=""> + <customerName>Acme Inc</customerName> + <shipAddress street="12 Springs Rd" city="Morris Plains" state="nj" zip="07960" /> + <priceRequests> + <priceRequest> + <widgetId>12</widgetId> + <price>1.0</price> + </priceRequest> + <priceRequest> + <widgetId>134</widgetId> + <price>34.1</price> + </priceRequest> + <priceRequest> + <widgetId>211</widgetId> + <price>10.0</price> + </priceRequest> + </priceRequests> + </pri:priceQuote> + </property> + <!-- Reset the default namespace as the sub-elements under ava:availQuote are + unqualified --> + + <property name="availQuoteDoc"> + <ava:availQuote xmlns:ava="http://www.example.org/avail" xmlns=""> + <availRequest> + <widgetId>12</widgetId> + <requestedQuantity>10</requestedQuantity> + <quantityAvail>true</quantityAvail> + <shipDate>2003-03-22</shipDate> + </availRequest> + <availRequest> + <widgetId>134</widgetId> + <requestedQuantity>345</requestedQuantity> + <quantityAvail>false</quantityAvail> + <shipDate>BackOrder</shipDate> + </availRequest> + <availRequest> + <widgetId>211</widgetId> + <requestedQuantity>100</requestedQuantity> + <quantityAvail>true</quantityAvail> + <shipDate>2003-04-21</shipDate> + </availRequest> + </ava:availQuote> + </property> + <property name="taxRate">0.1</property> + <reference name="quoteCalculator" target="QuoteCalculatorComponent" /> + </component> + + <component name="QuoteJoinExternalReferencesComponent"> + <tuscany:implementation.xquery location="META-INF/sca/quote_join_external_references.xq" /> + <reference name="quoteCalculator" target="QuoteCalculatorComponent" /> + <reference name="priceQuoteProvider" target="PriceQuoteProviderComponent" /> + </component> + + <component name="QuoteCalculatorComponent"> + <implementation.java class="xquery.quote.QuoteCalculatorImpl" /> + </component> + + <component name="PriceQuoteProviderComponent"> + <implementation.java class="xquery.quote.PriceQuoteProviderImpl" /> + </component> + + <reference name="availQuoteProvider" promote="QuoteJoinExternalReferencesComponent/availQuoteProvider"> + <interface.java interface="xquery.quote.AvailQuoteProviderService" /> + <binding.ws wsdlElement="http://quote.xquery#wsdl.port(AvailQuoteProviderService/AvailQuoteProviderSoapPort)" /> + </reference> + <reference name="quoteJoinWs" promote="QuoteJoinLocalComponent/quoteJoinWs"> + <interface.java interface="xquery.quote.QuoteJoin" /> + <binding.ws wsdlElement="http://quote.xquery#wsdl.port(QuoteJoinService/QuoteJoinSoapPort)" /> + </reference> +</composite> |