diff --git a/src/main/java/org/gcube/datatransfer/resolver/services/WekeoResolver.java b/src/main/java/org/gcube/datatransfer/resolver/services/WekeoResolver.java index 572fb2b..0408f65 100644 --- a/src/main/java/org/gcube/datatransfer/resolver/services/WekeoResolver.java +++ b/src/main/java/org/gcube/datatransfer/resolver/services/WekeoResolver.java @@ -185,7 +185,7 @@ public class WekeoResolver { @GET @Produces({MediaType.TEXT_HTML}) - @Path("") + @Path("/") public InputStream index(@Context HttpServletRequest req) throws WebApplicationException{ String indexFile = "/WEB-INF/jsp/wekeo.jsp"; @@ -198,7 +198,7 @@ public class WekeoResolver { if(!(e instanceof WebApplicationException)){ //UNEXPECTED EXCEPTION managing it as WebApplicationException - String error = "Index.jsp not found. Please, contact the support!"; + String error = "wekeo.jsp not found. Please, contact the support!"; throw ExceptionManager.internalErrorException(req, error, this.getClass(), null); } //ALREADY MANAGED AS WebApplicationException