I have an external Rest Web Service which returns JSON Object.
Url Pattern: http-://Server_IP:Port/auth/Login. I would like to capture the json and using camel-jetty for the same.. The Problem is that it shows 'Address Already In Use'
Could anyone guide me the exact procedure to use a camel component to achieve the same??
from("jetty://http://ServerIP:8097/ServerReportRest/Auth/login")
.to("log:INFO");
}
});