diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2009-06-17 07:39:58 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2009-06-17 07:39:58 +0000 |
commit | a1c9138328d18948c1249d2853b3a15c171363fc (patch) | |
tree | 7745bed46afda79c794f4c6f9cfe6f4bcf20eef6 /sandbox/travelsample/contributions/fullapp-frontend-contribution/src | |
parent | 4c1f1fa0c13fb5c8fc45d2b3dfa38f84a0d71738 (diff) |
Added names to callback bindings to avoid warning messages
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@785494 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample/contributions/fullapp-frontend-contribution/src')
-rw-r--r-- | sandbox/travelsample/contributions/fullapp-frontend-contribution/src/main/resources/scatours.composite | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sandbox/travelsample/contributions/fullapp-frontend-contribution/src/main/resources/scatours.composite b/sandbox/travelsample/contributions/fullapp-frontend-contribution/src/main/resources/scatours.composite index f3e445312a..403882ce26 100644 --- a/sandbox/travelsample/contributions/fullapp-frontend-contribution/src/main/resources/scatours.composite +++ b/sandbox/travelsample/contributions/fullapp-frontend-contribution/src/main/resources/scatours.composite @@ -29,7 +29,8 @@ <reference name="hotelSearch"> <binding.ws uri="http://localhost:8086/Hotel/Search"/> <callback> - <binding.ws uri="http://localhost:8084/Hotel/SearchCallback"/> + <binding.ws name="callback" + uri="http://localhost:8084/Hotel/SearchCallback"/> </callback> </reference> <reference name="flightSearch"> @@ -37,19 +38,22 @@ callbackInterface="scatours.common.SearchCallback"/> <binding.ws uri="http://localhost:8086/Flight/Search"/> <callback> - <binding.ws uri="http://localhost:8084/Flight/SearchCallback"/> + <binding.ws name="callback" + uri="http://localhost:8084/Flight/SearchCallback"/> </callback> </reference> <reference name="carSearch"> <binding.ws uri="http://localhost:8086/Car/Search"/> <callback> - <binding.ws uri="http://localhost:8084/Car/SearchCallback"/> + <binding.ws name="callback" + uri="http://localhost:8084/Car/SearchCallback"/> </callback> </reference> <reference name="tripSearch"> <binding.ws uri="http://localhost:8085/Trip/Search"/> <callback> - <binding.ws uri="http://localhost:8084/Trip/SearchCallback"/> + <binding.ws name="callback" + uri="http://localhost:8084/Trip/SearchCallback"/> </callback> </reference> <reference name="currencyConverter" target="CurrencyConverterComponent"> |