Hello,I am trying to find out how to configure a web-proxy for a simple frontend as it is described here:
http://cwiki.apache.org/CXF20DOC/simple-frontend.html ClientProxyFactoryBean factory = new ClientProxyFactoryBean(); factory.setServiceClass(HelloWorld.class); factory.setAddress("http://localhost:9000/Hello"); HelloWorld client = (HelloWorld) factory.create();
Where can I configure a web-proxy? Thanks for help, -- Christian Schuhegger http://www.el-chef.de/
