Here is the form/function of my WSDL:
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="http://company.com/project/services"
xmlns:svc="http://company.com/project/services"
xmlns:persist="http://company.com/project/data"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/">
<wsdl:types>
<schema elementFormDefault="qualified"
targetNamespace="http://company.com/project/services"
xmlns="http://www.w3.org/2001/XMLSchema">
<import namespace="http://company.com/project/data"
schemaLocation="MyDataRecord.xsd"/>
<element name="publishMyData">
<complexType>
<sequence>
<element name="reports" minOccurs="0" maxOccurs="unbounded"
type="persist:MyDataRecordType"/>
</sequence>
</complexType>
</element>
</schema>
</wsdl:types>
<wsdl:message name="publishMyDataRequest">
<wsdl:part element="svc:publishMyData" name="parameters"/>
</wsdl:message>
<wsdl:portType name="MyDataConsumer">
<wsdl:operation name="publishMyData">
<wsdl:input message="svc:publishMyDataRequest"
name="publishMyDataRequest"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="MyDataConsumerSOAPBinding" type="svc:MyDataConsumer">
<wsdlsoap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="publishMyData">
<wsdlsoap:operation soapAction="urn:publishMyData"/>
<wsdl:input name="publishMyDataRequest">
<wsdlsoap:body use="literal"/>
</wsdl:input>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="MyDataConsumer">
<wsdl:port name="MyDataConsumer"
binding="svc:MyDataConsumerSOAPBinding">
<wsdlsoap:address
location="http://localhost:8080/axis2/services/MyDataConsumer"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
--
View this message in context:
http://www.nabble.com/Cannot-Find-Symbol-receiveResultpublishMyData%28%29-tf3603009.html#a10140870
Sent from the Axis - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]