Hello,
I got
"org.apache.cxf.binding.soap.SoapFault: Message part {
http://schemas.xmlsoap.org/ws/2005/02/rm}CreateSequence was not recognized."
Here is a code how I create a jaxws client:
[code]
public static <T> T getProxyWSHandleReliable(Class<T> clazz, String url)
{
JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();
factory.setServiceClass(clazz);
factory.setAddress(url);
factory.setBindingId(Constants.WSDL_SOAP12);
factory.getFeatures().add(new WSAddressingFeature());
factory.getFeatures().add(new RMFeature());
return clazz.cast(factory.create());
}
[/code]
Here is a declaration in the wsdl
[code]
<wsrm:RMAssertion xmlns:wsrm="
http://schemas.xmlsoap.org/ws/2005/02/rm/policy">
<wsrm:InactivityTimeout Milliseconds="600000"/>
<wsrm:AcknowledgementInterval Milliseconds="200"/>
</wsrm:RMAssertion>
[/code]
How to nail this problem?
Thanks in advance,
Oleg