Should it be possible to have an entryPoint using the WS binding without a
pre-generated WSDL document?
Axis2 has the ability to automatically generate a WSDL document at runtime
based on the service interface, so if the entryPoint is using
interface.javainstead of
interface.wsdl then really there doesn't need to be an existing WSDL
document does there?
You could have something like this:
<entryPoint name="AccountService">
<interface.java interface="
org.apache.tuscany.binding.axis2.assembly.tests.bigbank.account.services.account.AccountService
"/>
<binding.ws/>
<reference>AccountServiceComponent</reference>
</entryPoint>
or perhaps allow changing the default path the service is exposed at with
something like <binding.ws path="services/MyAccountService"/>
...ant