From d62cdeb376fb5f0749ce637723a6cb305485aad8 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Wed, 19 Jan 2022 22:51:57 +0100 Subject: wsdl: add examples --- Year_3/TSDWL/WSDL/CountryClient/build.xml | 71 + Year_3/TSDWL/WSDL/CountryClient/catalog.xml | 4 + .../WSDL/CountryClient/nbproject/ant-deploy.xml | 76 + .../WSDL/CountryClient/nbproject/build-impl.xml | 1442 ++++++++++++++++ .../CountryClient/nbproject/genfiles.properties | 8 + .../TSDWL/WSDL/CountryClient/nbproject/jax-ws.xml | 38 + .../WSDL/CountryClient/nbproject/jaxws-build.xml | 46 + .../CountryClient/nbproject/project.properties | 84 + .../TSDWL/WSDL/CountryClient/nbproject/project.xml | 23 + .../TSDWL/WSDL/CountryClient/src/conf/MANIFEST.MF | 2 + .../CountryInfoService.wso.wsdl | 979 +++++++++++ .../java/it/dmi/tsdwl/country/CountryServlet.java | 75 + .../java/it/dmi/tsdwl/country/SearchCapital.java | 104 ++ .../WSDL/CountryClient/web/META-INF/context.xml | 2 + .../CountryClient/web/WEB-INF/jax-ws-catalog.xml | 4 + Year_3/TSDWL/WSDL/CountryClient/web/index.html | 16 + Year_3/TSDWL/WSDL/CountryClient/web/list.jsp | 24 + Year_3/TSDWL/WSDL/FootballClient/build.xml | 71 + Year_3/TSDWL/WSDL/FootballClient/catalog.xml | 4 + .../WSDL/FootballClient/nbproject/ant-deploy.xml | 76 + .../WSDL/FootballClient/nbproject/build-impl.xml | 1442 ++++++++++++++++ .../FootballClient/nbproject/genfiles.properties | 8 + .../TSDWL/WSDL/FootballClient/nbproject/jax-ws.xml | 38 + .../WSDL/FootballClient/nbproject/jaxws-build.xml | 46 + .../FootballClient/nbproject/project.properties | 84 + .../WSDL/FootballClient/nbproject/project.xml | 23 + .../TSDWL/WSDL/FootballClient/src/conf/MANIFEST.MF | 2 + .../ws.footballpool.dataaccess.eu/info.wso.wsdl | 1822 ++++++++++++++++++++ .../src/java/it/dmi/exams/tsdwl/StadiumInfo.java | 87 + .../src/java/it/dmi/exams/tsdwl/StadiumList.java | 103 ++ .../WSDL/FootballClient/web/META-INF/context.xml | 2 + .../FootballClient/web/WEB-INF/jax-ws-catalog.xml | 4 + Year_3/TSDWL/WSDL/FootballClient/web/index.html | 16 + Year_3/TSDWL/WSDL/FootballClient/web/list.jsp | 24 + Year_3/TSDWL/WSDL/FootballClient/web/search.html | 22 + Year_3/TSDWL/WSDL/NetSix/NetSixServer/build.xml | 71 + .../NetSix/NetSixServer/nbproject/ant-deploy.xml | 150 ++ .../NetSix/NetSixServer/nbproject/build-impl.xml | 1442 ++++++++++++++++ .../NetSixServer/nbproject/genfiles.properties | 8 + .../WSDL/NetSix/NetSixServer/nbproject/jax-ws.xml | 9 + .../NetSix/NetSixServer/nbproject/jaxws-build.xml | 35 + .../NetSixServer/nbproject/project.properties | 89 + .../WSDL/NetSix/NetSixServer/nbproject/project.xml | 21 + .../WSDL/NetSix/NetSixServer/src/conf/MANIFEST.MF | 2 + .../src/java/me/dcariotti/wsserv/WsServ.java | 46 + .../WSDL/NetSix/NetSixServer/web/WEB-INF/web.xml | 12 + .../TSDWL/WSDL/NetSix/NetSixServerClient/build.xml | 71 + .../WSDL/NetSix/NetSixServerClient/catalog.xml | 5 + .../NetSixServerClient/nbproject/ant-deploy.xml | 76 + .../NetSixServerClient/nbproject/build-impl.xml | 1442 ++++++++++++++++ .../nbproject/genfiles.properties | 8 + .../NetSix/NetSixServerClient/nbproject/jax-ws.xml | 42 + .../NetSixServerClient/nbproject/jaxws-build.xml | 46 + .../nbproject/project.properties | 84 + .../NetSixServerClient/nbproject/project.xml | 23 + .../NetSix/NetSixServerClient/src/conf/MANIFEST.MF | 2 + .../wsdl/localhost_8080/NetSixServer/WsServ.wsdl | 36 + .../localhost_8080/NetSixServer/WsServ.xsd_1.xsd | 19 + .../java/me/dcariotti/netsix/NetSixServlet.java | 122 ++ .../NetSixServerClient/web/META-INF/context.xml | 2 + .../web/WEB-INF/jax-ws-catalog.xml | 5 + .../WSDL/NetSix/NetSixServerClient/web/index.html | 16 + .../WSDL/NetSix/NetSixServerClient/web/search.html | 28 + 63 files changed, 10784 insertions(+) create mode 100644 Year_3/TSDWL/WSDL/CountryClient/build.xml create mode 100644 Year_3/TSDWL/WSDL/CountryClient/catalog.xml create mode 100644 Year_3/TSDWL/WSDL/CountryClient/nbproject/ant-deploy.xml create mode 100644 Year_3/TSDWL/WSDL/CountryClient/nbproject/build-impl.xml create mode 100644 Year_3/TSDWL/WSDL/CountryClient/nbproject/genfiles.properties create mode 100644 Year_3/TSDWL/WSDL/CountryClient/nbproject/jax-ws.xml create mode 100644 Year_3/TSDWL/WSDL/CountryClient/nbproject/jaxws-build.xml create mode 100644 Year_3/TSDWL/WSDL/CountryClient/nbproject/project.properties create mode 100644 Year_3/TSDWL/WSDL/CountryClient/nbproject/project.xml create mode 100644 Year_3/TSDWL/WSDL/CountryClient/src/conf/MANIFEST.MF create mode 100644 Year_3/TSDWL/WSDL/CountryClient/src/conf/xml-resources/web-service-references/CountryInfoService/wsdl/www.oorsprong.org/websamples.countryinfo/CountryInfoService.wso.wsdl create mode 100644 Year_3/TSDWL/WSDL/CountryClient/src/java/it/dmi/tsdwl/country/CountryServlet.java create mode 100644 Year_3/TSDWL/WSDL/CountryClient/src/java/it/dmi/tsdwl/country/SearchCapital.java create mode 100644 Year_3/TSDWL/WSDL/CountryClient/web/META-INF/context.xml create mode 100644 Year_3/TSDWL/WSDL/CountryClient/web/WEB-INF/jax-ws-catalog.xml create mode 100644 Year_3/TSDWL/WSDL/CountryClient/web/index.html create mode 100644 Year_3/TSDWL/WSDL/CountryClient/web/list.jsp create mode 100644 Year_3/TSDWL/WSDL/FootballClient/build.xml create mode 100644 Year_3/TSDWL/WSDL/FootballClient/catalog.xml create mode 100644 Year_3/TSDWL/WSDL/FootballClient/nbproject/ant-deploy.xml create mode 100644 Year_3/TSDWL/WSDL/FootballClient/nbproject/build-impl.xml create mode 100644 Year_3/TSDWL/WSDL/FootballClient/nbproject/genfiles.properties create mode 100644 Year_3/TSDWL/WSDL/FootballClient/nbproject/jax-ws.xml create mode 100644 Year_3/TSDWL/WSDL/FootballClient/nbproject/jaxws-build.xml create mode 100644 Year_3/TSDWL/WSDL/FootballClient/nbproject/project.properties create mode 100644 Year_3/TSDWL/WSDL/FootballClient/nbproject/project.xml create mode 100644 Year_3/TSDWL/WSDL/FootballClient/src/conf/MANIFEST.MF create mode 100644 Year_3/TSDWL/WSDL/FootballClient/src/conf/xml-resources/web-service-references/info/wsdl/ws.footballpool.dataaccess.eu/info.wso.wsdl create mode 100644 Year_3/TSDWL/WSDL/FootballClient/src/java/it/dmi/exams/tsdwl/StadiumInfo.java create mode 100644 Year_3/TSDWL/WSDL/FootballClient/src/java/it/dmi/exams/tsdwl/StadiumList.java create mode 100644 Year_3/TSDWL/WSDL/FootballClient/web/META-INF/context.xml create mode 100644 Year_3/TSDWL/WSDL/FootballClient/web/WEB-INF/jax-ws-catalog.xml create mode 100644 Year_3/TSDWL/WSDL/FootballClient/web/index.html create mode 100644 Year_3/TSDWL/WSDL/FootballClient/web/list.jsp create mode 100644 Year_3/TSDWL/WSDL/FootballClient/web/search.html create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServer/build.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/ant-deploy.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/build-impl.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/genfiles.properties create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/jax-ws.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/jaxws-build.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/project.properties create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/project.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServer/src/conf/MANIFEST.MF create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServer/src/java/me/dcariotti/wsserv/WsServ.java create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServer/web/WEB-INF/web.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/build.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/catalog.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/ant-deploy.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/build-impl.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/genfiles.properties create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/jax-ws.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/jaxws-build.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/project.properties create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/project.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/conf/MANIFEST.MF create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/conf/xml-resources/web-service-references/WsServ/wsdl/localhost_8080/NetSixServer/WsServ.wsdl create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/conf/xml-resources/web-service-references/WsServ/wsdl/localhost_8080/NetSixServer/WsServ.xsd_1.xsd create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/java/me/dcariotti/netsix/NetSixServlet.java create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/META-INF/context.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/WEB-INF/jax-ws-catalog.xml create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/index.html create mode 100644 Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/search.html (limited to 'Year_3') diff --git a/Year_3/TSDWL/WSDL/CountryClient/build.xml b/Year_3/TSDWL/WSDL/CountryClient/build.xml new file mode 100644 index 0000000..3ca8615 --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/build.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + Builds, tests, and runs the project CountryClient. + + + diff --git a/Year_3/TSDWL/WSDL/CountryClient/catalog.xml b/Year_3/TSDWL/WSDL/CountryClient/catalog.xml new file mode 100644 index 0000000..13f4ef6 --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/catalog.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Year_3/TSDWL/WSDL/CountryClient/nbproject/ant-deploy.xml b/Year_3/TSDWL/WSDL/CountryClient/nbproject/ant-deploy.xml new file mode 100644 index 0000000..55566c8 --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/nbproject/ant-deploy.xml @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/CountryClient/nbproject/build-impl.xml b/Year_3/TSDWL/WSDL/CountryClient/nbproject/build-impl.xml new file mode 100644 index 0000000..3fe3c0f --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/nbproject/build-impl.xml @@ -0,0 +1,1442 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set build.web.dir + Must set build.generated.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.war + + + + + + + + + +The Java EE server classpath is not correctly set up - server home directory is missing. +Either open the project in the IDE and assign the server or setup the server classpath manually. +For example like this: + ant -Dj2ee.server.home=<app_server_installation_directory> + + +The Java EE server classpath is not correctly set up. Your active server type is ${j2ee.server.type}. +Either open the project in the IDE and assign the server or setup the server classpath manually. +For example like this: + ant -Duser.properties.file=<path_to_property_file> (where you put the property "j2ee.platform.classpath" in a .properties file) +or ant -Dj2ee.platform.classpath=<server_classpath> (where no properties file is used) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The libs.CopyLibs.classpath property is not set up. +This property must point to +org-netbeans-modules-java-j2seproject-copylibstask.jar file which is part +of NetBeans IDE installation and is usually located at +<netbeans_installation>/java<version>/ant/extra folder. +Either open the project in the IDE and make sure CopyLibs library +exists or setup the property manually. For example like this: + ant -Dlibs.CopyLibs.classpath=a/path/to/org-netbeans-modules-java-j2seproject-copylibstask.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.jsp.includes + + + + + + + + + + + + + + + + + + + + + + + + + + Must select a file in the IDE or set jsp.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Browser not found, cannot launch the deployed application. Try to set the BROWSER environment variable. + + + Launching ${browse.url} + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/CountryClient/nbproject/genfiles.properties b/Year_3/TSDWL/WSDL/CountryClient/nbproject/genfiles.properties new file mode 100644 index 0000000..e058707 --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=b6006458 +build.xml.script.CRC32=8b5d04d4 +build.xml.stylesheet.CRC32=651128d4@1.77.1.1 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=b6006458 +nbproject/build-impl.xml.script.CRC32=24497a23 +nbproject/build-impl.xml.stylesheet.CRC32=99ea4b56@1.77.1.1 diff --git a/Year_3/TSDWL/WSDL/CountryClient/nbproject/jax-ws.xml b/Year_3/TSDWL/WSDL/CountryClient/nbproject/jax-ws.xml new file mode 100644 index 0000000..031ee65 --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/nbproject/jax-ws.xml @@ -0,0 +1,38 @@ + + + + + + http://www.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?wsdl + www.oorsprong.org/websamples.countryinfo/CountryInfoService.wso.wsdl + org.oorsprong.websamples.countryinfo + catalog.xml + + + extension + true + + + verbose + true + + + fork + false + + + wsdlLocation + http://www.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?wsdl + + + xnocompile + true + + + xendorsed + true + + + + + diff --git a/Year_3/TSDWL/WSDL/CountryClient/nbproject/jaxws-build.xml b/Year_3/TSDWL/WSDL/CountryClient/nbproject/jaxws-build.xml new file mode 100644 index 0000000..97b036a --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/nbproject/jaxws-build.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/CountryClient/nbproject/project.properties b/Year_3/TSDWL/WSDL/CountryClient/nbproject/project.properties new file mode 100644 index 0000000..0d41dcd --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/nbproject/project.properties @@ -0,0 +1,84 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=true +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.web.dir}/WEB-INF/classes +build.classes.excludes=**/*.java,**/*.form +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +build.web.dir=${build.dir}/web +build.web.excludes=${build.classes.excludes} +client.urlPart= +compile.jsps=false +conf.dir=${source.root}/conf +debug.classpath=${build.classes.dir}:${javac.classpath} +debug.test.classpath=\ + ${run.test.classpath} +display.browser=true +# Files to be excluded from distribution war +dist.archive.excludes= +dist.dir=dist +dist.ear.war=${dist.dir}/${war.ear.name} +dist.javadoc.dir=${dist.dir}/javadoc +dist.war=${dist.dir}/${war.name} +endorsed.classpath=\ + ${libs.javaee-endorsed-api-7.0.classpath} +excludes= +includes=** +j2ee.compile.on.save=true +j2ee.copy.static.files.on.save=true +j2ee.deploy.on.save=true +j2ee.platform=1.7-web +j2ee.platform.classpath=${j2ee.server.home}/lib/annotations-api.jar:${j2ee.server.home}/lib/catalina-ant.jar:${j2ee.server.home}/lib/catalina-ha.jar:${j2ee.server.home}/lib/catalina-storeconfig.jar:${j2ee.server.home}/lib/catalina-tribes.jar:${j2ee.server.home}/lib/catalina.jar:${j2ee.server.home}/lib/ecj-4.4.2.jar:${j2ee.server.home}/lib/el-api.jar:${j2ee.server.home}/lib/jasper-el.jar:${j2ee.server.home}/lib/jasper.jar:${j2ee.server.home}/lib/jsp-api.jar:${j2ee.server.home}/lib/servlet-api.jar:${j2ee.server.home}/lib/tomcat-api.jar:${j2ee.server.home}/lib/tomcat-coyote.jar:${j2ee.server.home}/lib/tomcat-dbcp.jar:${j2ee.server.home}/lib/tomcat-i18n-es.jar:${j2ee.server.home}/lib/tomcat-i18n-fr.jar:${j2ee.server.home}/lib/tomcat-i18n-ja.jar:${j2ee.server.home}/lib/tomcat-jdbc.jar:${j2ee.server.home}/lib/tomcat-jni.jar:${j2ee.server.home}/lib/tomcat-util-scan.jar:${j2ee.server.home}/lib/tomcat-util.jar:${j2ee.server.home}/lib/tomcat-websocket.jar:${j2ee.server.home}/lib/websocket-api.jar +j2ee.server.type=Tomcat +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.debug=true +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.preview=true +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +lib.dir=${web.docbase.dir}/WEB-INF/lib +no.dependencies=false +persistence.xml.dir=${conf.dir} +platform.active=default_platform +resource.dir=setup +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +# Space-separated list of JVM arguments used when running a class with a main method or a unit test +# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value): +runmain.jvmargs= +source.encoding=UTF-8 +source.root=src +src.dir=${source.root}/java +test.src.dir=test +war.content.additional= +war.ear.name=${war.name} +war.name=CountryClient.war +web.docbase.dir=web +webinf.dir=web/WEB-INF diff --git a/Year_3/TSDWL/WSDL/CountryClient/nbproject/project.xml b/Year_3/TSDWL/WSDL/CountryClient/nbproject/project.xml new file mode 100644 index 0000000..4bf40d8 --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/nbproject/project.xml @@ -0,0 +1,23 @@ + + + org.netbeans.modules.web.project + + + + + + + + CountryClient + 1.6.5 + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/CountryClient/src/conf/MANIFEST.MF b/Year_3/TSDWL/WSDL/CountryClient/src/conf/MANIFEST.MF new file mode 100644 index 0000000..59499bc --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/src/conf/MANIFEST.MF @@ -0,0 +1,2 @@ +Manifest-Version: 1.0 + diff --git a/Year_3/TSDWL/WSDL/CountryClient/src/conf/xml-resources/web-service-references/CountryInfoService/wsdl/www.oorsprong.org/websamples.countryinfo/CountryInfoService.wso.wsdl b/Year_3/TSDWL/WSDL/CountryClient/src/conf/xml-resources/web-service-references/CountryInfoService/wsdl/www.oorsprong.org/websamples.countryinfo/CountryInfoService.wso.wsdl new file mode 100644 index 0000000..44c806b --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/src/conf/xml-resources/web-service-references/CountryInfoService/wsdl/www.oorsprong.org/websamples.countryinfo/CountryInfoService.wso.wsdl @@ -0,0 +1,979 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Returns a list of continents ordered by name. + + + + + Returns a list of continents ordered by code. + + + + + Returns a list of currencies ordered by name. + + + + + Returns a list of currencies ordered by code. + + + + + Returns the name of the currency (if found) + + + + + Returns a list of all stored counties ordered by ISO code + + + + + Returns a list of all stored counties ordered by country name + + + + + Returns a list of all stored counties grouped per continent + + + + + Searches the database for a country by the passed ISO country code + + + + + This function tries to found a country based on the passed country name. + + + + + Returns the name of the captial city for the passed country code + + + + + Returns the currency ISO code and name for the passed country ISO code + + + + + Returns a link to a picture of the country flag + + + + + Returns the internation phone code for the passed ISO country code + + + + + Returns a struct with all the stored country information. Pass the ISO country code + + + + + Returns an array with all countries and all the language information stored + + + + + Returns a list of all countries that use the same currency code. Pass a ISO currency code + + + + + Returns an array of languages ordered by name + + + + + Returns an array of languages ordered by code + + + + + Find a language name based on the passed ISO language code + + + + + Find a language ISO code based on the passed language name + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This DataFlex Web Service opens up country information. 2 letter ISO codes are used for Country code. There are functions to retrieve the used Currency, Language, Capital City, Continent and Telephone code. + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/CountryClient/src/java/it/dmi/tsdwl/country/CountryServlet.java b/Year_3/TSDWL/WSDL/CountryClient/src/java/it/dmi/tsdwl/country/CountryServlet.java new file mode 100644 index 0000000..f9f4405 --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/src/java/it/dmi/tsdwl/country/CountryServlet.java @@ -0,0 +1,75 @@ +/* + * 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. + */ +package it.dmi.tsdwl.country; + +import java.io.IOException; +import java.util.List; +import javax.servlet.RequestDispatcher; +import javax.servlet.ServletException; +import javax.servlet.annotation.WebServlet; +import javax.servlet.http.HttpServlet; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import org.oorsprong.websamples.ArrayOftCountryCodeAndName; +import org.oorsprong.websamples.TCountryCodeAndName; +/** + * + * @author dcariotti + */ +@WebServlet(name = "CountryServlet", urlPatterns = {"/CountryServlet"}) +public class CountryServlet extends HttpServlet { + /** + * Handles the HTTP GET method. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + @Override + protected void doGet(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + List countries = this.listOfCountryNamesByName().getTCountryCodeAndName(); + + request.setAttribute("countries", countries); + + RequestDispatcher view = request.getRequestDispatcher("list.jsp"); + + view.forward(request, response); + } + + /** + * Handles the HTTP POST method. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + @Override + protected void doPost(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + + } + + /** + * Returns a short description of the servlet. + * + * @return a String containing servlet description + */ + @Override + public String getServletInfo() { + return "Short description"; + }// + + private static ArrayOftCountryCodeAndName listOfCountryNamesByName() { + org.oorsprong.websamples.CountryInfoService service = new org.oorsprong.websamples.CountryInfoService(); + org.oorsprong.websamples.CountryInfoServiceSoapType port = service.getCountryInfoServiceSoap(); + return port.listOfCountryNamesByName(); + } + + +} diff --git a/Year_3/TSDWL/WSDL/CountryClient/src/java/it/dmi/tsdwl/country/SearchCapital.java b/Year_3/TSDWL/WSDL/CountryClient/src/java/it/dmi/tsdwl/country/SearchCapital.java new file mode 100644 index 0000000..1a7eb27 --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/src/java/it/dmi/tsdwl/country/SearchCapital.java @@ -0,0 +1,104 @@ +/* + * 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. + */ +package it.dmi.tsdwl.country; + +import java.io.IOException; +import java.io.PrintWriter; +import javax.servlet.ServletException; +import javax.servlet.annotation.WebServlet; +import javax.servlet.http.HttpServlet; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +/** + * + * @author dcariotti + */ +@WebServlet(name = "SearchCapital", urlPatterns = {"/SearchCapital"}) +public class SearchCapital extends HttpServlet { + + /** + * Processes requests for both HTTP GET and POST + * methods. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + protected void processRequest(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + response.setContentType("text/html;charset=UTF-8"); + try (PrintWriter out = response.getWriter()) { + /* TODO output your page here. You may use following sample code. */ + out.println(""); + out.println(""); + out.println(""); + out.println("Servlet SearchCapital"); + out.println(""); + out.println(""); + out.println("

Servlet SearchCapital at " + request.getContextPath() + "

"); + out.println(""); + out.println(""); + } + } + + /** + * Handles the HTTP GET method. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + @Override + protected void doGet(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + String isoCode = request.getParameter("iso"); + String capital = this.capitalCity(isoCode); + + if (capital.length() == 0) { + try (PrintWriter out = response.getWriter()) { + out.println("Capital not found"); + } + } else { + try (PrintWriter out = response.getWriter()) { + out.println("Capital is " + capital); + } + } + } + + /** + * Handles the HTTP POST method. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + @Override + protected void doPost(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + processRequest(request, response); + } + + /** + * Returns a short description of the servlet. + * + * @return a String containing servlet description + */ + @Override + public String getServletInfo() { + return "Short description"; + }// + + private static String capitalCity(java.lang.String sCountryISOCode) { + org.oorsprong.websamples.CountryInfoService service = new org.oorsprong.websamples.CountryInfoService(); + org.oorsprong.websamples.CountryInfoServiceSoapType port = service.getCountryInfoServiceSoap(); + return port.capitalCity(sCountryISOCode); + } + +} diff --git a/Year_3/TSDWL/WSDL/CountryClient/web/META-INF/context.xml b/Year_3/TSDWL/WSDL/CountryClient/web/META-INF/context.xml new file mode 100644 index 0000000..bcfc615 --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/web/META-INF/context.xml @@ -0,0 +1,2 @@ + + diff --git a/Year_3/TSDWL/WSDL/CountryClient/web/WEB-INF/jax-ws-catalog.xml b/Year_3/TSDWL/WSDL/CountryClient/web/WEB-INF/jax-ws-catalog.xml new file mode 100644 index 0000000..a15a205 --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/web/WEB-INF/jax-ws-catalog.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Year_3/TSDWL/WSDL/CountryClient/web/index.html b/Year_3/TSDWL/WSDL/CountryClient/web/index.html new file mode 100644 index 0000000..c627c24 --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/web/index.html @@ -0,0 +1,16 @@ + + + + + TODO supply a title + + + + +
TODO write content
+ + diff --git a/Year_3/TSDWL/WSDL/CountryClient/web/list.jsp b/Year_3/TSDWL/WSDL/CountryClient/web/list.jsp new file mode 100644 index 0000000..e3406b4 --- /dev/null +++ b/Year_3/TSDWL/WSDL/CountryClient/web/list.jsp @@ -0,0 +1,24 @@ +<%-- + Document : list + Created on : Jan 19, 2022, 9:57:20 PM + Author : dcariotti +--%> + +<%@page import="org.oorsprong.websamples.TCountryCodeAndName"%> +<%@page import="java.util.List"%> +<%@page contentType="text/html" pageEncoding="UTF-8"%> + + + + + Countries list + + +

Countries list

+ <% List languages = (List) request.getAttribute("countries"); %> + <% for (TCountryCodeAndName language : languages) { %> +

<%= language.getSName()%> Search capital

+ <% } %> + + + diff --git a/Year_3/TSDWL/WSDL/FootballClient/build.xml b/Year_3/TSDWL/WSDL/FootballClient/build.xml new file mode 100644 index 0000000..d5b88b4 --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/build.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + Builds, tests, and runs the project FootballClient. + + + diff --git a/Year_3/TSDWL/WSDL/FootballClient/catalog.xml b/Year_3/TSDWL/WSDL/FootballClient/catalog.xml new file mode 100644 index 0000000..3670a69 --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/catalog.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Year_3/TSDWL/WSDL/FootballClient/nbproject/ant-deploy.xml b/Year_3/TSDWL/WSDL/FootballClient/nbproject/ant-deploy.xml new file mode 100644 index 0000000..55566c8 --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/nbproject/ant-deploy.xml @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/FootballClient/nbproject/build-impl.xml b/Year_3/TSDWL/WSDL/FootballClient/nbproject/build-impl.xml new file mode 100644 index 0000000..f20ac3d --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/nbproject/build-impl.xml @@ -0,0 +1,1442 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set build.web.dir + Must set build.generated.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.war + + + + + + + + + +The Java EE server classpath is not correctly set up - server home directory is missing. +Either open the project in the IDE and assign the server or setup the server classpath manually. +For example like this: + ant -Dj2ee.server.home=<app_server_installation_directory> + + +The Java EE server classpath is not correctly set up. Your active server type is ${j2ee.server.type}. +Either open the project in the IDE and assign the server or setup the server classpath manually. +For example like this: + ant -Duser.properties.file=<path_to_property_file> (where you put the property "j2ee.platform.classpath" in a .properties file) +or ant -Dj2ee.platform.classpath=<server_classpath> (where no properties file is used) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The libs.CopyLibs.classpath property is not set up. +This property must point to +org-netbeans-modules-java-j2seproject-copylibstask.jar file which is part +of NetBeans IDE installation and is usually located at +<netbeans_installation>/java<version>/ant/extra folder. +Either open the project in the IDE and make sure CopyLibs library +exists or setup the property manually. For example like this: + ant -Dlibs.CopyLibs.classpath=a/path/to/org-netbeans-modules-java-j2seproject-copylibstask.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.jsp.includes + + + + + + + + + + + + + + + + + + + + + + + + + + Must select a file in the IDE or set jsp.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Browser not found, cannot launch the deployed application. Try to set the BROWSER environment variable. + + + Launching ${browse.url} + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/FootballClient/nbproject/genfiles.properties b/Year_3/TSDWL/WSDL/FootballClient/nbproject/genfiles.properties new file mode 100644 index 0000000..31d747b --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=aaea0a1d +build.xml.script.CRC32=c8a5d28b +build.xml.stylesheet.CRC32=651128d4@1.77.1.1 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=aaea0a1d +nbproject/build-impl.xml.script.CRC32=67c6fda6 +nbproject/build-impl.xml.stylesheet.CRC32=99ea4b56@1.77.1.1 diff --git a/Year_3/TSDWL/WSDL/FootballClient/nbproject/jax-ws.xml b/Year_3/TSDWL/WSDL/FootballClient/nbproject/jax-ws.xml new file mode 100644 index 0000000..8248530 --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/nbproject/jax-ws.xml @@ -0,0 +1,38 @@ + + + + + + https://ws.footballpool.dataaccess.eu/info.wso?WSDL + ws.footballpool.dataaccess.eu/info.wso.wsdl + eu.dataaccess.footballpool + catalog.xml + + + extension + true + + + verbose + true + + + fork + false + + + wsdlLocation + https://ws.footballpool.dataaccess.eu/info.wso?WSDL + + + xnocompile + true + + + xendorsed + true + + + + + diff --git a/Year_3/TSDWL/WSDL/FootballClient/nbproject/jaxws-build.xml b/Year_3/TSDWL/WSDL/FootballClient/nbproject/jaxws-build.xml new file mode 100644 index 0000000..9bd9d81 --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/nbproject/jaxws-build.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/FootballClient/nbproject/project.properties b/Year_3/TSDWL/WSDL/FootballClient/nbproject/project.properties new file mode 100644 index 0000000..b8637ec --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/nbproject/project.properties @@ -0,0 +1,84 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=true +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.web.dir}/WEB-INF/classes +build.classes.excludes=**/*.java,**/*.form +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +build.web.dir=${build.dir}/web +build.web.excludes=${build.classes.excludes} +client.urlPart= +compile.jsps=false +conf.dir=${source.root}/conf +debug.classpath=${build.classes.dir}:${javac.classpath} +debug.test.classpath=\ + ${run.test.classpath} +display.browser=true +# Files to be excluded from distribution war +dist.archive.excludes= +dist.dir=dist +dist.ear.war=${dist.dir}/${war.ear.name} +dist.javadoc.dir=${dist.dir}/javadoc +dist.war=${dist.dir}/${war.name} +endorsed.classpath=\ + ${libs.javaee-endorsed-api-7.0.classpath} +excludes= +includes=** +j2ee.compile.on.save=true +j2ee.copy.static.files.on.save=true +j2ee.deploy.on.save=true +j2ee.platform=1.7-web +j2ee.platform.classpath=${j2ee.server.home}/lib/annotations-api.jar:${j2ee.server.home}/lib/catalina-ant.jar:${j2ee.server.home}/lib/catalina-ha.jar:${j2ee.server.home}/lib/catalina-storeconfig.jar:${j2ee.server.home}/lib/catalina-tribes.jar:${j2ee.server.home}/lib/catalina.jar:${j2ee.server.home}/lib/ecj-4.4.2.jar:${j2ee.server.home}/lib/el-api.jar:${j2ee.server.home}/lib/jasper-el.jar:${j2ee.server.home}/lib/jasper.jar:${j2ee.server.home}/lib/jsp-api.jar:${j2ee.server.home}/lib/servlet-api.jar:${j2ee.server.home}/lib/tomcat-api.jar:${j2ee.server.home}/lib/tomcat-coyote.jar:${j2ee.server.home}/lib/tomcat-dbcp.jar:${j2ee.server.home}/lib/tomcat-i18n-es.jar:${j2ee.server.home}/lib/tomcat-i18n-fr.jar:${j2ee.server.home}/lib/tomcat-i18n-ja.jar:${j2ee.server.home}/lib/tomcat-jdbc.jar:${j2ee.server.home}/lib/tomcat-jni.jar:${j2ee.server.home}/lib/tomcat-util-scan.jar:${j2ee.server.home}/lib/tomcat-util.jar:${j2ee.server.home}/lib/tomcat-websocket.jar:${j2ee.server.home}/lib/websocket-api.jar +j2ee.server.type=Tomcat +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.debug=true +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.preview=true +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +lib.dir=${web.docbase.dir}/WEB-INF/lib +no.dependencies=false +persistence.xml.dir=${conf.dir} +platform.active=default_platform +resource.dir=setup +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +# Space-separated list of JVM arguments used when running a class with a main method or a unit test +# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value): +runmain.jvmargs= +source.encoding=UTF-8 +source.root=src +src.dir=${source.root}/java +test.src.dir=test +war.content.additional= +war.ear.name=${war.name} +war.name=FootballClient.war +web.docbase.dir=web +webinf.dir=web/WEB-INF diff --git a/Year_3/TSDWL/WSDL/FootballClient/nbproject/project.xml b/Year_3/TSDWL/WSDL/FootballClient/nbproject/project.xml new file mode 100644 index 0000000..eb85024 --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/nbproject/project.xml @@ -0,0 +1,23 @@ + + + org.netbeans.modules.web.project + + + + + + + + FootballClient + 1.6.5 + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/FootballClient/src/conf/MANIFEST.MF b/Year_3/TSDWL/WSDL/FootballClient/src/conf/MANIFEST.MF new file mode 100644 index 0000000..59499bc --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/src/conf/MANIFEST.MF @@ -0,0 +1,2 @@ +Manifest-Version: 1.0 + diff --git a/Year_3/TSDWL/WSDL/FootballClient/src/conf/xml-resources/web-service-references/info/wsdl/ws.footballpool.dataaccess.eu/info.wso.wsdl b/Year_3/TSDWL/WSDL/FootballClient/src/conf/xml-resources/web-service-references/info/wsdl/ws.footballpool.dataaccess.eu/info.wso.wsdl new file mode 100644 index 0000000..194bce6 --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/src/conf/xml-resources/web-service-references/info/wsdl/ws.footballpool.dataaccess.eu/info.wso.wsdl @@ -0,0 +1,1822 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Returns an array with the information about the given yellow and red cards in all games. What date, minute, teams that were playing and player name + + + + + Returns an array with the id, name, country and flag reference of all players. Pass a 0 for all players and 1 for only the selected players. + + + + + Returns an array with the names of all players that have a yellow or a red card. The number of yellow and red cards is returned. + + + + + Returns an array with the names of all players that have the passed player role. If you pass a team name the result will be filtered on that team. For possible team names call the function TeamNames. For possible role codes call the function PlayerRoles + + + + + Returns an array with the information stored about all stadiums. The array contains the names, the city where the stadium can be found, the seat capacity, the google maps and wikipedia URLs + + + + + Returns an array with the names of all the coaches and the team name he/she is coaching + + + + + Returns the total number of red or yellow cards given for all games (iGameNumber < 1) or a specific game. For the game numbers call the function ResultsAllGames + + + + + Returns an array with all the city names where games are played + + + + + Get the top 25 countries starting with or containing the value of sName + + + + + Returns an array with a play levels and per level the start and end game date and ID + + + + + Returns an array of Game IDs grouped by City Name + + + + + Returns the results of a given game (pass the game ID). For the game numbers call the function ResultsAllGames + + + + + Returns the score for a team in a game. For the game numbers call the function ResultsAllGames. For the team ID call the function Teams + + + + + Returns the total number of goals scored + + + + + Returns the date of the first game in this group + + + + + Returns a list of groups (poule phase and later round of 16 etc) and the information such as name and date first and last game + + + + + Returns the date of the last game in this group. For the group code call the function GroupInfo + + + + + Returns an the standings in each group by passing the group ID. For the group ID call the function GroupInfo + + + + + Returns the date of the first game in this level. For a level Number call the Levels Function. + + + + + Returns the date of the last game in this level For a level number call the Levels function. For a level Number call the Levels Function. + + + + + Returns a array with level numbers. The numbers can be used in functions that require or offer an option to pass a level number such as LevelFirstGameDate + + + + + Returns a list with tournament dates + + + + + Returns an array with the next games of date that is greater than or equal to today. Only games of one day are returned. + + + + + Get the top 10 players where name, fullname, firstname or lastname contains the value of sName + + + + + Returns an array with the roles a player can have (defender etc) + + + + + Returns an array with the names of all players that have a yellow or a red card. The number of yellow and red cards is returned. + + + + + Returns an array with the names of all players that have scored a goal. + + + + + Returns game result of all games overall, in one group or at one level. When groupid < 1 All games are processed (optionally filtered by level). A Group ID or level can be retrieved via GroupInfo. + + + + + Returns a URL that can be used to show a small map of the stadium. For the name of the stadium call the funciton StadiumNames + + + + + Returns the information stored about a particular stadium. For that pass the exact name of the stadium. For the name of the stadium call the funciton StadiumNames + + + + + Returns an array of stadium names where the games are played + + + + + Returns a list of team IDs based on passed GroupCode (e.g A or H). For the group code call the function GroupInfo + + + + + Get the players of a team. This is the current squad. For the team name call the function TeamNames. Pass a 1 for selected players only or 0 for all registered players that belong to the team (now and in the past) + + + + + Returns an array with team names. The names can be used in functions that require or offer an option to pass a teamname + + + + + Get the top 10 teams starting with or containing the value of sTeamName. For the team name call the function TeamNames + + + + + Returns an array with the 5 best performing players. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + DataFlex Web Service for public information from the DataFlex Football Pool + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/FootballClient/src/java/it/dmi/exams/tsdwl/StadiumInfo.java b/Year_3/TSDWL/WSDL/FootballClient/src/java/it/dmi/exams/tsdwl/StadiumInfo.java new file mode 100644 index 0000000..d3d3f4f --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/src/java/it/dmi/exams/tsdwl/StadiumInfo.java @@ -0,0 +1,87 @@ +/* + * 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. + */ +package it.dmi.exams.tsdwl; + +import https.footballpool_dataaccess.TStadiumInfo; +import java.io.IOException; +import java.io.PrintWriter; +import javax.servlet.RequestDispatcher; +import javax.servlet.ServletException; +import javax.servlet.annotation.WebServlet; +import javax.servlet.http.HttpServlet; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +/** + * + * @author dcariotti + */ +@WebServlet(name = "StadiumInfo", urlPatterns = {"/StadiumInfo"}) +public class StadiumInfo extends HttpServlet { + /** + * Handles the HTTP GET method. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + @Override + protected void doGet(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + RequestDispatcher view = request.getRequestDispatcher("search.html"); + + view.forward(request, response); + } + + /** + * Handles the HTTP POST method. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + @Override + protected void doPost(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + TStadiumInfo stadium = this.stadiumInfo(request.getParameter("name")); + + response.setContentType("text/html;charset=UTF-8"); + try (PrintWriter out = response.getWriter()) { + out.println(""); + if (stadium.getSName().length() == 0) { + out.println("

Stadium not found!

"); + } else { + out.println("

Stadium info:

"); + out.println(stadium.getSName()); + out.println(stadium.getISeatsCapacity()); + out.println(stadium.getSCityName()); + out.println(stadium.getSGoogleMapsURL()); + out.println(stadium.getSWikipediaURL()); + } + out.println(""); + } + + } + + /** + * Returns a short description of the servlet. + * + * @return a String containing servlet description + */ + @Override + public String getServletInfo() { + return "Short description"; + }// + + private static TStadiumInfo stadiumInfo(java.lang.String sStadiumName) { + https.footballpool_dataaccess.Info service = new https.footballpool_dataaccess.Info(); + https.footballpool_dataaccess.InfoSoapType port = service.getInfoSoap(); + return port.stadiumInfo(sStadiumName); + } + +} diff --git a/Year_3/TSDWL/WSDL/FootballClient/src/java/it/dmi/exams/tsdwl/StadiumList.java b/Year_3/TSDWL/WSDL/FootballClient/src/java/it/dmi/exams/tsdwl/StadiumList.java new file mode 100644 index 0000000..9f3d037 --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/src/java/it/dmi/exams/tsdwl/StadiumList.java @@ -0,0 +1,103 @@ +/* + * 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. + */ +package it.dmi.exams.tsdwl; + +import https.footballpool_dataaccess.ArrayOftStadiumInfo; +import https.footballpool_dataaccess.TStadiumInfo; +import java.io.IOException; +import java.io.PrintWriter; +import javax.servlet.RequestDispatcher; +import javax.servlet.ServletException; +import javax.servlet.annotation.WebServlet; +import javax.servlet.http.HttpServlet; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.util.ArrayList; +import java.util.List; +/** + * + * @author dcariotti + */ +@WebServlet(name = "StadiumList", urlPatterns = {"/StadiumList"}) +public class StadiumList extends HttpServlet { + + /** + * Processes requests for both HTTP GET and POST + * methods. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + protected void processRequest(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + response.setContentType("text/html;charset=UTF-8"); + try (PrintWriter out = response.getWriter()) { + /* TODO output your page here. You may use following sample code. */ + out.println(""); + out.println(""); + out.println(""); + out.println("Servlet StadiumList"); + out.println(""); + out.println(""); + out.println("

Servlet StadiumList at " + request.getContextPath() + "

"); + out.println(""); + out.println(""); + } + } + + // + /** + * Handles the HTTP GET method. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + @Override + protected void doGet(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + List stadiumList = this.allStadiumInfo().getTStadiumInfo(); + + request.setAttribute("stadiumList", stadiumList); + RequestDispatcher view = request.getRequestDispatcher("list.jsp"); + + view.forward(request, response); + } + + /** + * Handles the HTTP POST method. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + @Override + protected void doPost(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + processRequest(request, response); + } + + /** + * Returns a short description of the servlet. + * + * @return a String containing servlet description + */ + @Override + public String getServletInfo() { + return "Short description"; + }// + + private static ArrayOftStadiumInfo allStadiumInfo() { + https.footballpool_dataaccess.Info service = new https.footballpool_dataaccess.Info(); + https.footballpool_dataaccess.InfoSoapType port = service.getInfoSoap(); + return port.allStadiumInfo(); + } + +} diff --git a/Year_3/TSDWL/WSDL/FootballClient/web/META-INF/context.xml b/Year_3/TSDWL/WSDL/FootballClient/web/META-INF/context.xml new file mode 100644 index 0000000..a3b375b --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/web/META-INF/context.xml @@ -0,0 +1,2 @@ + + 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 new file mode 100644 index 0000000..fa89486 --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/web/WEB-INF/jax-ws-catalog.xml @@ -0,0 +1,4 @@ + + + + \ 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 new file mode 100644 index 0000000..c627c24 --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/web/index.html @@ -0,0 +1,16 @@ + + + + + TODO supply a title + + + + +
TODO write content
+ + diff --git a/Year_3/TSDWL/WSDL/FootballClient/web/list.jsp b/Year_3/TSDWL/WSDL/FootballClient/web/list.jsp new file mode 100644 index 0000000..fba56fa --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/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"%> + + + + + Stadium list + + +

Stadium list

+ <% List stadiums = (List) request.getAttribute("stadiumList"); %> + <% for (TStadiumInfo stadium : stadiums) { %> +

<%= stadium.getSName() %>

+ <% } %> + + diff --git a/Year_3/TSDWL/WSDL/FootballClient/web/search.html b/Year_3/TSDWL/WSDL/FootballClient/web/search.html new file mode 100644 index 0000000..4cac9f3 --- /dev/null +++ b/Year_3/TSDWL/WSDL/FootballClient/web/search.html @@ -0,0 +1,22 @@ + + + + + Search a stadium + + + + +
+
+ + +
+ +
+ + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServer/build.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/build.xml new file mode 100644 index 0000000..5eae93b --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/build.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + Builds, tests, and runs the project NetSixServer. + + + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/ant-deploy.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/ant-deploy.xml new file mode 100644 index 0000000..5d33e0d --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/ant-deploy.xml @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/build-impl.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/build-impl.xml new file mode 100644 index 0000000..9cc69ee --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/build-impl.xml @@ -0,0 +1,1442 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set build.web.dir + Must set build.generated.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.war + + + + + + + + + +The Java EE server classpath is not correctly set up - server home directory is missing. +Either open the project in the IDE and assign the server or setup the server classpath manually. +For example like this: + ant -Dj2ee.server.home=<app_server_installation_directory> + + +The Java EE server classpath is not correctly set up. Your active server type is ${j2ee.server.type}. +Either open the project in the IDE and assign the server or setup the server classpath manually. +For example like this: + ant -Duser.properties.file=<path_to_property_file> (where you put the property "j2ee.platform.classpath" in a .properties file) +or ant -Dj2ee.platform.classpath=<server_classpath> (where no properties file is used) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The libs.CopyLibs.classpath property is not set up. +This property must point to +org-netbeans-modules-java-j2seproject-copylibstask.jar file which is part +of NetBeans IDE installation and is usually located at +<netbeans_installation>/java<version>/ant/extra folder. +Either open the project in the IDE and make sure CopyLibs library +exists or setup the property manually. For example like this: + ant -Dlibs.CopyLibs.classpath=a/path/to/org-netbeans-modules-java-j2seproject-copylibstask.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.jsp.includes + + + + + + + + + + + + + + + + + + + + + + + + + + Must select a file in the IDE or set jsp.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Browser not found, cannot launch the deployed application. Try to set the BROWSER environment variable. + + + Launching ${browse.url} + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/genfiles.properties b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/genfiles.properties new file mode 100644 index 0000000..f756c44 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=35d8b409 +build.xml.script.CRC32=f1142801 +build.xml.stylesheet.CRC32=651128d4@1.77.1.1 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=35d8b409 +nbproject/build-impl.xml.script.CRC32=1922045a +nbproject/build-impl.xml.stylesheet.CRC32=99ea4b56@1.77.1.1 diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/jax-ws.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/jax-ws.xml new file mode 100644 index 0000000..593367d --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/jax-ws.xml @@ -0,0 +1,9 @@ + + + + + me.dcariotti.wsserv.WsServ + + + + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/jaxws-build.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/jaxws-build.xml new file mode 100644 index 0000000..c1e50cd --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/jaxws-build.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/project.properties b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/project.properties new file mode 100644 index 0000000..f75bc6c --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/project.properties @@ -0,0 +1,89 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=true +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.web.dir}/WEB-INF/classes +build.classes.excludes=**/*.java,**/*.form +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +build.web.dir=${build.dir}/web +build.web.excludes=${build.classes.excludes} +client.urlPart= +compile.jsps=false +conf.dir=${source.root}/conf +debug.classpath=${build.classes.dir}:${javac.classpath} +debug.test.classpath=\ + ${run.test.classpath} +display.browser=true +# Files to be excluded from distribution war +dist.archive.excludes= +dist.dir=dist +dist.ear.war=${dist.dir}/${war.ear.name} +dist.javadoc.dir=${dist.dir}/javadoc +dist.war=${dist.dir}/${war.name} +endorsed.classpath=\ + ${libs.javaee-endorsed-api-7.0.classpath} +excludes= +includes=** +j2ee.compile.on.save=true +j2ee.copy.static.files.on.save=true +j2ee.deploy.on.save=true +j2ee.platform=1.7-web +j2ee.platform.classpath=${j2ee.server.home}/modules/endorsed/javax.annotation-api.jar:${j2ee.server.home}/modules/endorsed/jaxb-api.jar:${j2ee.server.home}/modules/endorsed/webservices-api-osgi.jar:${j2ee.server.home}/modules/cdi-api.jar:${j2ee.server.home}/modules/javax.security.auth.message-api.jar:${j2ee.server.home}/modules/javax.jms-api.jar:${j2ee.server.home}/modules/javax.servlet.jsp.jar:${j2ee.server.home}/modules/javax.enterprise.concurrent.jar:${j2ee.server.home}/modules/javax.enterprise.concurrent-api.jar:${j2ee.server.home}/modules/javax.ejb-api.jar:${j2ee.server.home}/modules/javax.servlet.jsp.jstl-api.jar:${j2ee.server.home}/modules/javax.servlet.jsp.jstl.jar:${j2ee.server.home}/modules/javax.el.jar:${j2ee.server.home}/modules/javax.enterprise.deploy-api.jar:${j2ee.server.home}/modules/javax.json.jar:${j2ee.server.home}/modules/javax.servlet.jsp-api.jar:${j2ee.server.home}/modules/javax.faces.jar:${j2ee.server.home}/modules/javax.xml.registry-api.jar:${j2ee.server.home}/modules/javax.resource-api.jar:${j2ee.server.home}/modules/javax.persistence.jar:${j2ee.server.home}/modules/javax.batch-api.jar:${j2ee.server.home}/modules/jaxb-osgi.jar:${j2ee.server.home}/modules/javax.interceptor-api.jar:${j2ee.server.home}/modules/javax.mail.jar:${j2ee.server.home}/modules/javax.inject.jar:${j2ee.server.home}/modules/javax.transaction-api.jar:${j2ee.server.home}/modules/javax.security.jacc-api.jar:${j2ee.server.home}/modules/javax.websocket-api.jar:${j2ee.server.home}/modules/bean-validator.jar:${j2ee.server.home}/modules/webservices-osgi.jar:${j2ee.server.home}/modules/weld-osgi-bundle.jar:${j2ee.server.home}/modules/javax.ws.rs-api.jar:${j2ee.server.home}/modules/javax.xml.rpc-api.jar:${j2ee.server.home}/modules/javax.management.j2ee-api.jar:${j2ee.server.home}/modules/javax.servlet-api.jar:${j2ee.server.middleware}/mq/lib/jaxm-api.jar +j2ee.platform.embeddableejb.classpath=${j2ee.server.home}/lib/embedded/glassfish-embedded-static-shell.jar +j2ee.platform.wscompile.classpath=${j2ee.server.home}/modules/webservices-osgi.jar +j2ee.platform.wsgen.classpath=${j2ee.server.home}/modules/webservices-osgi.jar:${j2ee.server.home}/modules/endorsed/webservices-api-osgi.jar:${j2ee.server.home}/modules/jaxb-osgi.jar:${j2ee.server.home}/modules/endorsed/jaxb-api.jar +j2ee.platform.wsimport.classpath=${j2ee.server.home}/modules/webservices-osgi.jar:${j2ee.server.home}/modules/endorsed/webservices-api-osgi.jar:${j2ee.server.home}/modules/jaxb-osgi.jar:${j2ee.server.home}/modules/endorsed/jaxb-api.jar +j2ee.platform.wsit.classpath= +j2ee.server.type=gfv3ee6 +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.debug=true +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.preview=true +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +lib.dir=${web.docbase.dir}/WEB-INF/lib +no.dependencies=false +persistence.xml.dir=${conf.dir} +platform.active=default_platform +resource.dir=setup +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +# Space-separated list of JVM arguments used when running a class with a main method or a unit test +# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value): +runmain.jvmargs= +source.encoding=UTF-8 +source.root=src +src.dir=${source.root}/java +test.src.dir=test +war.content.additional= +war.ear.name=${war.name} +war.name=NetSixServer.war +web.docbase.dir=web +webinf.dir=web/WEB-INF diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/project.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/project.xml new file mode 100644 index 0000000..ff43439 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/nbproject/project.xml @@ -0,0 +1,21 @@ + + + org.netbeans.modules.web.project + + + + + + NetSixServer + 1.6.5 + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServer/src/conf/MANIFEST.MF b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/src/conf/MANIFEST.MF new file mode 100644 index 0000000..59499bc --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/src/conf/MANIFEST.MF @@ -0,0 +1,2 @@ +Manifest-Version: 1.0 + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServer/src/java/me/dcariotti/wsserv/WsServ.java b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/src/java/me/dcariotti/wsserv/WsServ.java new file mode 100644 index 0000000..8ff11d1 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/src/java/me/dcariotti/wsserv/WsServ.java @@ -0,0 +1,46 @@ +/* + * 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. + */ +package me.dcariotti.wsserv; + +import java.util.HashMap; +import javax.jws.WebService; +import javax.jws.WebMethod; +import javax.jws.WebParam; + +/** + * + * @author dcariotti + */ +@WebService(serviceName = "WsServ") +public class WsServ { + + private HashMap series; + + public WsServ() { + this.series = new HashMap(); + this.series.put("The Witcher", new int[] {1, 2, 3, 4, 5, 6}); + this.series.put("Rick & Morty", new int[] {1, 2, 3, 4, 5, 6, 7, 8}); + this.series.put("After Life", new int[] {1, 4, 5, 6, 9}); + this.series.put("Lovesick", new int[] {1, 2, 3, 4, 5, 6, 7}); + this.series.put("Chuck", new int[] {1, 2, 3, 4, 5, 6}); + this.series.put("Halt and catch fire", new int[] {1, 2, 3}); + } + + @WebMethod(operationName = "richiedi") + public boolean richiedi(@WebParam(name = "name") final String name, @WebParam(name = "episode") final int episode) { + if (this.series.containsKey(name)) { + int[] episodes = this.series.get(name); + + for (int number : episodes) { + if (number == episode) { + return true; + } + } + } + + return false; + } +} diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServer/web/WEB-INF/web.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/web/WEB-INF/web.xml new file mode 100644 index 0000000..6058a36 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServer/web/WEB-INF/web.xml @@ -0,0 +1,12 @@ + + + + + + 30 + + + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/build.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/build.xml new file mode 100644 index 0000000..72f5fa1 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/build.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + Builds, tests, and runs the project NetSixServerClient. + + + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/catalog.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/catalog.xml new file mode 100644 index 0000000..54d389d --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/catalog.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/ant-deploy.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/ant-deploy.xml new file mode 100644 index 0000000..55566c8 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/ant-deploy.xml @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/build-impl.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/build-impl.xml new file mode 100644 index 0000000..d92b4e1 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/build-impl.xml @@ -0,0 +1,1442 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set src.dir + Must set test.src.dir + Must set build.dir + Must set build.web.dir + Must set build.generated.dir + Must set dist.dir + Must set build.classes.dir + Must set dist.javadoc.dir + Must set build.test.classes.dir + Must set build.test.results.dir + Must set build.classes.excludes + Must set dist.war + + + + + + + + + +The Java EE server classpath is not correctly set up - server home directory is missing. +Either open the project in the IDE and assign the server or setup the server classpath manually. +For example like this: + ant -Dj2ee.server.home=<app_server_installation_directory> + + +The Java EE server classpath is not correctly set up. Your active server type is ${j2ee.server.type}. +Either open the project in the IDE and assign the server or setup the server classpath manually. +For example like this: + ant -Duser.properties.file=<path_to_property_file> (where you put the property "j2ee.platform.classpath" in a .properties file) +or ant -Dj2ee.platform.classpath=<server_classpath> (where no properties file is used) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + No tests executed. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +The libs.CopyLibs.classpath property is not set up. +This property must point to +org-netbeans-modules-java-j2seproject-copylibstask.jar file which is part +of NetBeans IDE installation and is usually located at +<netbeans_installation>/java<version>/ant/extra folder. +Either open the project in the IDE and make sure CopyLibs library +exists or setup the property manually. For example like this: + ant -Dlibs.CopyLibs.classpath=a/path/to/org-netbeans-modules-java-j2seproject-copylibstask.jar + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must set JVM to use for profiling in profiler.info.jvm + Must set profiler agent JVM arguments in profiler.info.jvmargs.agent + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.jsp.includes + + + + + + + + + + + + + + + + + + + + + + + + + + Must select a file in the IDE or set jsp.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Browser not found, cannot launch the deployed application. Try to set the BROWSER environment variable. + + + Launching ${browse.url} + + + + + + Must select one file in the IDE or set run.class + + + + Must select one file in the IDE or set run.class + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + + + + + + + + Must select one file in the IDE or set debug.class + + + + + Must set fix.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This target only works when run from inside the NetBeans IDE. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Must select some files in the IDE or set javac.includes + + + + + + + + + + + + + + + + + + + Some tests failed; see details above. + + + + + + + + + Must select some files in the IDE or set test.includes + + + + Some tests failed; see details above. + + + + Must select some files in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + Some tests failed; see details above. + + + + + Must select one file in the IDE or set test.class + + + + Must select one file in the IDE or set test.class + Must select some method in the IDE or set test.method + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/genfiles.properties b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/genfiles.properties new file mode 100644 index 0000000..453953b --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=3ee67bc9 +build.xml.script.CRC32=dc415187 +build.xml.stylesheet.CRC32=651128d4@1.77.1.1 +# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. +# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. +nbproject/build-impl.xml.data.CRC32=3ee67bc9 +nbproject/build-impl.xml.script.CRC32=631a619b +nbproject/build-impl.xml.stylesheet.CRC32=99ea4b56@1.77.1.1 diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/jax-ws.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/jax-ws.xml new file mode 100644 index 0000000..11699d2 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/jax-ws.xml @@ -0,0 +1,42 @@ + + + + + + http://localhost:8080/NetSixServer/WsServ?wsdl + localhost_8080/NetSixServer/WsServ.wsdl + me.dcariotti.netsix + catalog.xml + + + extension + true + + + verbose + true + + + fork + false + + + wsdlLocation + http://localhost:8080/NetSixServer/WsServ?wsdl + + + xnocompile + true + + + xendorsed + true + + + package + me.dcariotti.netsix + + + + + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/jaxws-build.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/jaxws-build.xml new file mode 100644 index 0000000..ade6127 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/jaxws-build.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/project.properties b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/project.properties new file mode 100644 index 0000000..4f4c574 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/project.properties @@ -0,0 +1,84 @@ +annotation.processing.enabled=true +annotation.processing.enabled.in.editor=true +annotation.processing.processors.list= +annotation.processing.run.all.processors=true +annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output +build.classes.dir=${build.web.dir}/WEB-INF/classes +build.classes.excludes=**/*.java,**/*.form +build.dir=build +build.generated.dir=${build.dir}/generated +build.generated.sources.dir=${build.dir}/generated-sources +build.test.classes.dir=${build.dir}/test/classes +build.test.results.dir=${build.dir}/test/results +build.web.dir=${build.dir}/web +build.web.excludes=${build.classes.excludes} +client.urlPart= +compile.jsps=false +conf.dir=${source.root}/conf +debug.classpath=${build.classes.dir}:${javac.classpath} +debug.test.classpath=\ + ${run.test.classpath} +display.browser=true +# Files to be excluded from distribution war +dist.archive.excludes= +dist.dir=dist +dist.ear.war=${dist.dir}/${war.ear.name} +dist.javadoc.dir=${dist.dir}/javadoc +dist.war=${dist.dir}/${war.name} +endorsed.classpath=\ + ${libs.javaee-endorsed-api-7.0.classpath} +excludes= +includes=** +j2ee.compile.on.save=true +j2ee.copy.static.files.on.save=true +j2ee.deploy.on.save=true +j2ee.platform=1.7-web +j2ee.platform.classpath=${j2ee.server.home}/lib/annotations-api.jar:${j2ee.server.home}/lib/catalina-ant.jar:${j2ee.server.home}/lib/catalina-ha.jar:${j2ee.server.home}/lib/catalina-storeconfig.jar:${j2ee.server.home}/lib/catalina-tribes.jar:${j2ee.server.home}/lib/catalina.jar:${j2ee.server.home}/lib/ecj-4.4.2.jar:${j2ee.server.home}/lib/el-api.jar:${j2ee.server.home}/lib/jasper-el.jar:${j2ee.server.home}/lib/jasper.jar:${j2ee.server.home}/lib/jsp-api.jar:${j2ee.server.home}/lib/servlet-api.jar:${j2ee.server.home}/lib/tomcat-api.jar:${j2ee.server.home}/lib/tomcat-coyote.jar:${j2ee.server.home}/lib/tomcat-dbcp.jar:${j2ee.server.home}/lib/tomcat-i18n-es.jar:${j2ee.server.home}/lib/tomcat-i18n-fr.jar:${j2ee.server.home}/lib/tomcat-i18n-ja.jar:${j2ee.server.home}/lib/tomcat-jdbc.jar:${j2ee.server.home}/lib/tomcat-jni.jar:${j2ee.server.home}/lib/tomcat-util-scan.jar:${j2ee.server.home}/lib/tomcat-util.jar:${j2ee.server.home}/lib/tomcat-websocket.jar:${j2ee.server.home}/lib/websocket-api.jar +j2ee.server.type=Tomcat +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.debug=true +javac.deprecation=false +javac.processorpath=\ + ${javac.classpath} +javac.source=1.8 +javac.target=1.8 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir} +javac.test.processorpath=\ + ${javac.test.classpath} +javadoc.additionalparam= +javadoc.author=false +javadoc.encoding=${source.encoding} +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.preview=true +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +lib.dir=${web.docbase.dir}/WEB-INF/lib +no.dependencies=false +persistence.xml.dir=${conf.dir} +platform.active=default_platform +resource.dir=setup +run.test.classpath=\ + ${javac.test.classpath}:\ + ${build.test.classes.dir} +# Space-separated list of JVM arguments used when running a class with a main method or a unit test +# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value): +runmain.jvmargs= +source.encoding=UTF-8 +source.root=src +src.dir=${source.root}/java +test.src.dir=test +war.content.additional= +war.ear.name=${war.name} +war.name=NetSixServerClient.war +web.docbase.dir=web +webinf.dir=web/WEB-INF diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/project.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/project.xml new file mode 100644 index 0000000..d4f81f3 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/nbproject/project.xml @@ -0,0 +1,23 @@ + + + org.netbeans.modules.web.project + + + + + + + + NetSixServerClient + 1.6.5 + + + + + + + + + + + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/conf/MANIFEST.MF b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/conf/MANIFEST.MF new file mode 100644 index 0000000..59499bc --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/conf/MANIFEST.MF @@ -0,0 +1,2 @@ +Manifest-Version: 1.0 + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/conf/xml-resources/web-service-references/WsServ/wsdl/localhost_8080/NetSixServer/WsServ.wsdl b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/conf/xml-resources/web-service-references/WsServ/wsdl/localhost_8080/NetSixServer/WsServ.wsdl new file mode 100644 index 0000000..eeb19c6 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/conf/xml-resources/web-service-references/WsServ/wsdl/localhost_8080/NetSixServer/WsServ.wsdl @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/conf/xml-resources/web-service-references/WsServ/wsdl/localhost_8080/NetSixServer/WsServ.xsd_1.xsd b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/conf/xml-resources/web-service-references/WsServ/wsdl/localhost_8080/NetSixServer/WsServ.xsd_1.xsd new file mode 100644 index 0000000..ea0cc30 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/conf/xml-resources/web-service-references/WsServ/wsdl/localhost_8080/NetSixServer/WsServ.xsd_1.xsd @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/java/me/dcariotti/netsix/NetSixServlet.java b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/java/me/dcariotti/netsix/NetSixServlet.java new file mode 100644 index 0000000..6387ccf --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/src/java/me/dcariotti/netsix/NetSixServlet.java @@ -0,0 +1,122 @@ +/* + * 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. + */ +package me.dcariotti.netsix; + +import java.io.IOException; +import java.io.PrintWriter; +import javax.servlet.RequestDispatcher; +import javax.servlet.ServletException; +import javax.servlet.annotation.WebServlet; +import javax.servlet.http.HttpServlet; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +/** + * + * @author dcariotti + */ +@WebServlet(name = "NetSixServlet", urlPatterns = {"/NetSixServlet"}) +public class NetSixServlet extends HttpServlet { + + /** + * Processes requests for both HTTP GET and POST + * methods. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + protected void processRequest(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + response.setContentType("text/html;charset=UTF-8"); + try (PrintWriter out = response.getWriter()) { + /* TODO output your page here. You may use following sample code. */ + out.println(""); + out.println(""); + out.println(""); + out.println("Servlet NetSixServlet"); + out.println(""); + out.println(""); + out.println("

Servlet NetSixServlet at " + request.getContextPath() + "

"); + out.println(""); + out.println(""); + } + } + + // + /** + * Handles the HTTP GET method. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + @Override + protected void doGet(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + RequestDispatcher view = request.getRequestDispatcher("/search.html"); + + view.forward(request, response); + } + + /** + * Handles the HTTP POST method. + * + * @param request servlet request + * @param response servlet response + * @throws ServletException if a servlet-specific error occurs + * @throws IOException if an I/O error occurs + */ + @Override + protected void doPost(HttpServletRequest request, HttpServletResponse response) + throws ServletException, IOException { + response.setContentType("text/html"); + String serie_name = request.getParameter("name"); + String serie_episode = request.getParameter("episode"); + + if (serie_name != "" && serie_episode != "") { + boolean result = this.richiedi(serie_name, new Integer(serie_episode)); + PrintWriter out = response.getWriter(); + + out.print("Episode number `"); + out.print(serie_episode); + out.print("` of `"); + out.print(serie_name); + out.print("` is "); + + if (result) { + out.print("present"); + } else { + out.print(" NOT present"); + } + + return; + } + + try (PrintWriter out = response.getWriter()) { + out.println("You must set both input names"); + } + } + + /** + * Returns a short description of the servlet. + * + * @return a String containing servlet description + */ + @Override + public String getServletInfo() { + return "Short description"; + }// + + private static boolean richiedi(java.lang.String name, int episode) { + me.dcariotti.netsix.WsServ_Service service = new me.dcariotti.netsix.WsServ_Service(); + me.dcariotti.netsix.WsServ port = service.getWsServPort(); + return port.richiedi(name, episode); + } + +} diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/META-INF/context.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/META-INF/context.xml new file mode 100644 index 0000000..21cd445 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/META-INF/context.xml @@ -0,0 +1,2 @@ + + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/WEB-INF/jax-ws-catalog.xml b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/WEB-INF/jax-ws-catalog.xml new file mode 100644 index 0000000..6df3c3e --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/WEB-INF/jax-ws-catalog.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/index.html b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/index.html new file mode 100644 index 0000000..15da543 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/index.html @@ -0,0 +1,16 @@ + + + + + NetSix + + + + + Go to the search page + + diff --git a/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/search.html b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/search.html new file mode 100644 index 0000000..768c325 --- /dev/null +++ b/Year_3/TSDWL/WSDL/NetSix/NetSixServerClient/web/search.html @@ -0,0 +1,28 @@ + + + + + NetSix + + + + +
+
+ + +
+
+ + +
+
+ +
+
+ + -- cgit v1.2.3-18-g5258