@GET
@Produces("application/json")
@Path("/v1//{para1}/{para2}")
public String registerEvent(@PathParam("para1") String id,
@PathParam("para2") String ofId) { }
This is the used to receive an API from a server in my middleware. Is it possible to get the sender IP address of the API.
Any information, documentation will be helpful.