Hi,

I can't see the operations parameters are missing, what you pasted here is only the binding part. I believe you can find all your parameters from http://x.x.x.x/xyz/ services/RepurchaseResellNoReturnRequester? wsdl=RepurchaseResellNoReturnRequester.wsdl where should have schema and message part.

Freeman
On 2011-9-28, at 下午4:17, <[email protected]> <Andre.Janus@t-systems .com> wrote:

Hi,

I got a question regarding the WSDL generated by CXF:

Using a Java-first approach I want to use the generated WSDL (availabe under .../services/...?wsdl) to give third-party systems an description of my web service methods. But the WSDL looks very poor, because the Method/Operation Parameters are missing:

<wsdl:definitions name="RepurchaseResellNoReturnRequester" targetNamespace="http://www.springframework.org/schema/beans";> <wsdl:import location="http://x.x.x.x/xyz/services/ RepurchaseResellNoReturnRequester? wsdl=RepurchaseResellNoReturnRequester.wsdl" namespace="http://repurchaseresellnoreturn.xyz.de/ ">
       </wsdl:import>
<wsdl:binding name="RepurchaseResellNoReturnRequesterSoapBinding" type="ns1:RepurchaseResellNoReturnRequester"> <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http "/>
                               <wsdl:operation name="resell1">
<soap:operation soapAction="" style="document"/>
                                       <wsdl:input name="resell1">
<soap:body use="literal"/>
                                       </wsdl:input>
<wsdl:output name="resell1Response"> <soap:body use="literal"/>
                                       </wsdl:output>
                               </wsdl:operation>
[...]

Here is the Java Source:

@WebService
public interface RepurchaseResellNoReturnRequester

[...]

@WebResult(name = "out", targetNamespace = "")
@RequestWrapper(localName = "resell1", targetNamespace = "http://repurchaseresellnoreturn.xyz.de ")
   @WebMethod(operationName = "resell1")
@ResponseWrapper(localName = "resell1", targetNamespace = "http://repurchaseresellnoreturn.xyz.de ") VORepurchaseResellNoReturnTransferContainer resell(@WebParam(name = "in0", targetNamespace = "") String fileNumber, @WebParam(name = "in1", targetNamespace = "") Date salesDate, @WebParam(name = "in2", targetNamespace = "") BigDecimal salesPrice, @WebParam(name = "in3", targetNamespace = "") String resellingCenter, @WebParam(name = "in4", targetNamespace = "") String centerIdType, @WebParam(name = "in5", targetNamespace = "") String sourceSystem);

And here is a part of the services.xml:

<bean id="aegisBean" class="org.apache.cxf.aegis.databinding.AegisDatabinding"
               scope="prototype" />

<bean id="jaxws-and-aegis-service-factory" class="org.apache.cxf.jaxws.support.JaxWsServiceFactoryBean"
               scope="prototype">
               <property name="dataBinding" ref="aegisBean" />
       </bean>

<jaxws:endpoint serviceName="RepurchaseResellNoReturnRequester"
               address="/RepurchaseResellNoReturnRequester">
               <jaxws:implementor>
                       <bean
class = "de .xyz .repurchaseresellnoreturn .impl.RepurchaseResellNoReturnRequesterImpl" />
               </jaxws:implementor>
               <jaxws:serviceFactory>
                       <ref bean='jaxws-and-aegis-service-factory' />
               </jaxws:serviceFactory>

       </jaxws:endpoint>

Has anyone an idea, what I can do? I previouisly used XFire for the same Source and got an WSDL with definitions of all Parameters.

Thanks in advance!
André


---------------------------------------------
Freeman Fang

FuseSource
Email:[email protected]
Web: fusesource.com
Twitter: freemanfang
Blog: http://freemanfang.blogspot.com









Reply via email to