requestcontext.put("passwd", "xx");
logInfo.put("requestcontext", requestcontext );
Map<String,Object> clientLogin = new HashMap<String,Object>();
clientLogin.put("clientLogin", logInfo );
ByteArrayOutputStream JSON = new ByteArrayOutputStream();
new WSJSONWriter(JSON, clientLogin, null).write(null, null, null, null, null);
String getUiElements = JSON.toString();
System.out.println("IN: " + getUiElements);
String response = postOnEndPoint(getUiElements);
System.out.println("OUT: " + response);
String expectedRespone = "{\"statusFlag\":true,\"requestcontext\":{\"CaptchaToken\":\"DUMMY\",\"CaptchaUrl\":\"http:\\/\\/dummp.url\"}}";