diff options
Diffstat (limited to 'Year_3/TSDWL/WSDL/FootballClient/web')
5 files changed, 0 insertions, 68 deletions
diff --git a/Year_3/TSDWL/WSDL/FootballClient/web/META-INF/context.xml b/Year_3/TSDWL/WSDL/FootballClient/web/META-INF/context.xml deleted file mode 100644 index a3b375b..0000000 --- a/Year_3/TSDWL/WSDL/FootballClient/web/META-INF/context.xml +++ /dev/null @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<Context path="/FootballClient"/> diff --git a/Year_3/TSDWL/WSDL/FootballClient/web/WEB-INF/jax-ws-catalog.xml b/Year_3/TSDWL/WSDL/FootballClient/web/WEB-INF/jax-ws-catalog.xml deleted file mode 100644 index fa89486..0000000 --- a/Year_3/TSDWL/WSDL/FootballClient/web/WEB-INF/jax-ws-catalog.xml +++ /dev/null @@ -1,4 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog" prefer="system"> - <system systemId="https://ws.footballpool.dataaccess.eu/info.wso?WSDL" uri="wsdl/ws.footballpool.dataaccess.eu/info.wso.wsdl"/> -</catalog>
\ No newline at end of file diff --git a/Year_3/TSDWL/WSDL/FootballClient/web/index.html b/Year_3/TSDWL/WSDL/FootballClient/web/index.html deleted file mode 100644 index c627c24..0000000 --- a/Year_3/TSDWL/WSDL/FootballClient/web/index.html +++ /dev/null @@ -1,16 +0,0 @@ -<!DOCTYPE html> -<!-- -To change this license header, choose License Headers in Project Properties. -To change this template file, choose Tools | Templates -and open the template in the editor. ---> -<html> - <head> - <title>TODO supply a title</title> - <meta charset="UTF-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - </head> - <body> - <div>TODO write content</div> - </body> -</html> diff --git a/Year_3/TSDWL/WSDL/FootballClient/web/list.jsp b/Year_3/TSDWL/WSDL/FootballClient/web/list.jsp deleted file mode 100644 index fba56fa..0000000 --- a/Year_3/TSDWL/WSDL/FootballClient/web/list.jsp +++ /dev/null @@ -1,24 +0,0 @@ -<%-- - Document : list - Created on : Jan 19, 2022, 8:53:23 PM - Author : dcariotti ---%> - -<%@page import="https.footballpool_dataaccess.ArrayOftStadiumInfo"%> -<%@page import="https.footballpool_dataaccess.TStadiumInfo"%> -<%@page import="java.util.List"%> -<%@page contentType="text/html" pageEncoding="UTF-8"%> -<!DOCTYPE html> -<html> - <head> - <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> - <title>Stadium list</title> - </head> - <body> - <h1>Stadium list</h1> - <% List<TStadiumInfo> stadiums = (List<TStadiumInfo>) request.getAttribute("stadiumList"); %> - <% for (TStadiumInfo stadium : stadiums) { %> - <p><%= stadium.getSName() %></p> - <% } %> - </body> -</html> diff --git a/Year_3/TSDWL/WSDL/FootballClient/web/search.html b/Year_3/TSDWL/WSDL/FootballClient/web/search.html deleted file mode 100644 index 4cac9f3..0000000 --- a/Year_3/TSDWL/WSDL/FootballClient/web/search.html +++ /dev/null @@ -1,22 +0,0 @@ -<!DOCTYPE html> -<!-- -To change this license header, choose License Headers in Project Properties. -To change this template file, choose Tools | Templates -and open the template in the editor. ---> -<html> - <head> - <title>Search a stadium</title> - <meta charset="UTF-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - </head> - <body> - <form method="post"> - <div> - <label for="name">Insert a name: </label> - <input name="name" id="name" type="text" required> - </div> - <button type="submit">Search</button> - </form> - </body> -</html> |