Hello,
Trying to get working simplest client but no success:
interface HelloWorld { String hello(String name); }
ClientProxyFactoryBean factory = new ClientProxyFactoryBean();
factory.setServiceClass(HelloWorld.class);
factory.setAddress("http://localhost:9000/Hello");
HelloWorld client = (HelloWorld) factory.create();
System.out.println("say " + client.hello("Dan"));
// -- > prints: "say null". LoggingOutInterceptor shows succesful payLoad
but method returns null.
HelloWorld service implemented in PHP.
thanks.
--
View this message in context:
http://cxf.547215.n5.nabble.com/ClientProxyFactoryBean-method-return-null-tp4581005p4581005.html
Sent from the cxf-user mailing list archive at Nabble.com.