ApacheCXF - an example of web.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/...
Here is the git hub url for an example of ApacheCXF with websocket. https://github.com/apache/cxf/tree/master/distribution/src/main/release/samples/jax_rs/we...
you can specify the max HTTP header size for Tomcap by modifying the file in conf/server.xml as shown below. This example set max HTTP header size 24KB(24576...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 String xml = getResourceString("/test_files/TestProperties.xml"); private String getResou...
In order to enable log4j settings in maven compilation, log4j.properties file should be in the test/resources directory. Sample unit test class 1 2 3 4 5 6 7...