summaryrefslogtreecommitdiff
path: root/Year_3/TSDWL/WSDL/FootballClient/build/web
diff options
context:
space:
mode:
Diffstat (limited to 'Year_3/TSDWL/WSDL/FootballClient/build/web')
-rw-r--r--Year_3/TSDWL/WSDL/FootballClient/build/web/META-INF/MANIFEST.MF2
-rw-r--r--Year_3/TSDWL/WSDL/FootballClient/build/web/META-INF/context.xml2
-rw-r--r--Year_3/TSDWL/WSDL/FootballClient/build/web/WEB-INF/classes/.netbeans_automatic_build0
-rw-r--r--Year_3/TSDWL/WSDL/FootballClient/build/web/WEB-INF/classes/.netbeans_update_resources0
-rw-r--r--Year_3/TSDWL/WSDL/FootballClient/build/web/WEB-INF/jax-ws-catalog.xml4
-rw-r--r--Year_3/TSDWL/WSDL/FootballClient/build/web/index.html16
-rw-r--r--Year_3/TSDWL/WSDL/FootballClient/build/web/list.jsp24
-rw-r--r--Year_3/TSDWL/WSDL/FootballClient/build/web/search.html22
8 files changed, 70 insertions, 0 deletions
diff --git a/Year_3/TSDWL/WSDL/FootballClient/build/web/META-INF/MANIFEST.MF b/Year_3/TSDWL/WSDL/FootballClient/build/web/META-INF/MANIFEST.MF
new file mode 100644
index 0000000..59499bc
--- /dev/null
+++ b/Year_3/TSDWL/WSDL/FootballClient/build/web/META-INF/MANIFEST.MF
@@ -0,0 +1,2 @@
+Manifest-Version: 1.0
+
diff --git a/Year_3/TSDWL/WSDL/FootballClient/build/web/META-INF/context.xml b/Year_3/TSDWL/WSDL/FootballClient/build/web/META-INF/context.xml
new file mode 100644
index 0000000..a3b375b
--- /dev/null
+++ b/Year_3/TSDWL/WSDL/FootballClient/build/web/META-INF/context.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Context path="/FootballClient"/>
diff --git a/Year_3/TSDWL/WSDL/FootballClient/build/web/WEB-INF/classes/.netbeans_automatic_build b/Year_3/TSDWL/WSDL/FootballClient/build/web/WEB-INF/classes/.netbeans_automatic_build
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/Year_3/TSDWL/WSDL/FootballClient/build/web/WEB-INF/classes/.netbeans_automatic_build
diff --git a/Year_3/TSDWL/WSDL/FootballClient/build/web/WEB-INF/classes/.netbeans_update_resources b/Year_3/TSDWL/WSDL/FootballClient/build/web/WEB-INF/classes/.netbeans_update_resources
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/Year_3/TSDWL/WSDL/FootballClient/build/web/WEB-INF/classes/.netbeans_update_resources
diff --git a/Year_3/TSDWL/WSDL/FootballClient/build/web/WEB-INF/jax-ws-catalog.xml b/Year_3/TSDWL/WSDL/FootballClient/build/web/WEB-INF/jax-ws-catalog.xml
new file mode 100644
index 0000000..fa89486
--- /dev/null
+++ b/Year_3/TSDWL/WSDL/FootballClient/build/web/WEB-INF/jax-ws-catalog.xml
@@ -0,0 +1,4 @@
+<?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/build/web/index.html b/Year_3/TSDWL/WSDL/FootballClient/build/web/index.html
new file mode 100644
index 0000000..c627c24
--- /dev/null
+++ b/Year_3/TSDWL/WSDL/FootballClient/build/web/index.html
@@ -0,0 +1,16 @@
+<!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/build/web/list.jsp b/Year_3/TSDWL/WSDL/FootballClient/build/web/list.jsp
new file mode 100644
index 0000000..fba56fa
--- /dev/null
+++ b/Year_3/TSDWL/WSDL/FootballClient/build/web/list.jsp
@@ -0,0 +1,24 @@
+<%--
+ 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/build/web/search.html b/Year_3/TSDWL/WSDL/FootballClient/build/web/search.html
new file mode 100644
index 0000000..4cac9f3
--- /dev/null
+++ b/Year_3/TSDWL/WSDL/FootballClient/build/web/search.html
@@ -0,0 +1,22 @@
+<!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>