users@jax-rpc.java.net

problems compiling a WSDL file

From: Top Secret <djabolic_at_libero.it>
Date: Tue, 06 May 2003 14:21:18 +0200

Hi,
i'm new to jaxrpc,
i'm trying to compile the following, very simple, WSDL file using wscompile (with the -import option)

<wsdl:definitions name="asta-RfQ"
 targetNamespace="http://www.doccelli.it/asta.wsdl"
 xmlns:tns="http://www.doccelli.it/asta.wsdl"
 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
 xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
 xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
 xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding">
 
 <wsdl:message name="selectQuoteResp">
  <wsdl:part name="result" type="xsd:string"/>
  <wsdl:part name="selectedQuote" type="xsd:string"/>
  <wsdl:part name="rfqK" type="xsd:string"/>
 </wsdl:message>
 
 <wsdl:message name="genericAck">
  <wsdl:part name="ack" type="xsd:string"/>
 </wsdl:message>
 
 <wsdl:portType name="rfqPortType">
  <wsdl:operation name="selectQuoteEnd" parameterOrder="result selectedQuote rfqK">
   <wsdl:input message="tns:selectQuoteResp"/>
   <wsdl:output message="tns:genericAck"/>
  </wsdl:operation>
 </wsdl:portType>
 
 <wsdl:binding name="rfqPortBinding" type="tns:rfqPortType">
  <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
  <wsdl:operation name="selectQuoteEnd">
   <soap:operation soapAction="http://www.doccelli.it/selectQuoteEnd"/>
   <wsdl:input>
    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding"/>
   </wsdl:input>
   <wsdl:output>
    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding"/>
   </wsdl:output>
  </wsdl:operation>
 </wsdl:binding>
 
 <wsdl:service name="RfQ">
  <wsdl:port name="rfqPort" binding="tns:rfqPortBinding">
   <soap:address location="http://localhost/bpml_engine/asta/rfq"/>
  </wsdl:port>
 </wsdl:service>
</wsdl:definitions>

but i obtain an error message saying:
"warning: ignoring RPC-style operation selectedQuoteEnd: parameters are not encoded
 warning: Port rfqPort does not contain any usable operation"

what does the first warning mean?

thanks