SOAP ํต์ ์ ํตํด์ output์ xmlํ์์ผ๋ก ๋ฐ์๋ค. ๊ทธ output์ xmlOutput์ ์ ์ฅ๋์ด ์๋ค. ํ๋ก ํธ์๋์ json ํ์์ผ๋ก ๋ณด๋ด์ฃผ๊ธฐ ์ํด์ json์ผ๋ก ๋ณํํด์ผ ํ๋ค. XML to Json // XmlMapper๋ฅผ ์ฌ์ฉํ์ฌ XML์ JSON์ผ๋ก ๋ณํ XmlMapper xmlMapper = new XmlMapper(); JsonNode jsonNode = xmlMapper.readTree(xmlOutput.getBytes()); // JSON ๊ฐ์ฒด๋ฅผ ๋ฌธ์์ด๋ก ๋ณํ ObjectMapper objectMapper = new ObjectMapper(..