Is there any way to customize the <out> element produced by Aegis when
using the ?wsdl auto-generation process?
WSDL Snippet from ?wsdl (Is there a way to change name="out" to name="Test") :
<xsd:element name="findTestResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element maxOccurs="1" minOccurs="1"
name="out" nillable="true" type="ns1:Test" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
I am attempting to use the services.xml to quickly expose a DAO method
as a web service to familiarize myself with XFire. I know that the
tag emitted can be changed when using annotations and a binding
framework that supports them. I got it to work by using annotations
with JAXB 2 service factory. However, would rather do everything with
the xml file.
Java with annotation :
@WebResult(name = "Test")
public Test findTest(Integer id) {
---------------------------------------------------------------------
To unsubscribe from this list please visit:
http://xircles.codehaus.org/manage_email