Hi,
I am trying to define the <wsdl:portType> name. When I do in the in services.xml the resulting WSDL has “PortType” appended to the service name (servicePortType).
How can I define the <wsdl:portType name=”serviceName”> without “PortType” appended to the serviceName?
Here is my services.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://xfire.codehaus.org/config/1.0">
<service>
<name>ServiceName</name>
<namespace>http://http.test.com/</namespace>
<serviceClass>
com.test.ServiceName
</serviceClass>
<style>document</style>
<use>literal</use>
<scope>application</scope>
</service>
</beans>
Resulting WSLD portType definition:
<wsdl:portType name="ServiceNamePortType">
<wsdl:operation name="example">
<wsdl:input name="exampleRequest" message="tns:exampleRequest">
</wsdl:input>
<wsdl:output name="exampleResponse" message="tns:exampleResponse">
</wsdl:output>
</wsdl:operation>
</wsdl:portType>
Any help is appreciated, thanks
Jon