getting :Missing credentials error
below is the java code to fetch response, but getting :Missing credentials error ,Could you please advise
Note also set ${Authoritzation} in Header
WsdlProject project = new WsdlProject("C:/Users/Desktop/soft/ssoapui-project.xml");
testSuite = project.getTestSuiteList();
caseList=testSuite.get(0).getTestCaseList();
for (TestCase testCase :caseList) {
System.out.println("TestCases........." + testCase.getName());
testCase.setPropertyValue("username","rr");
StringToObjectMap properties = new StringToObjectMap();
properties.put("Authorization","Basic QUFBQldFUzQ0TkVBQ1dwaVlYSjBiMnhrYVFBQ");
List<TestStep> testSteps = testCase.getTestStepList();
WsdlTestCaseRunner wsdlTestCaseRunner = new WsdlTestCaseRunner((WsdlTestCase) testCase, properties);
WsdlTestRunContext wsdlTestRunContext = wsdlTestCaseRunner.createContext(properties);
wsdlTestCaseRunner.run();