From 33613a85afc4b1481367fbe92a17ee59c240250b Mon Sep 17 00:00:00 2001 From: Sven Eisenhauer Date: Fri, 10 Nov 2023 15:11:48 +0100 Subject: add new repo --- .../ausgang/DSI-Andere-Webservices/build.xml | 71 ++ ...beans-modules-java-j2seproject-copylibstask.jar | Bin 0 -> 14872 bytes .../lib/junit/junit-3.8.2-api.zip | Bin 0 -> 72555 bytes .../lib/junit/junit-3.8.2.jar | Bin 0 -> 118932 bytes .../lib/junit_4/junit-4.5-api.zip | Bin 0 -> 184067 bytes .../lib/junit_4/junit-4.5-src.jar | Bin 0 -> 109014 bytes .../lib/junit_4/junit-4.5.jar | Bin 0 -> 196787 bytes .../lib/nblibraries-private.properties | 0 .../lib/nblibraries.properties | 12 + .../nbproject/ant-deploy.xml | 60 ++ .../nbproject/build-impl.xml | 826 +++++++++++++++++++++ .../nbproject/genfiles.properties | 9 + .../DSI-Andere-Webservices/nbproject/jax-ws.xml | 9 + .../nbproject/jaxws-build.xml | 25 + .../nbproject/private/private.properties | 10 + .../nbproject/private/private.xml | 4 + .../nbproject/project.properties | 70 ++ .../DSI-Andere-Webservices/nbproject/project.xml | 24 + .../DSI-Andere-Webservices/src/conf/MANIFEST.MF | 2 + .../src/java/ws/MindestMenge.java | 24 + .../DSI-Andere-Webservices/web/WEB-INF/sun-web.xml | 11 + .../DSI-Andere-Webservices/web/WEB-INF/web.xml | 11 + .../ausgang/DSI-Andere-Webservices/web/index.jsp | 19 + 23 files changed, 1187 insertions(+) create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/build.xml create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit/junit-3.8.2-api.zip create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit/junit-3.8.2.jar create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit_4/junit-4.5-api.zip create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit_4/junit-4.5-src.jar create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit_4/junit-4.5.jar create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/nblibraries-private.properties create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/nblibraries.properties create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/ant-deploy.xml create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/build-impl.xml create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/genfiles.properties create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/jax-ws.xml create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/jaxws-build.xml create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/private/private.properties create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/private/private.xml create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/project.properties create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/project.xml create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/src/conf/MANIFEST.MF create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/src/java/ws/MindestMenge.java create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/web/WEB-INF/sun-web.xml create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/web/WEB-INF/web.xml create mode 100644 Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/web/index.jsp (limited to 'Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices') diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/build.xml b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/build.xml new file mode 100644 index 0000000..a310da4 --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/build.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + Builds, tests, and runs the project DSI-Andere-Webservices. + + + diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar new file mode 100644 index 0000000..a2cfc45 Binary files /dev/null and b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar differ diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit/junit-3.8.2-api.zip b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit/junit-3.8.2-api.zip new file mode 100644 index 0000000..6d792fd Binary files /dev/null and b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit/junit-3.8.2-api.zip differ diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit/junit-3.8.2.jar b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit/junit-3.8.2.jar new file mode 100644 index 0000000..d835872 Binary files /dev/null and b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit/junit-3.8.2.jar differ diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit_4/junit-4.5-api.zip b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit_4/junit-4.5-api.zip new file mode 100644 index 0000000..5748c44 Binary files /dev/null and b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit_4/junit-4.5-api.zip differ diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit_4/junit-4.5-src.jar b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit_4/junit-4.5-src.jar new file mode 100644 index 0000000..18774a5 Binary files /dev/null and b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit_4/junit-4.5-src.jar differ diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit_4/junit-4.5.jar b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit_4/junit-4.5.jar new file mode 100644 index 0000000..83f8bc7 Binary files /dev/null and b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/junit_4/junit-4.5.jar differ diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/nblibraries-private.properties b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/nblibraries-private.properties new file mode 100644 index 0000000..e69de29 diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/nblibraries.properties b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/nblibraries.properties new file mode 100644 index 0000000..849ac15 --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/lib/nblibraries.properties @@ -0,0 +1,12 @@ +libs.junit.classpath=\ + ${base}/junit/junit-3.8.2.jar +libs.junit.javadoc=\ + ${base}/junit/junit-3.8.2-api.zip +libs.junit_4.classpath=\ + ${base}/junit_4/junit-4.5.jar +libs.junit_4.javadoc=\ + ${base}/junit_4/junit-4.5-api.zip +libs.junit_4.src=\ + ${base}/junit_4/junit-4.5-src.jar +libs.CopyLibs.classpath=\ + ${base}/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/ant-deploy.xml b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/ant-deploy.xml new file mode 100644 index 0000000..28ca9b4 --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/ant-deploy.xml @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/build-impl.xml b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/build-impl.xml new file mode 100644 index 0000000..4fc2cd4 --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/build-impl.xml @@ -0,0 +1,826 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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. 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) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +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 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 debug.class + + + + + Must set fix.includes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 one file in the IDE or set test.class + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/genfiles.properties b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/genfiles.properties new file mode 100644 index 0000000..4eb5587 --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/genfiles.properties @@ -0,0 +1,9 @@ +build.xml.data.CRC32=9130ae2c +build.xml.script.CRC32=6b554c29 +build.xml.stylesheet.CRC32=c0ebde35 +# 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=9130ae2c +nbproject/build-impl.xml.script.CRC32=37e9a26a +nbproject/build-impl.xml.stylesheet.CRC32=174458fc +nbproject/jaxws-build.xml.stylesheet.CRC32=74f01376 diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/jax-ws.xml b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/jax-ws.xml new file mode 100644 index 0000000..d5fd7db --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/jax-ws.xml @@ -0,0 +1,9 @@ + + + + + ws.MindestMenge + + + + diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/jaxws-build.xml b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/jaxws-build.xml new file mode 100644 index 0000000..732c3a7 --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/jaxws-build.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/private/private.properties b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/private/private.properties new file mode 100644 index 0000000..57beec1 --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/private/private.properties @@ -0,0 +1,10 @@ +deploy.ant.properties.file=C:\\Dokumente und Einstellungen\\eisenhauer\\.netbeans\\6.5\\glassfish.properties +j2ee.platform.classpath=C:\\Programme\\glassfish_v2\\glassfish\\lib\\javaee.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\jsf-impl.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\activation.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\appserv-tags.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\mail.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\appserv-jstl.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\webservices-tools.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\webservices-rt.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\appserv-ws.jar +j2ee.platform.is.jsr109=true +j2ee.platform.wscompile.classpath=C:\\Programme\\glassfish_v2\\glassfish\\lib\\j2ee.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\saaj-api.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\saaj-impl.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\jaxrpc-api.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\jaxrpc-impl.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\endorsed\\jaxp-api.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\appserv-ws.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\webservices-tools.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\webservices-rt.jar +j2ee.platform.wsgen.classpath=C:\\Programme\\glassfish_v2\\glassfish\\lib\\webservices-tools.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\webservices-rt.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\tools.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\appserv-jstl.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\javaee.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\appserv-ws.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\mail.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\activation.jar +j2ee.platform.wsimport.classpath=C:\\Programme\\glassfish_v2\\glassfish\\lib\\webservices-tools.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\webservices-rt.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\tools.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\appserv-jstl.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\javaee.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\appserv-ws.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\mail.jar:C:\\Programme\\glassfish_v2\\glassfish\\lib\\activation.jar +j2ee.platform.wsit.classpath= +j2ee.server.instance=[C:\\Programme\\glassfish_v2\\glassfish]deployer:Sun:AppServer::localhost:4848 +jaxws.endorsed.dir=C:\\Programme\\NetBeans 6.5\\java2\\modules\\ext\\jaxws21\\api:C:\\Programme\\NetBeans 6.5\\ide10\\modules\\ext\\jaxb\\api +user.properties.file=C:\\Dokumente und Einstellungen\\eisenhauer\\.netbeans\\6.5\\build.properties diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/private/private.xml b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/private/private.xml new file mode 100644 index 0000000..cc2c0e5 --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/private/private.xml @@ -0,0 +1,4 @@ + + + + diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/project.properties b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/project.properties new file mode 100644 index 0000000..4e7b5fb --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/project.properties @@ -0,0 +1,70 @@ +build.classes.dir=${build.web.dir}/WEB-INF/classes +build.classes.excludes=**/*.java,**/*.form +build.dir=build +build.generated.dir=${build.dir}/generated +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 +dist.dir=dist +dist.ear.war=${dist.dir}/${war.ear.name} +dist.javadoc.dir=${dist.dir}/javadoc +dist.war=${dist.dir}/${war.name} +excludes= +includes=** +j2ee.deploy.on.save=true +j2ee.platform=1.5 +j2ee.server.type=J2EE +jar.compress=false +javac.classpath= +# Space-separated list of extra javac options +javac.compilerargs= +javac.debug=true +javac.deprecation=false +javac.source=1.5 +javac.target=1.5 +javac.test.classpath=\ + ${javac.classpath}:\ + ${build.classes.dir}:\ + ${libs.junit.classpath}:\ + ${libs.junit_4.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= +jspcompilation.classpath=${jspc.classpath}:${javac.classpath} +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=DSI-Andere-Webservices.war +war.name=DSI-Andere-Webservices.war +web.docbase.dir=web +webinf.dir=web/WEB-INF diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/project.xml b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/project.xml new file mode 100644 index 0000000..6182c44 --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/nbproject/project.xml @@ -0,0 +1,24 @@ + + + org.netbeans.modules.web.project + + + + + + DSI-Andere-Webservices + 1.6.5 + + + + + + + + + + + .\lib\nblibraries.properties + + + diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/src/conf/MANIFEST.MF b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/src/conf/MANIFEST.MF new file mode 100644 index 0000000..58630c0 --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/src/conf/MANIFEST.MF @@ -0,0 +1,2 @@ +Manifest-Version: 1.0 + diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/src/java/ws/MindestMenge.java b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/src/java/ws/MindestMenge.java new file mode 100644 index 0000000..4576d3c --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/src/java/ws/MindestMenge.java @@ -0,0 +1,24 @@ +/* + * To change this template, choose Tools | Templates + * and open the template in the editor. + */ + +package ws; + +import javax.jws.WebMethod; +import javax.jws.WebParam; +import javax.jws.WebService; +import javax.jws.WebResult; + +/** + * + * @author eisenhauer + */ +@WebService() +public class MindestMenge { + @WebMethod + public @WebResult(name="mindestmenge") long holeMindestmengeFuerArtikel( + @WebParam(name="artikelId") long artikelId) { + return artikelId<5?100L:20L; + } +} diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/web/WEB-INF/sun-web.xml b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/web/WEB-INF/sun-web.xml new file mode 100644 index 0000000..fc8e0ed --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/web/WEB-INF/sun-web.xml @@ -0,0 +1,11 @@ + + + + /DSI-Andere-Webservices + + + + Keep a copy of the generated servlet class' java code. + + + diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/web/WEB-INF/web.xml b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/web/WEB-INF/web.xml new file mode 100644 index 0000000..d63cd69 --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/web/WEB-INF/web.xml @@ -0,0 +1,11 @@ + + + + + 30 + + + + index.jsp + + diff --git a/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/web/index.jsp b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/web/index.jsp new file mode 100644 index 0000000..1fac20e --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/Projekte/DSI-Praktikum-1/ausgang/DSI-Andere-Webservices/web/index.jsp @@ -0,0 +1,19 @@ +<%-- + Document : index + Created on : 07.11.2009, 16:10:24 + Author : eisenhauer +--%> + +<%@page contentType="text/html" pageEncoding="UTF-8"%> + + + + + + JSP Page + + +

Hello World!

+ + -- cgit v1.2.3