task_20993 #1

Merged
francesco.mangiacrapa merged 17 commits from task_20993 into master 2021-04-09 11:11:49 +02:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 93d189b0ed - Show all commits

View File

@ -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