I'm trying to make a call from Tuscany to an external webservice. I
think I have it set up correctly, but it gives the same error each time.
It's running in a Tomcat Container.
The error I'm getting is
Caused by: org.osoa.sca.ServiceRuntimeException: No runtime wire is
available
at
org.apache.tuscany.sca.core.invocation.JDKInvocationHandler.invoke(JDKIn
vocationHandler.java:186)
and my composite looks like this
<?xml version="1.0" encoding="UTF-8"?>
<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
targetNamespace="com.mycompany.myproduct.mymodule"
name="mymodule">
<component name="MyModule">
<implementation.spring
location="WEB-INF/classes/applicationContext.xml" />
<service name="MyService">
<binding.ws />
</service>
</component>
<reference name="myServiceProvider">
<interface.java
interface="com.mycompany.soa.webservices.SuperServiceSkeletonInterface"
/>
<binding.ws
uri="http://soa.0002.dev.mycompany.com/SuperFacility/SuperService.asmx"
/>
</reference>
</composite>
Any suggestions?