From: <pka...@us...> - 2009-04-16 21:50:09
|
Revision: 123 http://cse-ip.svn.sourceforge.net/cse-ip/?rev=123&view=rev Author: pkasprzak Date: 2009-04-16 21:50:03 +0000 (Thu, 16 Apr 2009) Log Message: ----------- * Adapted messages / variables to new datamodel (CDDM.xsd) * Course attributes are filled via xslt * Reorganized project-dependencies: common files are kept in the "Common"-Project * Cleanups Added Paths: ----------- trunk/sandbox/lsf-adapter-demo/Common/build.xml trunk/sandbox/lsf-adapter-demo/Common/catalog.xml trunk/sandbox/lsf-adapter-demo/Common/nbproject/ trunk/sandbox/lsf-adapter-demo/Common/nbproject/build-impl.xml trunk/sandbox/lsf-adapter-demo/Common/nbproject/genfiles.properties trunk/sandbox/lsf-adapter-demo/Common/nbproject/project.properties trunk/sandbox/lsf-adapter-demo/Common/nbproject/project.xml trunk/sandbox/lsf-adapter-demo/Common/src/ trunk/sandbox/lsf-adapter-demo/Common/src/CDDM.xsd trunk/sandbox/lsf-adapter-demo/Common/src/CDMM.wsdl Property Changed: ---------------- trunk/sandbox/lsf-adapter-demo/Common/ Property changes on: trunk/sandbox/lsf-adapter-demo/Common ___________________________________________________________________ Added: svn:ignore + build Added: trunk/sandbox/lsf-adapter-demo/Common/build.xml =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/build.xml (rev 0) +++ trunk/sandbox/lsf-adapter-demo/Common/build.xml 2009-04-16 21:50:03 UTC (rev 123) @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- You may freely edit this file. See commented blocks below for --> +<!-- some examples of how to customize the build. --> +<!-- (If you delete it and reopen the project it will be recreated.) --> +<project name="" default="default" basedir="." xmlns:web="http://www.netbeans.org/ns/j2ee-ejbjarproject/1"> + <description>Builds, tests, and runs the project .</description> + <import file="nbproject/build-impl.xml"/> + <!-- + There exist several targets which are by default empty and which can be + used for execution of your tasks. These targets are usually executed + before and after some main targets. They are: + + -pre-init called before initialization of project properties + -post-init called after initialization of project properties + -pre-compile called before javac compilation + -post-compile called after javac compilation + -pre-compile-single called before javac compilation of single file + -post-compile-single called after javac compilation of single file + -pre-dist called before jar building + -post-dist called after jar building + -post-clean called after cleaning build products + + Example of pluging an obfuscator after the compilation could look like + + <target name="post-compile"> + <obfuscate> + <fileset dir="${build.classes.dir}"/> + </obfuscate> + </target> + + For list of available properties check the imported + nbproject/build-impl.xml file. + + Other way how to customize the build is by overriding existing main targets. + The target of interest are: + + init-macrodef-javac defines macro for javac compilation + init-macrodef-debug defines macro for class debugging + do-dist jar archive building + run execution of project + javadoc-build javadoc generation + + Example of overriding the target for project execution could look like + + <target name="run" depends="<PROJNAME>-impl.jar"> + <exec dir="bin" executable="launcher.exe"> + <arg file="${dist.jar}"/> + </exec> + </target> + + Notice that overridden target depends on jar target and not only on + compile target as regular run target does. Again, for list of available + properties which you can use check the target you are overriding in + nbproject/build-impl.xml file. + --> + <target name="-check-netbeans-home"> + <condition property="no.netbeans.home"> + <not> + <isset property="netbeans.home"/> + </not> + </condition> + </target> + <target name="-init-caps" if="no.netbeans.home"> + <property file="${basedir}/nbproject/private/private.properties"/> + <property name="netbeans.home" value="${caps.netbeans.home}/platform9"/> + <property name="netbeans.user" value="${caps.netbeans.user}"/> + <property name="from.commandline" value="true"/> + </target> + <target name="-pre-init" depends="-check-netbeans-home,-init-caps"/> +</project> Added: trunk/sandbox/lsf-adapter-demo/Common/catalog.xml =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/catalog.xml (rev 0) +++ trunk/sandbox/lsf-adapter-demo/Common/catalog.xml 2009-04-16 21:50:03 UTC (rev 123) @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog" prefer="system"> + <nextCatalog catalog="nbproject/private/cache/retriever/catalog.xml"/> + <system systemId="file:/home/pete/openESB/CDMM.wsdl" uri="src/CDMM.wsdl"/> + <system systemId="file:/home/pete/openESB/CDDM.xsd" uri="src/CDDM.xsd"/> +</catalog> Property changes on: trunk/sandbox/lsf-adapter-demo/Common/nbproject ___________________________________________________________________ Added: svn:ignore + private Added: trunk/sandbox/lsf-adapter-demo/Common/nbproject/build-impl.xml =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/nbproject/build-impl.xml (rev 0) +++ trunk/sandbox/lsf-adapter-demo/Common/nbproject/build-impl.xml 2009-04-16 21:50:03 UTC (rev 123) @@ -0,0 +1,151 @@ +<?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 + - dist + - cleanup +--> +<project name="Common-impl" default="default" basedir=".."> + <target name="default" depends="dist_se" description="Build whole project."/> + <!-- + ====================== + INITIALIZATION SECTION + ====================== + --> + <target name="-pre-init"> + <!-- Empty placeholder for easier customization. --> + <!-- You can override this target in the ../build.xml file. --> + </target> + <target name="-init-private" depends="-pre-init"> + <property file="nbproject/private/private.properties"/> + </target> + <target name="-init-userdir" depends="-pre-init,-init-private"> + <property name="user.properties.file" location="${netbeans.user}/build.properties"/> + </target> + <target name="-init-user" depends="-pre-init,-init-private,-init-userdir"> + <property file="${user.properties.file}"/> + </target> + <target name="-init-project" depends="-pre-init,-init-private,-init-userdir,-init-user"> + <property file="nbproject/project.properties"/> + </target> + <target name="-do-init" depends="-pre-init,-init-private,-init-userdir,-init-user,-init-project"> + <available file="${src.dir}/../retrieved" property="retrieved.exists"/> + </target> + <target name="-post-init"> + <!-- Empty placeholder for easier customization. --> + <!-- You can override this target in the ../build.xml file. --> + </target> + <target name="-init-check" depends="-pre-init,-init-private,-init-userdir,-init-user,-init-project,-do-init"> + <fail unless="src.dir">Must set src.dir</fail> + <fail unless="build.dir">Must set build.dir</fail> + <fail unless="dist.dir">Must set dist.dir</fail> + <fail unless="dist.jar">Must set dist.jar</fail> + </target> + <target name="-init-taskdefs" if="from.commandline"> + <path id="ant.task.classpath"> + <pathelement location="${netbeans.home}/../ide10/modules/ext/resolver-1.2.jar"/> + <pathelement location="${netbeans.home}/../ide10/modules/org-apache-xml-resolver.jar"/> + <pathelement location="${netbeans.home}/../ide10/modules/org-netbeans-modules-project-ant.jar"/> + <pathelement location="${netbeans.home}/../ide10/modules/org-netbeans-modules-project-libraries.jar"/> + <pathelement location="${netbeans.home}/../ide10/modules/org-netbeans-modules-projectapi.jar"/> + <pathelement location="${netbeans.home}/../ide10/modules/org-netbeans-modules-projectuiapi.jar"/> + <pathelement location="${netbeans.home}/../ide10/modules/org-netbeans-modules-xml-catalog.jar"/> + <pathelement location="${netbeans.home}/../ide10/modules/org-netbeans-modules-xml-xam.jar"/> + <pathelement location="${netbeans.home}/../ide10/modules/org-netbeans-modules-xml-schema-model.jar"/> + <pathelement location="${netbeans.home}/../ide10/modules/org-netbeans-modules-xml-wsdl-model.jar"/> + <pathelement location="${netbeans.home}/../ide10/modules/org-netbeans-modules-xml-retriever.jar"/> + <pathelement location="${netbeans.home}/../platform9/core/core.jar"/> + <pathelement location="${netbeans.home}/../platform9/core/org-openide-filesystems.jar"/> + <pathelement location="${netbeans.home}/../platform9/lib/boot.jar"/> + <pathelement location="${netbeans.home}/../platform9/lib/org-openide-modules.jar"/> + <pathelement location="${netbeans.home}/../platform9/lib/org-openide-util.jar"/> + <pathelement location="${netbeans.home}/../platform9/modules/org-openide-dialogs.jar"/> + <pathelement location="${netbeans.home}/../platform9/modules/org-openide-loaders.jar"/> + <pathelement location="${netbeans.home}/../platform9/modules/org-openide-nodes.jar"/> + <pathelement location="${netbeans.home}/../platform9/modules/org-openide-text.jar"/> + <pathelement location="${netbeans.home}/../platform9/modules/org-netbeans-modules-masterfs.jar"/> + <pathelement location="${netbeans.home}/../platform9/modules/org-netbeans-modules-queries.jar"/> + <pathelement location="${netbeans.home}/../soa2/ant/nblib/org-netbeans-modules-bpel-project.jar"/> + <pathelement location="${netbeans.home}/../soa2/modules/org-netbeans-modules-bpel-debugger-api.jar"/> + <pathelement location="${netbeans.home}/../soa2/modules/org-netbeans-modules-bpel-model.jar"/> + <pathelement location="${netbeans.home}/../soa2/modules/org-netbeans-modules-bpel-project.jar"/> + <pathelement location="${netbeans.home}/../soa2/modules/org-netbeans-modules-bpel-validation.jar"/> + <pathelement location="${netbeans.home}/../soa2/modules/org-netbeans-modules-soa-ui.jar"/> + <pathelement location="${netbeans.home}/../soa2/modules/org-netbeans-modules-soa-validation.jar"/> + <pathelement location="${netbeans.home}/../soa2/modules/org-netbeans-modules-compapp-projects-base.jar"/> + <pathelement location="${netbeans.home}/../xml2/modules/ext/jxpath/jxpath1.1.jar"/> + <pathelement location="${netbeans.home}/../xml2/modules/org-netbeans-modules-xml-catalogsupport.jar"/> + <pathelement location="${netbeans.home}/../xml2/modules/org-netbeans-modules-xml-search.jar"/> + <pathelement location="${netbeans.home}/../xml2/modules/org-netbeans-modules-xml-wsdl-extensions.jar"/> + <pathelement location="${netbeans.home}/../xml2/modules/org-netbeans-modules-xml-xpath.jar"/> + <pathelement location="${netbeans.home}/../xml2/modules/org-netbeans-modules-xml-xpath-ext.jar"/> + </path> + <taskdef name="validate-project" classname="org.netbeans.modules.bpel.project.anttasks.cli.CliValidateBpelProjectTask"> + <classpath refid="ant.task.classpath"/> + </taskdef> + <taskdef name="generate-catalog-xml" classname="org.netbeans.modules.bpel.project.anttasks.cli.CliGenerateCatalogTask"> + <classpath refid="ant.task.classpath"/> + </taskdef> + <taskdef name="generate-jbi-xml" classname="org.netbeans.modules.bpel.project.anttasks.cli.CliGenerateJbiDescriptorTask"> + <classpath refid="ant.task.classpath"/> + </taskdef> + </target> + <target name="init" depends="-pre-init,-init-private,-init-userdir,-init-user,-init-project,-do-init,-post-init,-init-check,-init-taskdefs"/> + <!-- + ===================== + DIST BUILDING SECTION + ===================== + --> + <target name="-pre-dist"> + <!-- Empty placeholder for easier customization. --> + <!-- You can override this target in the ../build.xml file. --> + </target> + <target name="-deps-jar-dist" depends="init" unless="${no.dependencies}"/> + <target name="-do-dist" depends="init,-pre-dist"> + <mkdir dir="${build.dir}"/> + <!--validation--> + <validate-project buildDirectory="${basedir}/${build.dir}" sourceDirectory="${basedir}/${src.dir}" projectClassPath="${javac.classpath}" buildDependentProjectDir="${basedir}/${build.dir}/dependentProjectFiles" classpathRef="ant.task.classpath" allowBuildWithError="${allow.build.with.error}" validation="${validation}"/> + <!-- copy all files from project source directory to build directory. --> + <copy todir="${build.dir}" preservelastmodified="true"> + <fileset includes="**/*.bpel,**/*.wsdl,**/*.xsd, **/*.xsl, **/*.xslt, **/*.jar" dir="${src.dir}"/> + </copy> + <generate-catalog-xml buildDirectory="${basedir}/${build.dir}" sourceDirectory="${basedir}/${src.dir}" projectClassPath="${javac.classpath}" classpathRef="ant.task.classpath"/> + <generate-jbi-xml buildDirectory="${basedir}/${build.dir}" sourceDirectory="${basedir}/${src.dir}" projectClassPath="${javac.classpath}" classpathRef="ant.task.classpath"/> + <jar compress="${jar.compress}" jarfile="${build.dir}/SEDeployment.jar"> + <fileset includes="**/*.bpel,**/*.wsdl,**/*.xsd, **/*.xsl, **/*.xslt, **/*.jar" excludes="SEDeployment.jar" dir="${basedir}/${build.dir}"/> + <fileset dir="${basedir}/${build.dir}"> + <include name="**/jbi.xml"/> + <include name="**/catalog.xml"/> + </fileset> + </jar> + </target> + <target name="-post-dist"> + <!-- Empty placeholder for easier customization. --> + <!-- You can override this target in the ../build.xml file. --> + </target> + <target name="dist_se" depends="init,-pre-dist,-deps-jar-dist,-do-dist,-post-dist" description="Build distribution."/> + <!-- + =============== + CLEANUP SECTION + =============== + --> + <target name="-pre-clean"> + <!-- Empty placeholder for easier customization. --> + <!-- You can override this target in the ../build.xml file. --> + </target> + <target name="-deps-clean" depends="init" unless="${no.dependencies}"/> + <target name="-do-clean" depends="init,-pre-clean"> + <delete dir="${build.dir}"/> + <delete dir="${dist.dir}"/> + </target> + <target name="-post-clean"> + <!-- Empty placeholder for easier customization. --> + <!-- You can override this target in the ../build.xml file. --> + </target> + <target name="clean" depends="init,-pre-clean,-deps-clean,-do-clean,-post-clean" description="Clean build products."/> +</project> Added: trunk/sandbox/lsf-adapter-demo/Common/nbproject/genfiles.properties =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/nbproject/genfiles.properties (rev 0) +++ trunk/sandbox/lsf-adapter-demo/Common/nbproject/genfiles.properties 2009-04-16 21:50:03 UTC (rev 123) @@ -0,0 +1,8 @@ +build.xml.data.CRC32=56915d2e +build.xml.script.CRC32=3d3dbc12 +build.xml.stylesheet.CRC32=1947459d +# 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=56915d2e +nbproject/build-impl.xml.script.CRC32=4479156a +nbproject/build-impl.xml.stylesheet.CRC32=749ec361 Added: trunk/sandbox/lsf-adapter-demo/Common/nbproject/project.properties =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/nbproject/project.properties (rev 0) +++ trunk/sandbox/lsf-adapter-demo/Common/nbproject/project.properties 2009-04-16 21:50:03 UTC (rev 123) @@ -0,0 +1,28 @@ +allow.build.with.error=false +bcdeployment.jar=${build.dir}/BCDeployment.jar +build.classes.dir=${build.dir}/jar +build.classes.excludes=**/*.java,**/*.form,**/.nbattrs +build.dir=build +build.generated.dir=${build.dir}/generated +com.sun.jbi.ui.devtool.jbi.description.application-sub-assembly=Represents this Service Unit +com.sun.jbi.ui.devtool.jbi.setype.prefix=sun-bpel-engine +debug.classpath=${javac.classpath}:${build.classes.dir} +dist.dir=dist +dist.jar=${dist.dir}/Common.zip +dist.javadoc.dir=${dist.dir}/javadoc +jar.compress=false +jar.name=Common.jar +javac.debug=true +javac.deprecation=false +javac.source=1.4 +javac.target=1.4 +jbi.se.type=sun-bpel-engine +jbi.service-unit.description=Represents this Service Unit +meta.inf=${source.root}/conf +platform.active=default_platform +resource.dir=setup +sedeployment.jar=${build.dir}/SEDeployment.jar +source.encoding=windows-1252 +source.root=src +src.dir=${source.root} +wsdl.classpath= Added: trunk/sandbox/lsf-adapter-demo/Common/nbproject/project.xml =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/nbproject/project.xml (rev 0) +++ trunk/sandbox/lsf-adapter-demo/Common/nbproject/project.xml 2009-04-16 21:50:03 UTC (rev 123) @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://www.netbeans.org/ns/project/1"> + <type>org.netbeans.modules.bpel.project</type> + <configuration> + <data xmlns="http://www.netbeans.org/ns/j2ee-bpelpro/1"> + <name>Common</name> + <minimum-ant-version>1.6</minimum-ant-version> + </data> + </configuration> +</project> Added: trunk/sandbox/lsf-adapter-demo/Common/src/CDDM.xsd =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/src/CDDM.xsd (rev 0) +++ trunk/sandbox/lsf-adapter-demo/Common/src/CDDM.xsd 2009-04-16 21:50:03 UTC (rev 123) @@ -0,0 +1,118 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xs:schema xmlns:tns="http://cse.campussource.de/schema/DataTypes" + xmlns:xs="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://cse.campussource.de/schema/DataTypes" + version="1.0"> + + <xs:element name="category" type="tns:categoryType"/> + <xs:element name="course" type="tns:courseType"/> + <xs:element name="courseMessage" type="tns:courseMessageType"/> + <xs:element name="categoryMessage" type="tns:categoryMessageType"/> + <xs:element name="eventMessage" type="tns:eventMessageType"/> +<!-- + <xs:element name="attribute" type="tns:attributeType"/> +--> + <!-- Entity State und StateTime --> + <xs:complexType name="entityType"> + <xs:sequence> + <xs:element name="busId" type="xs:ID"/> + <xs:element name="eventTime" type="xs:dateTime"/> + <xs:element name="attribute" type="tns:attributeType" minOccurs="0" maxOccurs="unbounded"/> + </xs:sequence> + </xs:complexType> + + <xs:complexType name="attributeType"> + <xs:sequence> + <xs:element name="name" type="xs:string"/> + <xs:element name="value" type="xs:string"/> + <xs:element name="transient" type="xs:boolean" /> + </xs:sequence> + </xs:complexType> + + <xs:complexType name="courseType"> + <xs:complexContent> + <xs:extension base="tns:entityType"> + <xs:sequence> + <xs:element name="categories" minOccurs="0" > + <xs:complexType> + <xs:sequence> + <xs:element name="category" type="xs:IDREF" minOccurs="0" maxOccurs="unbounded"/> + </xs:sequence> + </xs:complexType> + </xs:element> + <xs:element name="parent" type="xs:IDREF" minOccurs="0"/> + <xs:element name="workgroups" minOccurs="0"> + <xs:complexType> + <xs:sequence> + <xs:element name="workgroup" type="xs:IDREF" minOccurs="0" maxOccurs="unbounded"/> + </xs:sequence> + </xs:complexType> + </xs:element> + </xs:sequence> + </xs:extension> + </xs:complexContent> + </xs:complexType> + + <xs:complexType name="categoryType"> + <xs:complexContent> + <xs:extension base="tns:entityType"> + <xs:sequence> + <xs:element name="parent" type="xs:IDREF" minOccurs="0"/> + <xs:element name="categories" minOccurs="0"> + <xs:complexType> + <xs:sequence> + <xs:element name="category" type="xs:IDREF" minOccurs="0" maxOccurs="unbounded"/> + </xs:sequence> + </xs:complexType> + </xs:element> + <xs:element name="courses" minOccurs="0"> + <xs:complexType> + <xs:sequence> + <xs:element name="course" type="xs:IDREF" minOccurs="0" maxOccurs="unbounded"/> + </xs:sequence> + </xs:complexType> + </xs:element> + </xs:sequence> + </xs:extension> + </xs:complexContent> + </xs:complexType> + + <xs:simpleType name="inputEventType"> + <xs:restriction base="xs:string"> + <xs:enumeration value="CREATE_UPDATE"/> + <xs:enumeration value="DELETE"/> + </xs:restriction> + </xs:simpleType> + + <xs:simpleType name="outputEventType"> + <xs:restriction base="xs:string"> + <xs:enumeration value="CREATE"/> + <xs:enumeration value="UPDATE"/> + <xs:enumeration value="DELETE"/> + </xs:restriction> + </xs:simpleType> + + <xs:complexType name="courseMessageType"> + <xs:sequence> + <xs:element name="course" type="tns:courseType"/> + <xs:element name="eventTime" type="xs:dateTime"/> + <xs:element name="inputEvent" type="tns:inputEventType"/> + </xs:sequence> + </xs:complexType> + + <xs:complexType name="categoryMessageType"> + <xs:sequence> + <xs:element name="course" type="tns:categoryType"/> + <xs:element name="eventTime" type="xs:dateTime"/> + <xs:element name="inputEvent" type="tns:inputEventType"/> + </xs:sequence> + </xs:complexType> + + <xs:complexType name="eventMessageType"> + <xs:sequence> + <xs:element name="entity" type="tns:entityType"/> + <xs:element name="eventTime" type="xs:dateTime"/> + <xs:element name="outputEvent" type="tns:outputEventType"/> + </xs:sequence> + </xs:complexType> +</xs:schema> Added: trunk/sandbox/lsf-adapter-demo/Common/src/CDMM.wsdl =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/src/CDMM.wsdl (rev 0) +++ trunk/sandbox/lsf-adapter-demo/Common/src/CDMM.wsdl 2009-04-16 21:50:03 UTC (rev 123) @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8"?> +<definitions name="CDMM" + targetNamespace="http://cse.campussource.de/CDMM" + xmlns:tns="http://cse.campussource.de/CDMM" + xmlns="http://schemas.xmlsoap.org/wsdl/" + xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:ns0="http://cse.campussource.de/DataTypes" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:plink="http://docs.oasis-open.org/wsbpel/2.0/plnktype"> + <types> + <xsd:schema targetNamespace="http://cse.campussource.de/CDMM"> + <xsd:import namespace="http://cse.campussource.de/DataTypes" schemaLocation="CDDM.xsd"/> + </xsd:schema> + </types> + <message name="createCourseMessage"> + <part name="part1" type="ns0:courseMessageType"/> + </message> + <message name="eventMessage"> + <part name="part1" type="ns0:eventMessageType"/> + </message> + <message name="deleteCourseMessage"> + <part name="part1" type="ns0:courseMessageType"/> + </message> + <message name="createCategoryMessage"> + <part name="part1" type="ns0:categoryMessageType"/> + </message> + <message name="categoryMessage"> + <part name="part1" type="ns0:categoryMessageType"/> + </message> + <portType name="CDMMPortType"> + <operation name="createOrUpdateCourse"> + <input name="input1" message="tns:createCourseMessage"/> + <output name="output1" message="tns:eventMessage"/> + </operation> + <operation name="deleteCourse"> + <input name="input2" message="tns:deleteCourseMessage"/> + <output name="output2" message="tns:eventMessage"/> + </operation> + <operation name="createOrUpdateCategory"> + <input name="input3" message="tns:createCategoryMessage"/> + <output name="output3" message="tns:eventMessage"/> + </operation> + <operation name="deleteCategory"> + <input name="input4" message="tns:categoryMessage"/> + <output name="output4" message="tns:eventMessage"/> + </operation> + </portType> + <binding name="CDMMPortTypeBinding" type="tns:CDMMPortType"> + <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/> + <operation name="createOrUpdateCourse"> + <soap:operation/> + <input name="input1"> + <soap:body use="literal"/> + </input> + <output name="output1"> + <soap:body use="literal"/> + </output> + </operation> + <operation name="deleteCourse"> + <soap:operation/> + <input name="input2"> + <soap:body use="literal"/> + </input> + <output name="output2"> + <soap:body use="literal"/> + </output> + </operation> + <operation name="createOrUpdateCategory"> + <soap:operation/> + <input name="input3"> + <soap:body use="literal"/> + </input> + <output name="output3"> + <soap:body use="literal"/> + </output> + </operation> + <operation name="deleteCategory"> + <soap:operation/> + <input name="input4"> + <soap:body use="literal"/> + </input> + <output name="output4"> + <soap:body use="literal"/> + </output> + </operation> + </binding> + <service name="CDMMService"> + <port name="CDMMPort" binding="tns:CDMMPortTypeBinding"> + <soap:address location="http://localhost:${HttpDefaultPort}/CDMMService/CDMMPort"/> + </port> + </service> + <plink:partnerLinkType name="CDMM"> + <plink:role name="CDMMRole" portType="tns:CDMMPortType"/> + </plink:partnerLinkType> +</definitions> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |