Wsdl for the service.
<?xml version="1.0" ?><wsdl:definitions name="TestService"
targetNamespace="http://serviceImpl/" xmlns:ns1="http://service/"
xmlns:ns2="http://cxf.apache.org/bindings/xformat"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://serviceImpl/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<wsdl:import
location="http://localhost:8080/CxfTestTwo/Test?wsdl=Test.wsdl"
namespace="http://service/">
</wsdl:import>
<wsdl:message name="sayIntegerResponse">
<wsdl:part element="ns1:sayIntegerResponse" name="parameters">
</wsdl:part>
</wsdl:message>
<wsdl:message name="sayInteger">
<wsdl:part element="ns1:sayInteger" name="parameters">
</wsdl:part>
</wsdl:message>
<wsdl:binding name="TestServiceSoapBinding" type="ns1:Test">
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http"></soap:binding>
<wsdl:operation name="sayInteger">
<soap:operation soapAction="" style="document"></soap:operation>
<wsdl:input name="sayInteger">
<soap:body use="literal"></soap:body>
</wsdl:input>
<wsdl:output name="sayIntegerResponse">
<soap:body use="literal"></soap:body>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="TestService">
<wsdl:port binding="tns:TestServiceSoapBinding" name="TestImplPort">
<soap:address
location="http://localhost:8080/CxfTestTwo/Test"></soap:address>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
Andrew Clegg wrote:
>
> 2009/1/8 tremek <[email protected]>:
>>
>> Hi.
>> I add the schema validation just like in this exemple
>> http://cxf.apache.org/faq.html#FAQ-JAXWSRelated
>> and nothing happens. No exception. I still have null when i call function
>> with "21aa" parameter.
>
> Can you post the wsdl for the service please?
>
> Andrew.
>
>
--
View this message in context:
http://www.nabble.com/Cxf%2C-parameter-function-problem.-tp21310503p21348899.html
Sent from the cxf-user mailing list archive at Nabble.com.