TUSCANY-2417: fix callback-ws sample to work by using explicit callback uri

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@673714 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
antelder 2008-07-03 15:39:32 +00:00
parent 15edefdfc3
commit b1f67f49a6
2 changed files with 3 additions and 3 deletions
branches/sca-java-1.3/samples
callback-ws-client/src/main/resources
callback-ws-service/src/main/resources

View file

@ -28,7 +28,7 @@
callbackInterface="myserver.MyServiceCallback" />
<binding.ws uri="http://localhost:8086/MyServiceComponent" />
<callback>
<binding.ws />
<binding.ws uri="http://localhost:8087/MyServiceComponentCB"/>
</callback>
</reference>
</component>

View file

@ -22,13 +22,13 @@
name="callbackws">
<component name="MyServiceComponent">
<implementation.java class="myserver.MyServiceImpl" />
<implementation.java class="myserver.MyServiceImpl" />
<service name="MyService">
<interface.java interface="myserver.MyService"
callbackInterface="myserver.MyServiceCallback" />
<binding.ws uri="http://localhost:8086/MyServiceComponent" />
<callback>
<binding.ws />
<binding.ws uri="http://localhost:8087/MyServiceComponentCB"/>
</callback>
</service>
</component>