diff options
author | Santo Cariotti <santo@dcariotti.me> | 2022-01-18 20:31:22 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2022-01-18 20:31:22 +0100 |
commit | 6f0592cb2b753fb47297464a3fa1a312620da3ba (patch) | |
tree | 00a7cfac379331fd79aea4892f04435172e5761d /Year_3/TSDWL/WSDL/NetSix/NetSixServer/build/web/WEB-INF | |
parent | 906405bab5c8b1a445e5d0408d38dddb1f504747 (diff) |
Add WSDL exercise
Diffstat (limited to 'Year_3/TSDWL/WSDL/NetSix/NetSixServer/build/web/WEB-INF')
4 files changed, 22 insertions, 0 deletions
diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServer/build/web/WEB-INF/classes/.netbeans_automatic_build b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/build/web/WEB-INF/classes/.netbeans_automatic_build new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/build/web/WEB-INF/classes/.netbeans_automatic_build diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServer/build/web/WEB-INF/classes/.netbeans_update_resources b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/build/web/WEB-INF/classes/.netbeans_update_resources new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/build/web/WEB-INF/classes/.netbeans_update_resources diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServer/build/web/WEB-INF/glassfish-web.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/build/web/WEB-INF/glassfish-web.xml new file mode 100644 index 0000000..13e0059 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/build/web/WEB-INF/glassfish-web.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE glassfish-web-app PUBLIC "-//GlassFish.org//DTD GlassFish Application Server 3.1 Servlet 3.0//EN" "http://glassfish.org/dtds/glassfish-web-app_3_0-1.dtd"> +<glassfish-web-app error-url=""> + <class-loader delegate="true"/> + <jsp-config> + <property name="keepgenerated" value="true"> + <description>Keep a copy of the generated servlet class' java code.</description> + </property> + </jsp-config> +</glassfish-web-app> diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServer/build/web/WEB-INF/web.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/build/web/WEB-INF/web.xml new file mode 100644 index 0000000..6058a36 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/build/web/WEB-INF/web.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" + version="3.1"> + <session-config> + <session-timeout> + 30 + </session-timeout> + </session-config> +</web-app> |