diff options
author | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2009-09-09 16:30:23 +0000 |
---|---|---|
committer | nash <nash@13f79535-47bb-0310-9956-ffa450edef68> | 2009-09-09 16:30:23 +0000 |
commit | df3251c5445b4e5efa48e20aab130157b873a6fc (patch) | |
tree | be392a6388c7d925daaa605609051c27ef504a6a /sandbox/travelsample/contributions | |
parent | f98a909daffd9536c3d6fde37ad11e37dc2e46a3 (diff) |
Use interface.wsdl for Payment service and payment reference as workaround for TUSCANY-3267
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@813041 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/travelsample/contributions')
2 files changed, 4 insertions, 0 deletions
diff --git a/sandbox/travelsample/contributions/payment-spring-scatag-contribution/src/main/resources/payment.composite b/sandbox/travelsample/contributions/payment-spring-scatag-contribution/src/main/resources/payment.composite index b864c43931..6affd216fb 100644 --- a/sandbox/travelsample/contributions/payment-spring-scatag-contribution/src/main/resources/payment.composite +++ b/sandbox/travelsample/contributions/payment-spring-scatag-contribution/src/main/resources/payment.composite @@ -26,6 +26,8 @@ <component name="PaymentComponent"> <implementation.spring location="Payment-context.xml"/> <service name="Payment"> + <!-- use interface.wsdl to work around TUSCANY-3267 --> + <interface.wsdl interface="http://www.tuscanyscatours.com/Payment/#wsdl.interface(Payment)" /> <binding.ws uri="http://localhost:8081/Payment"/> </service> <reference name="creditCardPayment"> diff --git a/sandbox/travelsample/contributions/payment-spring-scatag-contribution/src/test/resources/payment-client.composite b/sandbox/travelsample/contributions/payment-spring-scatag-contribution/src/test/resources/payment-client.composite index e983bd1d52..1921665d83 100644 --- a/sandbox/travelsample/contributions/payment-spring-scatag-contribution/src/test/resources/payment-client.composite +++ b/sandbox/travelsample/contributions/payment-spring-scatag-contribution/src/test/resources/payment-client.composite @@ -26,6 +26,8 @@ <component name="PaymentClient"> <implementation.java class="payment.client.PaymentClientImpl" /> <reference name="payment"> + <!-- use interface.wsdl to work around TUSCANY-3267 --> + <interface.wsdl interface="http://www.tuscanyscatours.com/Payment/#wsdl.interface(Payment)" /> <binding.ws uri="http://localhost:8081/Payment" /> </reference> </component> |