public void addCredsToScenarioWideDPL() throws Exception{ ScenarioWideDPL dpl = new ScenarioWideDPL(); dpl.setup("http://localhost:8080/AppvanceServices", "BasicStorage",true); HashMap map = new HashMap(); String[] keys= {"Username", "Password", "UserID"}; String[] vals= {"aburma@salesforce.com.test", "Appvance123", "13928"}; for(int i= 0; i < keys.length; i++){ map.put(keys[i], vals[i]); System.out.println("Storing #"+i+" : "+keys[i].toString()+" : "+vals[i].toString()); } dpl.put(map); } }