@Test
public void testGetSayHiFromQueryRandomOrderFault() throws Exception {
message.put(Message.PATH_INFO, "/SOAPServiceRPCLit/SoapPort/greetMe");
message.put(Message.QUERY_STRING, "me=king");
URIMappingInterceptor interceptor = new URIMappingInterceptor();
try {
interceptor.handleMessage(message);
} catch (Exception e) {
assertTrue(e instanceof Fault);
assertEquals("Parameter should be ordered in the following sequence: [in]", e.getMessage());
}
Object parameters = message.getContent(List.class);