Hi, I've configured a simple CXF endpoit with spring wich expose a simple object with a java.util.Date property. once remotely invoked with a .NET client the date property is always null.
endopit:
<jaxws:endpoint id="simpleService" implementor="cxf.base.SimpleServiceImpl" address="/SimpleService" />
.NET call:
SimpleServiceClient client = new SimpleServiceClient();
simpleObject simpleObject = new simpleObject();
simpleObject.date = new DateTime(2010, 1, 1);
simpleObject.name = "Simple Object";
txtResult.Text = client.toString(simpleObject);
where toString is the exposde webservice method.
Any idea what I am missing here ?