diff options
Diffstat (limited to 'Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject')
6 files changed, 618 insertions, 0 deletions
diff --git a/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/ant-deploy.xml b/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/ant-deploy.xml new file mode 100644 index 0000000..28ca9b4 --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/ant-deploy.xml @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project default="-deploy-ant" basedir="."> + <target name="-init-cl-deployment-env" if="deploy.ant.enabled"> + <property file="${deploy.ant.properties.file}" /> + <available file="${deploy.ant.docbase.dir}/WEB-INF/sun-web.xml" property="sun.web.present"/> + <available file="${deploy.ant.resource.dir}" property="has.setup"/> + <tempfile prefix="sjsas" property="sjsas.password.file" destdir="${java.io.tmpdir}"/> <!-- do not forget to delete this! --> + <echo message="AS_ADMIN_PASSWORD=${sjsas.password}" file="${sjsas.password.file}"/> + </target> + + <target name="-parse-sun-web" depends="-init-cl-deployment-env" if="sun.web.present"> + <tempfile prefix="sjsas" property="temp.sun.web" destdir="${java.io.tmpdir}"/> + <copy file="${deploy.ant.docbase.dir}/WEB-INF/sun-web.xml" tofile="${temp.sun.web}"/> + <!-- The doctype triggers resolution which can fail --> + <replace file="${temp.sun.web}"> + <replacetoken><![CDATA[<!DOCTYPE]]></replacetoken> + <replacevalue><![CDATA[<!-- <!DOCTYPE]]></replacevalue> + </replace> + <replace file="${temp.sun.web}"> + <replacetoken><![CDATA[<sun-web-app]]></replacetoken> + <replacevalue><![CDATA[--> <sun-web-app]]></replacevalue> + </replace> + <xmlproperty file="${temp.sun.web}" validate="false"> + </xmlproperty> + <delete file="${temp.sun.web}"/> + <property name="deploy.ant.client.url" value="${sjsas.url}${sun-web-app.context-root}"/> + </target> + <target name="-add-resources" depends="-init-cl-deployment-env" if="has.setup"> + <tempfile prefix="sjsas" property="sjsas.resources.dir" destdir="${java.io.tmpdir}"/> + <mkdir dir="${sjsas.resources.dir}"/> + <mkdir dir="${sjsas.resources.dir}/META-INF"/> + <property name="sjsas.resources.file" value="${sjsas.resources.dir}/META-INF/sun-resources.xml"/> + <copy todir="${sjsas.resources.dir}/META-INF"> + <fileset dir="${deploy.ant.resource.dir}"/> + </copy> + <jar destfile="${deploy.ant.archive}" update="true"> + <fileset dir="${sjsas.resources.dir}"/> + </jar> + <delete dir="${sjsas.resources.dir}"/> + </target> + <target name="-deploy-ant" depends="-parse-sun-web,-add-resources" if="deploy.ant.enabled"> + <echo message="Deploying ${deploy.ant.archive}"/> + <taskdef name="sun-appserv-deploy" classname="org.apache.tools.ant.taskdefs.optional.sun.appserv.DeployTask" + classpath="${sjsas.root}/lib/sun-appserv-ant.jar" /> + <sun-appserv-deploy user="${sjsas.username}" + passwordfile="${sjsas.password.file}" + host="${sjsas.host}" port="${sjsas.port}" + file="${deploy.ant.archive}" asinstalldir="${sjsas.root}"/> + <delete file="${sjsas.password.file}"/> + </target> + <target name="-undeploy-ant" depends="-init-cl-deployment-env" if="deploy.ant.enabled"> + <taskdef name="sun-appserv-undeploy" classname="org.apache.tools.ant.taskdefs.optional.sun.appserv.UndeployTask" + classpath="${sjsas.root}/lib/sun-appserv-ant.jar" /> + <sun-appserv-undeploy user="${sjsas.username}" + passwordfile="${sjsas.password.file}" + host="${sjsas.host}" port="${sjsas.port}" + file="${deploy.ant.archive}" asinstalldir="${sjsas.root}"/> + <delete file="${sjsas.password.file}"/> + </target> +</project> diff --git a/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/build-impl.xml b/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/build-impl.xml new file mode 100644 index 0000000..bc9e16f --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/build-impl.xml @@ -0,0 +1,468 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+*** GENERATED FROM project.xml - DO NOT EDIT ***
+*** EDIT ../build.xml INSTEAD ***
+
+For the purpose of easier reading the script
+is divided into following sections:
+
+ - initialization
+ - compilation
+ - dist
+ - execution
+ - debugging
+ - cleanup
+
+-->
+<project xmlns:ear2="http://www.netbeans.org/ns/j2ee-earproject/2" basedir=".." default="default" name="DSI1-ausgang-impl">
+ <import file="ant-deploy.xml"/>
+ <target depends="dist" description="Build whole project." name="default"/>
+ <!--
+ INITIALIZATION SECTION
+ -->
+ <target name="pre-init">
+ <!-- Empty placeholder for easier customization. -->
+ <!-- You can override this target in the ../build.xml file. -->
+ </target>
+ <target depends="pre-init" name="init-private">
+ <property file="nbproject/private/private.properties"/>
+ </target>
+ <target depends="pre-init,init-private" name="-init-libraries">
+ <property location=".\lib\nblibraries.properties" name="libraries.1.path"/>
+ <dirname file="${libraries.1.path}" property="libraries.1.dir.nativedirsep"/>
+ <pathconvert dirsep="/" property="libraries.1.dir">
+ <path path="${libraries.1.dir.nativedirsep}"/>
+ </pathconvert>
+ <basename file="${libraries.1.path}" property="libraries.1.basename" suffix=".properties"/>
+ <touch file="${libraries.1.dir}/${libraries.1.basename}-private.properties"/>
+ <loadproperties srcfile="${libraries.1.dir}/${libraries.1.basename}-private.properties">
+ <filterchain>
+ <replacestring from="$${base}" to="${libraries.1.dir}"/>
+ </filterchain>
+ </loadproperties>
+ <loadproperties srcfile="${libraries.1.path}">
+ <filterchain>
+ <replacestring from="$${base}" to="${libraries.1.dir}"/>
+ </filterchain>
+ </loadproperties>
+ </target>
+ <target depends="pre-init,init-private,-init-libraries" name="init-userdir">
+ <property location="${netbeans.user}/build.properties" name="user.properties.file"/>
+ </target>
+ <target depends="pre-init,init-private,-init-libraries,init-userdir" name="init-user">
+ <property file="${user.properties.file}"/>
+ </target>
+ <target depends="pre-init,init-private,-init-libraries,init-userdir,init-user" name="init-project">
+ <property file="nbproject/project.properties"/>
+ </target>
+ <target depends="pre-init,init-private,-init-libraries,init-userdir,init-user,init-project" name="do-init">
+ <!-- The two properties below are usually overridden -->
+ <!-- by the active platform. Just a fallback. -->
+ <property name="default.javac.source" value="1.4"/>
+ <property name="default.javac.target" value="1.4"/>
+ <condition property="do.compile.jsps">
+ <istrue value="${compile.jsps}"/>
+ </condition>
+ <condition property="do.display.browser">
+ <and>
+ <istrue value="${display.browser}"/>
+ <isset property="client.module.uri"/>
+ <not>
+ <isset property="app.client"/>
+ </not>
+ </and>
+ </condition>
+ <available file="${meta.inf}/MANIFEST.MF" property="has.custom.manifest"/>
+ <condition else="" property="j2ee.appclient.mainclass.tool.param" value="-mainclass ${main.class}">
+ <and>
+ <isset property="main.class"/>
+ <not>
+ <equals arg1="${main.class}" arg2="" trim="true"/>
+ </not>
+ </and>
+ </condition>
+ <condition else="" property="j2ee.appclient.jvmoptions.param" value="${j2ee.appclient.jvmoptions}">
+ <and>
+ <isset property="j2ee.appclient.jvmoptions"/>
+ <not>
+ <equals arg1="${j2ee.appclient.jvmoptions}" arg2="" trim="true"/>
+ </not>
+ </and>
+ </condition>
+ <condition else="" property="application.args.param" value="${application.args}">
+ <and>
+ <isset property="application.args"/>
+ <not>
+ <equals arg1="${application.args}" arg2="" trim="true"/>
+ </not>
+ </and>
+ </condition>
+ <condition property="can.debug.appclient">
+ <and>
+ <isset property="netbeans.home"/>
+ <isset property="app.client"/>
+ </and>
+ </condition>
+ </target>
+ <target depends="init" name="-init-cos">
+ <condition else="false" property="build.deploy.on.save">
+ <istrue value="${j2ee.deploy.on.save}"/>
+ </condition>
+ </target>
+ <target name="post-init">
+ <!-- Empty placeholder for easier customization. -->
+ <!-- You can override this target in the ../build.xml file. -->
+ </target>
+ <target depends="pre-init,init-private,-init-libraries,init-userdir,init-user,init-project,do-init" name="init-check">
+ <fail unless="build.dir">Must set build.dir</fail>
+ <fail unless="build.generated.dir">Must set build.generated.dir</fail>
+ <fail unless="dist.dir">Must set dist.dir</fail>
+ <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
+ <fail unless="dist.jar">Must set dist.jar</fail>
+ </target>
+ <target name="-init-taskdefs">
+ <fail unless="libs.CopyLibs.classpath">
+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
+ </fail>
+ <taskdef classpath="${libs.CopyLibs.classpath}" resource="org/netbeans/modules/java/j2seproject/copylibstask/antlib.xml"/>
+ </target>
+ <target depends="pre-init,init-private,init-userdir,init-user,init-project,do-init,post-init,init-check,-init-taskdefs" name="init"/>
+ <!--
+ COMPILATION SECTION
+ -->
+ <target depends="init" name="deps-jar" unless="no.deps"/>
+ <target depends="init" name="deps-j2ee-archive" unless="no.deps">
+ <condition property="build.deploy.on.save" value="false">
+ <not>
+ <isset property="build.deploy.on.save"/>
+ </not>
+ </condition>
+ <ant antfile="${project.DSI-app-client}/build.xml" inheritall="false" target="dist-ear">
+ <property location="${build.dir}" name="dist.ear.dir"/>
+ <property name="deploy.on.save" value="${build.deploy.on.save}"/>
+ </ant>
+ <condition property="build.deploy.on.save" value="false">
+ <not>
+ <isset property="build.deploy.on.save"/>
+ </not>
+ </condition>
+ <ant antfile="${project.DSI-ejb}/build.xml" inheritall="false" target="dist-ear">
+ <property location="${build.dir}" name="dist.ear.dir"/>
+ <property name="deploy.on.save" value="${build.deploy.on.save}"/>
+ </ant>
+ </target>
+ <target depends="init,deps-jar,deps-j2ee-archive" name="pre-pre-compile"/>
+ <target name="pre-compile">
+ <!-- Empty placeholder for easier customization. -->
+ <!-- You can override this target in the ../build.xml file. -->
+ </target>
+ <target depends="init,deps-jar,pre-pre-compile,pre-compile" name="do-compile">
+ <copy todir="${build.dir}/META-INF">
+ <fileset dir="${meta.inf}"/>
+ </copy>
+ <copyfiles files="${reference.DSI-app-client.j2ee-module-car}" todir="${build.dir}//"/>
+ <copyfiles files="${reference.DSI-ejb.dist-ear}" todir="${build.dir}//"/>
+ </target>
+ <target name="post-compile">
+ <!-- Empty placeholder for easier customization. -->
+ <!-- You can override this target in the ../build.xml file. -->
+ </target>
+ <target depends="init,deps-jar,pre-pre-compile,pre-compile,do-compile,post-compile" description="Compile project." name="compile"/>
+ <!--
+ DIST BUILDING SECTION
+ -->
+ <target name="pre-dist">
+ <!-- Empty placeholder for easier customization. -->
+ <!-- You can override this target in the ../build.xml file. -->
+ </target>
+ <target depends="init,compile,pre-dist" name="do-dist-without-manifest" unless="has.custom.manifest">
+ <dirname file="${dist.jar}" property="dist.jar.dir"/>
+ <mkdir dir="${dist.jar.dir}"/>
+ <jar compress="${jar.compress}" jarfile="${dist.jar}">
+ <fileset dir="${build.dir}"/>
+ </jar>
+ </target>
+ <target depends="init,compile,pre-dist" if="has.custom.manifest" name="do-dist-with-manifest">
+ <dirname file="${dist.jar}" property="dist.jar.dir"/>
+ <mkdir dir="${dist.jar.dir}"/>
+ <jar compress="${jar.compress}" jarfile="${dist.jar}" manifest="${meta.inf}/MANIFEST.MF">
+ <fileset dir="${build.dir}"/>
+ </jar>
+ </target>
+ <target name="post-dist">
+ <!-- Empty placeholder for easier customization. -->
+ <!-- You can override this target in the ../build.xml file. -->
+ </target>
+ <target depends="init,compile,pre-dist,do-dist-without-manifest,do-dist-with-manifest,post-dist" description="Build distribution (JAR)." name="dist"/>
+ <!--
+ EXECUTION SECTION
+ -->
+ <target depends="run-deploy,run-display-browser,run-ac" description="Deploy to server." name="run"/>
+ <target name="pre-run-deploy">
+ <!-- Empty placeholder for easier customization. -->
+ <!-- You can override this target in the ../build.xml file. -->
+ </target>
+ <target name="post-run-deploy">
+ <!-- Empty placeholder for easier customization. -->
+ <!-- You can override this target in the ../build.xml file. -->
+ </target>
+ <target name="-pre-nbmodule-run-deploy">
+ <!-- Empty placeholder for easier customization. -->
+ <!-- This target can be overriden by NetBeans modules. Don't override it directly, use -pre-run-deploy task instead. -->
+ </target>
+ <target name="-post-nbmodule-run-deploy">
+ <!-- Empty placeholder for easier customization. -->
+ <!-- This target can be overriden by NetBeans modules. Don't override it directly, use -post-run-deploy task instead. -->
+ </target>
+ <target name="-run-deploy-am" unless="no.deps">
+ <!-- Task to deploy to the Access Manager runtime. -->
+ <ant antfile="${project.DSI-app-client}/build.xml" inheritall="false" target="-run-deploy-am"/>
+ <ant antfile="${project.DSI-ejb}/build.xml" inheritall="false" target="-run-deploy-am"/>
+ </target>
+ <target depends="-init-cos,dist,pre-run-deploy,-pre-nbmodule-run-deploy,-run-deploy-nb,-init-deploy-ant,-deploy-ant,-run-deploy-am,-post-nbmodule-run-deploy,post-run-deploy" name="run-deploy"/>
+ <target if="netbeans.home" name="-run-deploy-nb">
+ <nbdeploy clientModuleUri="${client.module.uri}" clientUrlPart="${client.urlPart}" debugmode="false" forceRedeploy="${forceRedeploy}"/>
+ </target>
+ <target name="-init-deploy-ant" unless="netbeans.home">
+ <property name="deploy.ant.archive" value="${dist.jar}"/>
+ <property name="deploy.ant.resource.dir" value="${resource.dir}"/>
+ <property name="deploy.ant.enabled" value="true"/>
+ </target>
+ <target depends="dist,-run-undeploy-nb,-init-deploy-ant,-undeploy-ant" name="run-undeploy"/>
+ <target if="netbeans.home" name="-run-undeploy-nb">
+ <fail message="Undeploy is not supported from within the IDE"/>
+ </target>
+ <target depends="dist" name="verify">
+ <nbverify file="${dist.jar}"/>
+ </target>
+ <target depends="run-deploy,-init-display-browser,-display-browser-nb,-display-browser-cl" name="run-display-browser"/>
+ <target if="do.display.browser" name="-init-display-browser">
+ <condition property="do.display.browser.nb">
+ <isset property="netbeans.home"/>
+ </condition>
+ <condition property="do.display.browser.cl">
+ <and>
+ <isset property="deploy.ant.enabled"/>
+ <isset property="deploy.ant.client.url"/>
+ </and>
+ </condition>
+ </target>
+ <target if="do.display.browser.nb" name="-display-browser-nb">
+ <nbbrowse url="${client.url}"/>
+ </target>
+ <target if="do.display.browser.cl" name="-get-browser" unless="browser">
+ <condition property="browser" value="rundll32">
+ <os family="windows"/>
+ </condition>
+ <condition else="" property="browser.args" value="url.dll,FileProtocolHandler">
+ <os family="windows"/>
+ </condition>
+ <condition property="browser" value="/usr/bin/open">
+ <os family="mac"/>
+ </condition>
+ <property environment="env"/>
+ <condition property="browser" value="${env.BROWSER}">
+ <isset property="env.BROWSER"/>
+ </condition>
+ <condition property="browser" value="/usr/bin/firefox">
+ <available file="/usr/bin/firefox"/>
+ </condition>
+ <condition property="browser" value="/usr/local/firefox/firefox">
+ <available file="/usr/local/firefox/firefox"/>
+ </condition>
+ <condition property="browser" value="/usr/bin/mozilla">
+ <available file="/usr/bin/mozilla"/>
+ </condition>
+ <condition property="browser" value="/usr/local/mozilla/mozilla">
+ <available file="/usr/local/mozilla/mozilla"/>
+ </condition>
+ <condition property="browser" value="/usr/sfw/lib/firefox/firefox">
+ <available file="/usr/sfw/lib/firefox/firefox"/>
+ </condition>
+ <condition property="browser" value="/opt/csw/bin/firefox">
+ <available file="/opt/csw/bin/firefox"/>
+ </condition>
+ <condition property="browser" value="/usr/sfw/lib/mozilla/mozilla">
+ <available file="/usr/sfw/lib/mozilla/mozilla"/>
+ </condition>
+ <condition property="browser" value="/opt/csw/bin/mozilla">
+ <available file="/opt/csw/bin/mozilla"/>
+ </condition>
+ </target>
+ <target depends="-get-browser" if="do.display.browser.cl" name="-display-browser-cl">
+ <fail unless="browser">
+ Browser not found, cannot launch the deployed application. Try to set the BROWSER environment variable.
+ </fail>
+ <property name="browse.url" value="${deploy.ant.client.url}${client.urlPart}"/>
+ <echo>Launching ${browse.url}</echo>
+ <exec executable="${browser}" spawn="true">
+ <arg line="${browser.args} ${browse.url}"/>
+ </exec>
+ </target>
+ <target depends="init" if="app.client" name="run-ac">
+ <antcall target="run-${app.client}"/>
+ </target>
+ <target depends="-tool-DSI-app-client,-java-DSI-app-client" name="run-DSI-app-client"/>
+ <target depends="-as-retrieve-option-workaround" if="j2ee.appclient.mainclass.args" name="-tool-DSI-app-client" unless="j2ee.clientName">
+ <java classname="${j2ee.appclient.tool.mainclass}" fork="true">
+ <jvmarg line="${j2ee.appclient.tool.jvmoptions}"/>
+ <jvmarg line="${j2ee.appclient.jvmoptions.param}"/>
+ <arg line="${j2ee.appclient.tool.args}"/>
+ <arg line="-client ${client.jar}"/>
+ <arg line="${j2ee.appclient.mainclass.tool.param}"/>
+ <arg line="${application.args.param}"/>
+ <classpath>
+ <path path="${j2ee.platform.classpath}:${j2ee.appclient.tool.runtime}"/>
+ </classpath>
+ <syspropertyset>
+ <propertyref prefix="run-sys-prop."/>
+ <mapper from="run-sys-prop.*" to="*" type="glob"/>
+ </syspropertyset>
+ </java>
+ </target>
+ <target if="j2ee.clientName" name="-java-DSI-app-client" unless="j2ee.appclient.mainclass.args">
+ <java classname="${main.class}" fork="true">
+ <jvmarg line="${j2ee.appclient.tool.jvmoptions}"/>
+ <jvmarg line="-Dj2ee.clientName=${app.client}"/>
+ <jvmarg line="${j2ee.appclient.jvmoptions.param}"/>
+ <arg line="${application.args.param}"/>
+ <classpath>
+ <path path="${jar.content.additional}:${j2ee.platform.classpath}:${j2ee.appclient.tool.runtime}"/>
+ </classpath>
+ <syspropertyset>
+ <propertyref prefix="run-sys-prop."/>
+ <mapper from="run-sys-prop.*" to="*" type="glob"/>
+ </syspropertyset>
+ </java>
+ </target>
+ <target if="j2ee.appclient.mainclass.args" name="-as-retrieve-option-workaround" unless="j2ee.clientName">
+ <property name="client.jar" value="${dist.dir}/DSI1-ausgangClient.jar"/>
+ <sleep seconds="3"/>
+ <copy file="${wa.copy.client.jar.from}/DSI1-ausgang/DSI1-ausgangClient.jar" todir="${dist.dir}"/>
+ </target>
+ <!--
+ DEBUGGING SECTION
+ -->
+ <target depends="run-debug,run-debug-appclient" description="Deploy to server." name="debug"/>
+ <target depends="dist" description="Debug project in IDE." if="netbeans.home" name="run-debug" unless="app.client">
+ <nbdeploy clientModuleUri="${client.module.uri}" clientUrlPart="${client.urlPart}" debugmode="true"/>
+ <antcall target="connect-debugger"/>
+ <antcall target="debug-display-browser"/>
+ </target>
+ <target name="connect-debugger" unless="is.debugged">
+ <nbjpdaconnect address="${jpda.address}" host="${jpda.host}" name="${name}" transport="${jpda.transport}">
+ <classpath>
+ <path path="${debug.classpath}"/>
+ </classpath>
+ <sourcepath>
+ <path path="${ear.docbase.dirs}"/>
+ </sourcepath>
+ </nbjpdaconnect>
+ </target>
+ <target if="do.display.browser" name="debug-display-browser">
+ <nbbrowse url="${client.url}"/>
+ </target>
+ <target name="-init-debug-args">
+ <property name="version-output" value="java version "${ant.java.version}"/>
+ <condition property="have-jdk-older-than-1.4">
+ <or>
+ <contains string="${version-output}" substring="java version "1.0"/>
+ <contains string="${version-output}" substring="java version "1.1"/>
+ <contains string="${version-output}" substring="java version "1.2"/>
+ <contains string="${version-output}" substring="java version "1.3"/>
+ </or>
+ </condition>
+ <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
+ <istrue value="${have-jdk-older-than-1.4}"/>
+ </condition>
+ </target>
+ <target depends="init,-init-debug-args" if="can.debug.appclient" name="run-debug-appclient">
+ <macrodef name="debug-appclient" uri="http://www.netbeans.org/ns/j2ee-earproject/2">
+ <attribute name="mainclass"/>
+ <attribute default="${debug.classpath}" name="classpath"/>
+ <element name="customize" optional="true"/>
+ <attribute default="${application.args.param}" name="args"/>
+ <sequential>
+ <parallel>
+ <java classname="@{mainclass}" fork="true">
+ <jvmarg line="${j2ee.appclient.tool.jvmoptions}"/>
+ <jvmarg line="${debug-args-line}"/>
+ <jvmarg value="-Xrunjdwp:transport=${jpda.transport},server=y,address=${jpda.address},suspend=y"/>
+ <jvmarg line="${j2ee.appclient.jvmoptions.param}"/>
+ <arg line="@{args}"/>
+ <classpath>
+ <path path="${j2ee.platform.classpath}:${j2ee.appclient.tool.runtime}"/>
+ <path path="@{classpath}"/>
+ </classpath>
+ <syspropertyset>
+ <propertyref prefix="run-sys-prop."/>
+ <mapper from="run-sys-prop.*" to="*" type="glob"/>
+ </syspropertyset>
+ <customize/>
+ </java>
+ <nbjpdaconnect address="${jpda.address}" host="${jpda.host}" name="${name}" transport="${jpda.transport}">
+ <classpath>
+ <path path="${j2ee.platform.classpath}:${j2ee.appclient.tool.runtime}"/>
+ <path path="@{classpath}"/>
+ </classpath>
+ <sourcepath>
+ <path path="${src.dir}"/>
+ </sourcepath>
+ </nbjpdaconnect>
+ </parallel>
+ </sequential>
+ </macrodef>
+ <nbdeploy clientModuleUri="${client.module.uri}" clientUrlPart="${client.urlPart}" debugmode="false"/>
+ <antcall target="debug-${app.client}"/>
+ </target>
+ <target depends="-debug-tool-DSI-app-client,-debug-java-DSI-app-client" name="debug-DSI-app-client"/>
+ <target depends="init,-as-retrieve-option-workaround" if="j2ee.appclient.mainclass.args" name="-debug-tool-DSI-app-client" unless="j2ee.clientName">
+ <ear2:debug-appclient args="-client ${client.jar} ${j2ee.appclient.tool.args} ${j2ee.appclient.mainclass.tool.param} ${application.args.param}" mainclass="${j2ee.appclient.tool.mainclass}"/>
+ </target>
+ <target if="j2ee.clientName" name="-debug-java-DSI-app-client" unless="j2ee.appclient.mainclass.args">
+ <ear2:debug-appclient args="${application.args.param}" classpath="${jar.content.additional}" mainclass="${main.class}"/>
+ </target>
+ <!--
+ CLEANUP SECTION
+ -->
+ <target depends="init" name="deps-clean" unless="no.deps">
+ <condition property="build.deploy.on.save" value="false">
+ <not>
+ <isset property="build.deploy.on.save"/>
+ </not>
+ </condition>
+ <ant antfile="${project.DSI-app-client}/build.xml" inheritall="false" target="clean-ear">
+ <property location="${build.dir}" name="dist.ear.dir"/>
+ <property name="deploy.on.save" value="${build.deploy.on.save}"/>
+ </ant>
+ <condition property="build.deploy.on.save" value="false">
+ <not>
+ <isset property="build.deploy.on.save"/>
+ </not>
+ </condition>
+ <ant antfile="${project.DSI-ejb}/build.xml" inheritall="false" target="clean-ear">
+ <property location="${build.dir}" name="dist.ear.dir"/>
+ <property name="deploy.on.save" value="${build.deploy.on.save}"/>
+ </ant>
+ </target>
+ <target depends="init" name="do-clean">
+ <delete dir="${build.dir}"/>
+ <delete dir="${dist.dir}"/>
+ <delete dir="${build.dir}"/>
+ </target>
+ <target depends="init" if="netbeans.home" name="undeploy-clean">
+ <nbundeploy failOnError="false" startServer="false"/>
+ </target>
+ <target name="post-clean">
+ <!-- Empty placeholder for easier customization. -->
+ <!-- You can override this target in the ../build.xml file. -->
+ </target>
+ <target depends="init,undeploy-clean,deps-clean,do-clean,post-clean" description="Clean build products." name="clean"/>
+</project>
diff --git a/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/genfiles.properties b/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/genfiles.properties new file mode 100644 index 0000000..d157980 --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/genfiles.properties @@ -0,0 +1,8 @@ +build.xml.data.CRC32=1aab7fe7
+build.xml.script.CRC32=a34f890c
+build.xml.stylesheet.CRC32=475c2a62
+# 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=1aab7fe7
+nbproject/build-impl.xml.script.CRC32=75208292
+nbproject/build-impl.xml.stylesheet.CRC32=47a529d0
diff --git a/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/private/private.properties b/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/private/private.properties new file mode 100644 index 0000000..af8ef69 --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/private/private.properties @@ -0,0 +1,9 @@ +deploy.ant.properties.file=C:\\Dokumente und Einstellungen\\Jan\\.netbeans\\6.5\\glassfish.properties
+j2ee.appclient.tool.args=-configxml "D:\\Programme\\glassfish-v2.1\\domains\\domain1\\config\\sun-acc.xml"
+j2ee.appclient.tool.jvmoptions=-Dcom.sun.aas.configRoot="D:\\Programme\\glassfish-v2.1\\config" -Dcom.sun.aas.installRoot="D:\\Programme\\glassfish-v2.1" -Dcom.sun.aas.imqLib="D:\\Programme\\glassfish-v2.1\\imq\\lib" -Djava.security.policy="D:\\Programme\\glassfish-v2.1\\lib\\appclient\\client.policy" -Djava.security.auth.login.config="D:\\Programme\\glassfish-v2.1\\lib\\appclient\\appclientlogin.conf" -Djava.endorsed.dirs="D:\\Programme\\glassfish-v2.1\\lib\\endorsed" -Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl -Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl -Djavax.xml.transform.TransformerFactory=com.sun.org.apache.xalan.internal.xsltc.trax.TransformerFactoryImpl -Dorg.xml.sax.parser=org.xml.sax.helpers.XMLReaderAdapter -Dorg.xml.sax.driver=com.sun.org.apache.xerces.internal.parsers.SAXParser -Djava.util.logging.manager=com.sun.enterprise.server.logging.ACCLogManager
+j2ee.appclient.tool.mainclass=com.sun.enterprise.appclient.Main
+j2ee.appclient.tool.runtime=D:\\Programme\\glassfish-v2.1\\lib\\dom.jar:D:\\Programme\\glassfish-v2.1\\lib\\xalan.jar:D:\\Programme\\glassfish-v2.1\\lib\\xercesImpl.jar:D:\\Programme\\glassfish-v2.1\\lib\\appserv-rt.jar:D:\\Programme\\glassfish-v2.1\\lib\\javaee.jar:D:\\Programme\\glassfish-v2.1\\lib\\j2ee.jar:D:\\Programme\\glassfish-v2.1\\lib\\jmac-api.jar:D:\\Programme\\glassfish-v2.1\\lib\\appserv-ext.jar:D:\\Programme\\glassfish-v2.1\\lib\\mail.jar:D:\\Programme\\glassfish-v2.1\\lib\\activation.jar:D:\\Programme\\glassfish-v2.1\\lib\\webservices-rt.jar:D:\\Programme\\glassfish-v2.1\\lib\\webservices-tools.jar:D:\\Programme\\glassfish-v2.1\\lib\\appserv-ws.jar:D:\\Programme\\glassfish-v2.1\\lib\\jaxrpc-impl.jar:D:\\Programme\\glassfish-v2.1\\lib\\saaj-impl.jar:D:\\Programme\\glassfish-v2.1\\lib\\jaxr-impl.jar:D:\\Programme\\glassfish-v2.1\\lib\\relaxngDatatype.jar:D:\\Programme\\glassfish-v2.1\\lib\\xsdlib.jar:D:\\Programme\\glassfish-v2.1\\lib\\appserv-cmp.jar:D:\\Programme\\glassfish-v2.1\\javadb\\lib\\derbyclient.jar:D:\\Programme\\glassfish-v2.1\\lib\\toplink-essentials.jar:D:\\Programme\\glassfish-v2.1\\lib\\dbschema.jar:D:\\Programme\\glassfish-v2.1\\lib\\appserv-admin.jar:D:\\Programme\\glassfish-v2.1\\lib\\install\\applications\\jmsra\\imqjmsra.jar:D:\\Programme\\glassfish-v2.1\\lib\\fscontext.jar:D:\\Programme\\glassfish-v2.1\\lib\\dtds:D:\\Programme\\glassfish-v2.1\\lib\\schemas
+j2ee.platform.classpath=D:\\Programme\\glassfish-v2.1\\lib\\javaee.jar:D:\\Programme\\glassfish-v2.1\\lib\\jsf-impl.jar:D:\\Programme\\glassfish-v2.1\\lib\\activation.jar:D:\\Programme\\glassfish-v2.1\\lib\\appserv-tags.jar:D:\\Programme\\glassfish-v2.1\\lib\\mail.jar:D:\\Programme\\glassfish-v2.1\\lib\\appserv-jstl.jar:D:\\Programme\\glassfish-v2.1\\lib\\webservices-tools.jar:D:\\Programme\\glassfish-v2.1\\lib\\webservices-rt.jar:D:\\Programme\\glassfish-v2.1\\lib\\appserv-ws.jar
+j2ee.server.instance=[D:\\Programme\\glassfish-v2.1]deployer:Sun:AppServer::localhost:4848
+netbeans.user=C:\\Dokumente und Einstellungen\\Jan\\.netbeans\\6.5
+wa.copy.client.jar.from=D:\\Programme\\glassfish-v2.1\\domains\\domain1\\generated\\xml\\j2ee-apps
diff --git a/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/project.properties b/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/project.properties new file mode 100644 index 0000000..0e79333 --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/project.properties @@ -0,0 +1,31 @@ +app.client=DSI-app-client
+build.classes.excludes=**/*.java,**/*.form,**/.nbattrs
+build.dir=build
+build.generated.dir=${build.dir}/generated
+client.module.uri=DSI1-ausgang/${app.client}
+client.urlPart=
+debug.classpath=${javac.classpath}::${jar.content.additional}:${run.classpath}
+display.browser=true
+dist.dir=dist
+dist.jar=${dist.dir}/${jar.name}
+j2ee.appclient.mainclass.args=-client ${dist.jar} ${j2ee.appclient.tool.args}
+j2ee.platform=1.5
+j2ee.server.type=J2EE
+jar.compress=false
+jar.content.additional=\
+ ${reference.DSI-app-client.j2ee-module-car}:\
+ ${reference.DSI-ejb.dist-ear}
+jar.name=DSI1-ausgang.ear
+javac.debug=true
+javac.deprecation=false
+javac.source=1.5
+javac.target=1.5
+meta.inf=src/conf
+no.dependencies=false
+platform.active=default_platform
+project.DSI-app-client=DSI-app-client
+project.DSI-ejb=DSI-ejb
+reference.DSI-app-client.j2ee-module-car=${project.DSI-app-client}/dist/DSI-app-client.jar
+reference.DSI-ejb.dist-ear=${project.DSI-ejb}/dist/DSI-ejb.jar
+resource.dir=setup
+source.root=.
diff --git a/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/project.xml b/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/project.xml new file mode 100644 index 0000000..6ec9cbe --- /dev/null +++ b/Master/Daten- und Systemintegration/Praktikum/DSI-Praktikum-1_ausgang/DSI1-ausgang/nbproject/project.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://www.netbeans.org/ns/project/1">
+ <type>org.netbeans.modules.j2ee.earproject</type>
+ <configuration>
+ <data xmlns="http://www.netbeans.org/ns/j2ee-earproject/2">
+ <name>DSI1-ausgang</name>
+ <minimum-ant-version>1.6</minimum-ant-version>
+ <web-module-libraries/>
+ <web-module-additional-libraries>
+ <library files="1">
+ <file>${reference.DSI-app-client.j2ee-module-car}</file>
+ <path-in-war>/</path-in-war>
+ </library>
+ <library files="1">
+ <file>${reference.DSI-ejb.dist-ear}</file>
+ <path-in-war>/</path-in-war>
+ </library>
+ </web-module-additional-libraries>
+ </data>
+ <libraries xmlns="http://www.netbeans.org/ns/ant-project-libraries/1">
+ <definitions>.\lib\nblibraries.properties</definitions>
+ </libraries>
+ <references xmlns="http://www.netbeans.org/ns/ant-project-references/1">
+ <reference>
+ <foreign-project>DSI-app-client</foreign-project>
+ <artifact-type>j2ee_ear_archive</artifact-type>
+ <script>build.xml</script>
+ <target>dist-ear</target>
+ <clean-target>clean-ear</clean-target>
+ <id>j2ee-module-car</id>
+ </reference>
+ <reference>
+ <foreign-project>DSI-ejb</foreign-project>
+ <artifact-type>j2ee_ear_archive</artifact-type>
+ <script>build.xml</script>
+ <target>dist-ear</target>
+ <clean-target>clean-ear</clean-target>
+ <id>dist-ear</id>
+ </reference>
+ </references>
+ </configuration>
+</project>
|
