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. |
From: <pka...@us...> - 2009-05-04 13:13:55
|
Revision: 204 http://cse-ip.svn.sourceforge.net/cse-ip/?rev=204&view=rev Author: pkasprzak Date: 2009-05-04 13:13:47 +0000 (Mon, 04 May 2009) Log Message: ----------- * Fixed categoryMessage element name (course -> category) Modified Paths: -------------- trunk/sandbox/lsf-adapter-demo/Common/build.xml 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/src/CDDM.xsd Modified: trunk/sandbox/lsf-adapter-demo/Common/build.xml =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/build.xml 2009-05-04 12:44:14 UTC (rev 203) +++ trunk/sandbox/lsf-adapter-demo/Common/build.xml 2009-05-04 13:13:47 UTC (rev 204) @@ -53,18 +53,14 @@ 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 name="-init-esb-ide" if="netbeans.home"> + <property name="esb.netbeans.platform" value="${netbeans.home}"/> </target> - <target name="-init-caps" if="no.netbeans.home"> + <target name="-init-esb-cmdline" unless="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="esb.netbeans.platform" value="${esb.netbeans.home}/platform9"/> + <property name="netbeans.user" value="${esb.netbeans.user}"/> <property name="from.commandline" value="true"/> </target> - <target name="-pre-init" depends="-check-netbeans-home,-init-caps"/> + <target name="-pre-init" depends="-init-esb-ide,-init-esb-cmdline"/> </project> Modified: trunk/sandbox/lsf-adapter-demo/Common/nbproject/build-impl.xml =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/nbproject/build-impl.xml 2009-05-04 12:44:14 UTC (rev 203) +++ trunk/sandbox/lsf-adapter-demo/Common/nbproject/build-impl.xml 2009-05-04 13:13:47 UTC (rev 204) @@ -48,42 +48,42 @@ </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"/> + <pathelement location="${esb.netbeans.platform}/../ide10/modules/ext/resolver-1.2.jar"/> + <pathelement location="${esb.netbeans.platform}/../ide10/modules/org-apache-xml-resolver.jar"/> + <pathelement location="${esb.netbeans.platform}/../ide10/modules/org-netbeans-modules-project-ant.jar"/> + <pathelement location="${esb.netbeans.platform}/../ide10/modules/org-netbeans-modules-project-libraries.jar"/> + <pathelement location="${esb.netbeans.platform}/../ide10/modules/org-netbeans-modules-projectapi.jar"/> + <pathelement location="${esb.netbeans.platform}/../ide10/modules/org-netbeans-modules-projectuiapi.jar"/> + <pathelement location="${esb.netbeans.platform}/../ide10/modules/org-netbeans-modules-xml-catalog.jar"/> + <pathelement location="${esb.netbeans.platform}/../ide10/modules/org-netbeans-modules-xml-xam.jar"/> + <pathelement location="${esb.netbeans.platform}/../ide10/modules/org-netbeans-modules-xml-schema-model.jar"/> + <pathelement location="${esb.netbeans.platform}/../ide10/modules/org-netbeans-modules-xml-wsdl-model.jar"/> + <pathelement location="${esb.netbeans.platform}/../ide10/modules/org-netbeans-modules-xml-retriever.jar"/> + <pathelement location="${esb.netbeans.platform}/../platform9/core/core.jar"/> + <pathelement location="${esb.netbeans.platform}/../platform9/core/org-openide-filesystems.jar"/> + <pathelement location="${esb.netbeans.platform}/../platform9/lib/boot.jar"/> + <pathelement location="${esb.netbeans.platform}/../platform9/lib/org-openide-modules.jar"/> + <pathelement location="${esb.netbeans.platform}/../platform9/lib/org-openide-util.jar"/> + <pathelement location="${esb.netbeans.platform}/../platform9/modules/org-openide-dialogs.jar"/> + <pathelement location="${esb.netbeans.platform}/../platform9/modules/org-openide-loaders.jar"/> + <pathelement location="${esb.netbeans.platform}/../platform9/modules/org-openide-nodes.jar"/> + <pathelement location="${esb.netbeans.platform}/../platform9/modules/org-openide-text.jar"/> + <pathelement location="${esb.netbeans.platform}/../platform9/modules/org-netbeans-modules-masterfs.jar"/> + <pathelement location="${esb.netbeans.platform}/../platform9/modules/org-netbeans-modules-queries.jar"/> + <pathelement location="${esb.netbeans.platform}/../soa2/ant/nblib/org-netbeans-modules-bpel-project.jar"/> + <pathelement location="${esb.netbeans.platform}/../soa2/modules/org-netbeans-modules-bpel-debugger-api.jar"/> + <pathelement location="${esb.netbeans.platform}/../soa2/modules/org-netbeans-modules-bpel-model.jar"/> + <pathelement location="${esb.netbeans.platform}/../soa2/modules/org-netbeans-modules-bpel-project.jar"/> + <pathelement location="${esb.netbeans.platform}/../soa2/modules/org-netbeans-modules-bpel-validation.jar"/> + <pathelement location="${esb.netbeans.platform}/../soa2/modules/org-netbeans-modules-soa-ui.jar"/> + <pathelement location="${esb.netbeans.platform}/../soa2/modules/org-netbeans-modules-soa-validation.jar"/> + <pathelement location="${esb.netbeans.platform}/../soa2/modules/org-netbeans-modules-compapp-projects-base.jar"/> + <pathelement location="${esb.netbeans.platform}/../xml2/modules/ext/jxpath/jxpath1.1.jar"/> + <pathelement location="${esb.netbeans.platform}/../xml2/modules/org-netbeans-modules-xml-catalogsupport.jar"/> + <pathelement location="${esb.netbeans.platform}/../xml2/modules/org-netbeans-modules-xml-search.jar"/> + <pathelement location="${esb.netbeans.platform}/../xml2/modules/org-netbeans-modules-xml-wsdl-extensions.jar"/> + <pathelement location="${esb.netbeans.platform}/../xml2/modules/org-netbeans-modules-xml-xpath.jar"/> + <pathelement location="${esb.netbeans.platform}/../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"/> Modified: trunk/sandbox/lsf-adapter-demo/Common/nbproject/genfiles.properties =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/nbproject/genfiles.properties 2009-05-04 12:44:14 UTC (rev 203) +++ trunk/sandbox/lsf-adapter-demo/Common/nbproject/genfiles.properties 2009-05-04 13:13:47 UTC (rev 204) @@ -1,8 +1,8 @@ build.xml.data.CRC32=56915d2e -build.xml.script.CRC32=3d3dbc12 -build.xml.stylesheet.CRC32=1947459d +build.xml.script.CRC32=60b50638 +build.xml.stylesheet.CRC32=f35fd70d # 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 +nbproject/build-impl.xml.script.CRC32=704fb878 +nbproject/build-impl.xml.stylesheet.CRC32=5068533b Modified: trunk/sandbox/lsf-adapter-demo/Common/src/CDDM.xsd =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/src/CDDM.xsd 2009-05-04 12:44:14 UTC (rev 203) +++ trunk/sandbox/lsf-adapter-demo/Common/src/CDDM.xsd 2009-05-04 13:13:47 UTC (rev 204) @@ -102,7 +102,7 @@ <xs:complexType name="categoryMessageType"> <xs:sequence> - <xs:element name="course" type="tns:categoryType"/> + <xs:element name="category" type="tns:categoryType"/> <xs:element name="eventTime" type="xs:dateTime"/> <xs:element name="inputEvent" type="tns:inputEventType"/> </xs:sequence> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pka...@us...> - 2009-06-16 11:32:30
|
Revision: 257 http://cse-ip.svn.sourceforge.net/cse-ip/?rev=257&view=rev Author: pkasprzak Date: 2009-06-16 11:31:27 +0000 (Tue, 16 Jun 2009) Log Message: ----------- * Added ws-addressing xsd Added Paths: ----------- trunk/sandbox/lsf-adapter-demo/Common/retrieved/ trunk/sandbox/lsf-adapter-demo/Common/retrieved/src/ trunk/sandbox/lsf-adapter-demo/Common/src/schemas.xmlsoap.org/ trunk/sandbox/lsf-adapter-demo/Common/src/schemas.xmlsoap.org/ws/ trunk/sandbox/lsf-adapter-demo/Common/src/schemas.xmlsoap.org/ws/2004/ trunk/sandbox/lsf-adapter-demo/Common/src/schemas.xmlsoap.org/ws/2004/08/ trunk/sandbox/lsf-adapter-demo/Common/src/schemas.xmlsoap.org/ws/2004/08/addressing.xsd Added: trunk/sandbox/lsf-adapter-demo/Common/src/schemas.xmlsoap.org/ws/2004/08/addressing.xsd =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/src/schemas.xmlsoap.org/ws/2004/08/addressing.xsd (rev 0) +++ trunk/sandbox/lsf-adapter-demo/Common/src/schemas.xmlsoap.org/ws/2004/08/addressing.xsd 2009-06-16 11:31:27 UTC (rev 257) @@ -0,0 +1,149 @@ +<?xml version="1.0"?> +<!-- +Copyright © 2002-2004 BEA Systems Inc., International Business Machines Corporation, +Microsoft Corporation, Inc, SAP AG, and Sun Microsystems, Inc.. All rights reserved. + +Permission to copy, display, perform, modify and distribute the WS-Addressing Specification, +and to authorize others to do the foregoing, in any medium without fee or royalty is hereby +granted for the purpose of developing and evaluating the WS-Addressing Specification. + +BEA, IBM, Microsoft, SAP AG, and Sun Microsystems (collectively, the "Authors") each agree +to grant a license to third parties, under royalty-free and otherwise reasonable, +non-discriminatory terms and conditions, to their respective essential patent claims that +they deem necessary to implement the WS-Addressing Specification. + +DISCLAIMERS: + +THE WS-Addressing Specification IS PROVIDED "AS IS", AND THE AUTHORS MAKE NO REPRESENTATIONS +OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, OR TITLE; THAT THE +CONTENTS OF THE WS-Addressing Specification IS SUITABLE FOR ANY PURPOSE; NOR THAT THE +IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, +TRADEMARKS OR OTHER RIGHTS. + +THE AUTHORS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL +DAMAGES ARISING OUT OF ANY USE OF THE WS-Addressing Specification OR THE PERFORMANCE OR +IMPLEMENTATION OF THE CONTENTS THEREOF. + +You may remove these disclaimers from your modified versions of the WS-Addressing +Specification provided that you effectively disclaim all warranties and liabilities on behalf +of all copyright holders in the copies of any such modified versions you distribute. + +The name and trademarks of the Authors may NOT be used in any manner, including advertising +or publicity pertaining to the WS-Addressing Specification or its contents without specific, +written prior permission. Title to copyright in the WS-Addressing Specification will at all +times remain with the Authors. + +No other rights are granted by implication, estoppel or otherwise. + +--> +<xs:schema targetNamespace="http://schemas.xmlsoap.org/ws/2004/08/addressing" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/08/addressing" elementFormDefault="qualified" blockDefault="#all"> + <!-- //////////////////// WS-Addressing //////////////////// --> + <!-- Endpoint reference --> + <xs:element name="EndpointReference" type="wsa:EndpointReferenceType"/> + <xs:complexType name="EndpointReferenceType"> + <xs:sequence> + <xs:element name="Address" type="wsa:AttributedURI"/> + <xs:element name="ReferenceProperties" type="wsa:ReferencePropertiesType" minOccurs="0"/> + <xs:element name="ReferenceParameters" type="wsa:ReferenceParametersType" minOccurs="0"/> + <xs:element name="PortType" type="wsa:AttributedQName" minOccurs="0"/> + <xs:element name="ServiceName" type="wsa:ServiceNameType" minOccurs="0"/> + <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"> + <xs:annotation> + <xs:documentation> + If "Policy" elements from namespace "http://schemas.xmlsoap.org/ws/2002/12/policy#policy" are used, they must appear first (before any extensibility elements). + </xs:documentation> + </xs:annotation> + </xs:any> + </xs:sequence> + <xs:anyAttribute namespace="##other" processContents="lax"/> + </xs:complexType> + <xs:complexType name="ReferencePropertiesType"> + <xs:sequence> + <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/> + </xs:sequence> + </xs:complexType> + <xs:complexType name="ReferenceParametersType"> + <xs:sequence> + <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/> + </xs:sequence> + </xs:complexType> + <xs:complexType name="ServiceNameType"> + <xs:simpleContent> + <xs:extension base="xs:QName"> + <xs:attribute name="PortName" type="xs:NCName"/> + <xs:anyAttribute namespace="##other" processContents="lax"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + <!-- Message information header blocks --> + <xs:element name="MessageID" type="wsa:AttributedURI"/> + <xs:element name="RelatesTo" type="wsa:Relationship"/> + <xs:element name="To" type="wsa:AttributedURI"/> + <xs:element name="Action" type="wsa:AttributedURI"/> + <xs:element name="From" type="wsa:EndpointReferenceType"/> + <xs:element name="ReplyTo" type="wsa:EndpointReferenceType"/> + <xs:element name="FaultTo" type="wsa:EndpointReferenceType"/> + <xs:complexType name="Relationship"> + <xs:simpleContent> + <xs:extension base="xs:anyURI"> + <xs:attribute name="RelationshipType" type="xs:QName" use="optional"/> + <xs:anyAttribute namespace="##other" processContents="lax"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + <xs:simpleType name="RelationshipTypeValues"> + <xs:restriction base="xs:QName"> + <xs:enumeration value="wsa:Reply"/> + </xs:restriction> + </xs:simpleType> + <!-- + June 19, 2007: The ReplyAfter element is deprecated. The name of this element does not match the + name (RetryAfter) used in the specification (http://www.w3.org/Submission/2004/SUBM-ws-addressing-20040810/). + --> + <xs:element name="ReplyAfter" type="wsa:ReplyAfterType"/> + <xs:complexType name="ReplyAfterType"> + <xs:simpleContent> + <xs:extension base="xs:nonNegativeInteger"> + <xs:anyAttribute namespace="##other"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + <!-- + June 19, 2007: The RetryAfter element has been added to be consistent with the specification + (http://www.w3.org/Submission/2004/SUBM-ws-addressing-20040810/). + --> + <xs:element name="RetryAfter" type="wsa:RetryAfterType"/> + <xs:complexType name="RetryAfterType"> + <xs:simpleContent> + <xs:extension base="xs:nonNegativeInteger"> + <xs:anyAttribute namespace="##other"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + <xs:simpleType name="FaultSubcodeValues"> + <xs:restriction base="xs:QName"> + <xs:enumeration value="wsa:InvalidMessageInformationHeader"/> + <xs:enumeration value="wsa:MessageInformationHeaderRequired"/> + <xs:enumeration value="wsa:DestinationUnreachable"/> + <xs:enumeration value="wsa:ActionNotSupported"/> + <xs:enumeration value="wsa:EndpointUnavailable"/> + </xs:restriction> + </xs:simpleType> + <xs:attribute name="Action" type="xs:anyURI"/> + <!-- Common declarations and definitions --> + <xs:complexType name="AttributedQName"> + <xs:simpleContent> + <xs:extension base="xs:QName"> + <xs:anyAttribute namespace="##other" processContents="lax"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> + <xs:complexType name="AttributedURI"> + <xs:simpleContent> + <xs:extension base="xs:anyURI"> + <xs:anyAttribute namespace="##other" processContents="lax"/> + </xs:extension> + </xs:simpleContent> + </xs:complexType> +</xs:schema> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ale...@us...> - 2009-06-25 14:27:40
|
Revision: 269 http://cse-ip.svn.sourceforge.net/cse-ip/?rev=269&view=rev Author: alexloewen Date: 2009-06-25 13:51:28 +0000 (Thu, 25 Jun 2009) Log Message: ----------- fault handling is almost compleet. changed updateCourse. Modified Paths: -------------- trunk/sandbox/lsf-adapter-demo/Common/build.xml trunk/sandbox/lsf-adapter-demo/Common/nbproject/build-impl.xml trunk/sandbox/lsf-adapter-demo/Common/nbproject/genfiles.properties Modified: trunk/sandbox/lsf-adapter-demo/Common/build.xml =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/build.xml 2009-06-25 13:51:16 UTC (rev 268) +++ trunk/sandbox/lsf-adapter-demo/Common/build.xml 2009-06-25 13:51:28 UTC (rev 269) @@ -1,66 +1,24 @@ <?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="-init-esb-ide" if="netbeans.home"> + <target name="init-esb-ide" if="netbeans.home"> <property name="esb.netbeans.platform" value="${netbeans.home}"/> </target> - <target name="-init-esb-cmdline" unless="netbeans.home"> + <target name="init-esb-cli" unless="netbeans.home"> <property file="${basedir}/nbproject/private/private.properties"/> <property name="esb.netbeans.platform" value="${esb.netbeans.home}/platform9"/> <property name="netbeans.user" value="${esb.netbeans.user}"/> <property name="from.commandline" value="true"/> </target> - <target name="-pre-init" depends="-init-esb-ide,-init-esb-cmdline"/> + <target name="check-catd-context"> + <condition property="no.catd.context"> + <not> + <isset property="org.netbeans.modules.compapp.catd.context"/> + </not> + </condition> + </target> + <target name="init-catd" if="no.catd.context"> + <property name="org.netbeans.modules.compapp.catd.context" value=""/> + </target> + <target name="pre-init" depends="init-esb-ide,init-esb-cli,check-catd-context,init-catd"/> </project> Modified: trunk/sandbox/lsf-adapter-demo/Common/nbproject/build-impl.xml =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/nbproject/build-impl.xml 2009-06-25 13:51:16 UTC (rev 268) +++ trunk/sandbox/lsf-adapter-demo/Common/nbproject/build-impl.xml 2009-06-25 13:51:28 UTC (rev 269) @@ -1,52 +1,43 @@ <?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 + *** GENERATED FROM project.xml - DO NOT EDIT *** + *** EDIT ../build.xml INSTEAD *** --> <project name="Common-impl" default="default" basedir=".."> - <target name="default" depends="dist_se" description="Build whole project."/> + <target name="default" depends="dist_se"/> <!-- - ====================== INITIALIZATION SECTION - ====================== --> - <target name="-pre-init"> + <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"> + <target name="init-private" depends="pre-init"> <property file="nbproject/private/private.properties"/> </target> - <target name="-init-userdir" depends="-pre-init,-init-private"> + <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"> + <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"> + <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"> + <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"> + <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"> + <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"> + <target name="init-taskdefs" if="from.commandline"> <path id="ant.task.classpath"> <pathelement location="${esb.netbeans.platform}/../ide10/modules/ext/resolver-1.2.jar"/> <pathelement location="${esb.netbeans.platform}/../ide10/modules/org-apache-xml-resolver.jar"/> @@ -95,22 +86,18 @@ <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"/> + <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"> + <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"> + <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> @@ -124,28 +111,26 @@ </fileset> </jar> </target> - <target name="-post-dist"> + <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."/> + <target name="dist_se" depends="init,pre-dist,deps-jar-dist,do-dist,post-dist"/> <!-- - =============== CLEANUP SECTION - =============== --> - <target name="-pre-clean"> + <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"> + <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"> + <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."/> + <target name="clean" depends="init,pre-clean,deps-clean,do-clean,post-clean"/> </project> Modified: trunk/sandbox/lsf-adapter-demo/Common/nbproject/genfiles.properties =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/nbproject/genfiles.properties 2009-06-25 13:51:16 UTC (rev 268) +++ trunk/sandbox/lsf-adapter-demo/Common/nbproject/genfiles.properties 2009-06-25 13:51:28 UTC (rev 269) @@ -1,8 +1,8 @@ build.xml.data.CRC32=56915d2e -build.xml.script.CRC32=60b50638 -build.xml.stylesheet.CRC32=f35fd70d +build.xml.script.CRC32=22f94a4b +build.xml.stylesheet.CRC32=b168c0ed # 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=704fb878 -nbproject/build-impl.xml.stylesheet.CRC32=5068533b +nbproject/build-impl.xml.script.CRC32=44b49d75 +nbproject/build-impl.xml.stylesheet.CRC32=2e896532 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pka...@us...> - 2009-07-01 09:01:34
|
Revision: 283 http://cse-ip.svn.sourceforge.net/cse-ip/?rev=283&view=rev Author: pkasprzak Date: 2009-07-01 09:01:29 +0000 (Wed, 01 Jul 2009) Log Message: ----------- * WS-Interface to ConfigurationManager * Used by Login.bpel to determine login-data Modified Paths: -------------- trunk/sandbox/lsf-adapter-demo/Common/catalog.xml Added Paths: ----------- trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.wsdl trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.xsd Modified: trunk/sandbox/lsf-adapter-demo/Common/catalog.xml =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/catalog.xml 2009-06-30 19:13:00 UTC (rev 282) +++ trunk/sandbox/lsf-adapter-demo/Common/catalog.xml 2009-07-01 09:01:29 UTC (rev 283) @@ -1,6 +1,4 @@ <?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> Added: trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.wsdl =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.wsdl (rev 0) +++ trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.wsdl 2009-07-01 09:01:29 UTC (rev 283) @@ -0,0 +1,128 @@ +<?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.3.1-hudson-749-SNAPSHOT. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.3.1-hudson-749-SNAPSHOT. --> +<definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" + xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" + xmlns:tns="http://cse.campussource.de/ejb/ConfigurationManager" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype" + xmlns="http://schemas.xmlsoap.org/wsdl/" + targetNamespace="http://cse.campussource.de/ejb/ConfigurationManager" + name="ConfigurationManagerWSService"> + <ns1:Policy xmlns:ns1="http://www.w3.org/ns/ws-policy" wsu:Id="ConfigurationManagerPortBinding_getSettingAsInteger_WSAT_Policy"> + <ns1:ExactlyOne> + <ns1:All> + <ns2:ATAlwaysCapability xmlns:ns2="http://schemas.xmlsoap.org/ws/2004/10/wsat"></ns2:ATAlwaysCapability> + <ns3:ATAssertion xmlns:ns4="http://schemas.xmlsoap.org/ws/2002/12/policy" xmlns:ns3="http://schemas.xmlsoap.org/ws/2004/10/wsat" ns1:Optional="true" ns4:Optional="true"></ns3:ATAssertion> + </ns1:All> + </ns1:ExactlyOne> + </ns1:Policy> + <ns5:Policy xmlns:ns5="http://www.w3.org/ns/ws-policy" wsu:Id="ConfigurationManagerPortBinding_getSettingAsBoolean_WSAT_Policy"> + <ns5:ExactlyOne> + <ns5:All> + <ns6:ATAlwaysCapability xmlns:ns6="http://schemas.xmlsoap.org/ws/2004/10/wsat"></ns6:ATAlwaysCapability> + <ns7:ATAssertion xmlns:ns8="http://schemas.xmlsoap.org/ws/2002/12/policy" xmlns:ns7="http://schemas.xmlsoap.org/ws/2004/10/wsat" ns5:Optional="true" ns8:Optional="true"></ns7:ATAssertion> + </ns5:All> + </ns5:ExactlyOne> + </ns5:Policy> + <ns9:Policy xmlns:ns9="http://www.w3.org/ns/ws-policy" wsu:Id="ConfigurationManagerPortBinding_getSettingAsString_WSAT_Policy"> + <ns9:ExactlyOne> + <ns9:All> + <ns10:ATAlwaysCapability xmlns:ns10="http://schemas.xmlsoap.org/ws/2004/10/wsat"></ns10:ATAlwaysCapability> + <ns11:ATAssertion xmlns:ns12="http://schemas.xmlsoap.org/ws/2002/12/policy" xmlns:ns11="http://schemas.xmlsoap.org/ws/2004/10/wsat" ns9:Optional="true" ns12:Optional="true"></ns11:ATAssertion> + </ns9:All> + </ns9:ExactlyOne> + </ns9:Policy> + <types> + <xsd:schema> + <xsd:import namespace="http://cse.campussource.de/ejb/ConfigurationManager" schemaLocation="ConfigurationManager.xsd"></xsd:import> + </xsd:schema> + </types> + <message name="getSettingAsString"> + <part name="parameters" element="tns:getSettingAsString"></part> + </message> + <message name="getSettingAsStringResponse"> + <part name="parameters" element="tns:getSettingAsStringResponse"></part> + </message> + <message name="SettingNotFoundException"> + <part name="fault" element="tns:SettingNotFoundException"></part> + </message> + <message name="getSettingAsInteger"> + <part name="parameters" element="tns:getSettingAsInteger"></part> + </message> + <message name="getSettingAsIntegerResponse"> + <part name="parameters" element="tns:getSettingAsIntegerResponse"></part> + </message> + <message name="getSettingAsBoolean"> + <part name="parameters" element="tns:getSettingAsBoolean"></part> + </message> + <message name="getSettingAsBooleanResponse"> + <part name="parameters" element="tns:getSettingAsBooleanResponse"></part> + </message> + <portType name="ConfigurationManager"> + <operation name="getSettingAsString"> + <input message="tns:getSettingAsString"></input> + <output message="tns:getSettingAsStringResponse"></output> + <fault message="tns:SettingNotFoundException" name="SettingNotFoundException"></fault> + </operation> + <operation name="getSettingAsInteger"> + <input message="tns:getSettingAsInteger"></input> + <output message="tns:getSettingAsIntegerResponse"></output> + <fault message="tns:SettingNotFoundException" name="SettingNotFoundException"></fault> + </operation> + <operation name="getSettingAsBoolean"> + <input message="tns:getSettingAsBoolean"></input> + <output message="tns:getSettingAsBooleanResponse"></output> + <fault message="tns:SettingNotFoundException" name="SettingNotFoundException"></fault> + </operation> + </portType> + <binding name="ConfigurationManagerPortBinding" type="tns:ConfigurationManager"> + <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"></soap:binding> + <operation name="getSettingAsString"> + <ns13:PolicyReference xmlns:ns13="http://www.w3.org/ns/ws-policy" URI="#ConfigurationManagerPortBinding_getSettingAsString_WSAT_Policy"></ns13:PolicyReference> + <soap:operation soapAction=""></soap:operation> + <input> + <soap:body use="literal"></soap:body> + </input> + <output> + <soap:body use="literal"></soap:body> + </output> + <fault name="SettingNotFoundException"> + <soap:fault name="SettingNotFoundException" use="literal"></soap:fault> + </fault> + </operation> + <operation name="getSettingAsInteger"> + <ns14:PolicyReference xmlns:ns14="http://www.w3.org/ns/ws-policy" URI="#ConfigurationManagerPortBinding_getSettingAsInteger_WSAT_Policy"></ns14:PolicyReference> + <soap:operation soapAction=""></soap:operation> + <input> + <soap:body use="literal"></soap:body> + </input> + <output> + <soap:body use="literal"></soap:body> + </output> + <fault name="SettingNotFoundException"> + <soap:fault name="SettingNotFoundException" use="literal"></soap:fault> + </fault> + </operation> + <operation name="getSettingAsBoolean"> + <ns15:PolicyReference xmlns:ns15="http://www.w3.org/ns/ws-policy" URI="#ConfigurationManagerPortBinding_getSettingAsBoolean_WSAT_Policy"></ns15:PolicyReference> + <soap:operation soapAction=""></soap:operation> + <input> + <soap:body use="literal"></soap:body> + </input> + <output> + <soap:body use="literal"></soap:body> + </output> + <fault name="SettingNotFoundException"> + <soap:fault name="SettingNotFoundException" use="literal"></soap:fault> + </fault> + </operation> + </binding> + <service name="ConfigurationManagerWSService"> + <port name="ConfigurationManagerPort" binding="tns:ConfigurationManagerPortBinding"> + <soap:address location="http://localhost:8080/ConfigurationManagerWSService/ConfigurationManager"></soap:address> + </port> + </service> + <plnk:partnerLinkType name="ConfigurationManagerLinkType"> + <plnk:role name="ConfigurationManagerRole" portType="tns:ConfigurationManager"/> + </plnk:partnerLinkType> + +</definitions> \ No newline at end of file Added: trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.xsd =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.xsd (rev 0) +++ trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.xsd 2009-07-01 09:01:29 UTC (rev 283) @@ -0,0 +1,64 @@ +<xs:schema xmlns:tns="http://cse.campussource.de/ejb/ConfigurationManager" + xmlns:xs="http://www.w3.org/2001/XMLSchema" + version="1.0" + targetNamespace="http://cse.campussource.de/ejb/ConfigurationManager"> + + <xs:element name="SettingNotFoundException" type="tns:SettingNotFoundException"></xs:element> + + <xs:element name="getSettingAsBoolean" type="tns:getSettingAsBoolean"></xs:element> + + <xs:element name="getSettingAsBooleanResponse" type="tns:getSettingAsBooleanResponse"></xs:element> + + <xs:element name="getSettingAsInteger" type="tns:getSettingAsInteger"></xs:element> + + <xs:element name="getSettingAsIntegerResponse" type="tns:getSettingAsIntegerResponse"></xs:element> + + <xs:element name="getSettingAsString" type="tns:getSettingAsString"></xs:element> + + <xs:element name="getSettingAsStringResponse" type="tns:getSettingAsStringResponse"></xs:element> + + <xs:complexType name="getSettingAsInteger"> + <xs:sequence> + <xs:element name="settingName" type="xs:string" minOccurs="0"></xs:element> + <xs:element name="categoryName" type="xs:string" minOccurs="0"></xs:element> + </xs:sequence> + </xs:complexType> + + <xs:complexType name="getSettingAsIntegerResponse"> + <xs:sequence> + <xs:element name="return" type="xs:int"></xs:element> + </xs:sequence> + </xs:complexType> + + <xs:complexType name="SettingNotFoundException"> + <xs:sequence> + <xs:element name="message" type="xs:string" minOccurs="0"></xs:element> + </xs:sequence> + </xs:complexType> + + <xs:complexType name="getSettingAsBoolean"> + <xs:sequence> + <xs:element name="settingName" type="xs:string" minOccurs="0"></xs:element> + <xs:element name="categoryName" type="xs:string" minOccurs="0"></xs:element> + </xs:sequence> + </xs:complexType> + + <xs:complexType name="getSettingAsBooleanResponse"> + <xs:sequence> + <xs:element name="return" type="xs:boolean"></xs:element> + </xs:sequence> + </xs:complexType> + + <xs:complexType name="getSettingAsString"> + <xs:sequence> + <xs:element name="settingName" type="xs:string" minOccurs="0"></xs:element> + <xs:element name="categoryName" type="xs:string" minOccurs="0"></xs:element> + </xs:sequence> + </xs:complexType> + + <xs:complexType name="getSettingAsStringResponse"> + <xs:sequence> + <xs:element name="return" type="xs:string" minOccurs="0"></xs:element> + </xs:sequence> + </xs:complexType> +</xs:schema> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pka...@us...> - 2009-07-01 11:35:03
|
Revision: 286 http://cse-ip.svn.sourceforge.net/cse-ip/?rev=286&view=rev Author: pkasprzak Date: 2009-07-01 11:34:36 +0000 (Wed, 01 Jul 2009) Log Message: ----------- * Log4j libs (unneeded for now, but maybe later) Added Paths: ----------- trunk/sandbox/lsf-adapter-demo/Common/libs/ trunk/sandbox/lsf-adapter-demo/Common/libs/log4j.jar Added: trunk/sandbox/lsf-adapter-demo/Common/libs/log4j.jar =================================================================== (Binary files differ) Property changes on: trunk/sandbox/lsf-adapter-demo/Common/libs/log4j.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pka...@us...> - 2009-07-01 14:53:58
|
Revision: 291 http://cse-ip.svn.sourceforge.net/cse-ip/?rev=291&view=rev Author: pkasprzak Date: 2009-07-01 13:56:10 +0000 (Wed, 01 Jul 2009) Log Message: ----------- * Catalog changes for serviceref support * Added serviceref.xsd Modified Paths: -------------- trunk/sandbox/lsf-adapter-demo/Common/catalog.xml Added Paths: ----------- trunk/sandbox/lsf-adapter-demo/Common/src/serviceref.xsd Modified: trunk/sandbox/lsf-adapter-demo/Common/catalog.xml =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/catalog.xml 2009-07-01 13:56:03 UTC (rev 290) +++ trunk/sandbox/lsf-adapter-demo/Common/catalog.xml 2009-07-01 13:56:10 UTC (rev 291) @@ -1,6 +1,7 @@ <?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="http://schemas.xmlsoap.org/ws/2004/08/addressing/" uri="src/schemas.xmlsoap.org/ws/2004/08/addressing.xsd"/> - <system systemId="http://schemas.xmlsoap.org/ws/2004/08/addressing" uri="src/schemas.xmlsoap.org/ws/2004/08/addressing.xsd"/> + <system systemId="http://schemas.xmlsoap.org/ws/2004/08/addressing/" uri="src/schemas.xmlsoap.org/ws/2004/08/addressing.xsd"/> + <system systemId="http://schemas.xmlsoap.org/ws/2004/08/addressing" uri="src/schemas.xmlsoap.org/ws/2004/08/addressing.xsd"/> + <system systemId="http://docs.oasis-open.org/wsbpel/2.0/serviceref" uri="src/serviceref.xsd"/> </catalog> Added: trunk/sandbox/lsf-adapter-demo/Common/src/serviceref.xsd =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/src/serviceref.xsd (rev 0) +++ trunk/sandbox/lsf-adapter-demo/Common/src/serviceref.xsd 2009-07-01 13:56:10 UTC (rev 291) @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) OASIS Open 2006-2007. All Rights Reserved. +--> +<xsd:schema targetNamespace="http://docs.oasis-open.org/wsbpel/2.0/serviceref" + xmlns:sref="http://docs.oasis-open.org/wsbpel/2.0/serviceref" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" + blockDefault="#all"> + + <xsd:annotation> + <xsd:documentation> + Service Reference Schema for WS-BPEL 2.0 + OASIS Standard + 11th April, 2007 + </xsd:documentation> + </xsd:annotation> + + <xsd:element name="service-ref" type="sref:ServiceRefType"> + <xsd:annotation> + <xsd:documentation> + This element can be used within a from-spec. + </xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:complexType name="ServiceRefType"> + <xsd:annotation> + <xsd:documentation> + This type definition is for service reference container. + This container is used as envelope to wrap around the actual endpoint reference value, + when a BPEL process interacts the endpoint reference of a partnerLink. + It provides pluggability of different versions of service referencing schemes + being used within a BPEL program. The design pattern here is similar to those of + expression language. + </xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:any namespace="##other" processContents="lax"/> + </xsd:sequence> + <xsd:attribute name="reference-scheme" type="xsd:anyURI"/> + </xsd:complexType> + +</xsd:schema> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pka...@us...> - 2009-07-08 12:50:58
|
Revision: 327 http://cse-ip.svn.sourceforge.net/cse-ip/?rev=327&view=rev Author: pkasprzak Date: 2009-07-08 12:50:45 +0000 (Wed, 08 Jul 2009) Log Message: ----------- * Support for getOutboundClients() in configuration manager (+ WSDL / XSD) * Impoved webconfig test Modified Paths: -------------- trunk/sandbox/lsf-adapter-demo/Common/catalog.xml trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.wsdl trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.xsd Modified: trunk/sandbox/lsf-adapter-demo/Common/catalog.xml =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/catalog.xml 2009-07-08 11:05:36 UTC (rev 326) +++ trunk/sandbox/lsf-adapter-demo/Common/catalog.xml 2009-07-08 12:50:45 UTC (rev 327) @@ -1,7 +1,7 @@ <?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="http://schemas.xmlsoap.org/ws/2004/08/addressing/" uri="src/schemas.xmlsoap.org/ws/2004/08/addressing.xsd"/> <system systemId="http://schemas.xmlsoap.org/ws/2004/08/addressing" uri="src/schemas.xmlsoap.org/ws/2004/08/addressing.xsd"/> <system systemId="http://docs.oasis-open.org/wsbpel/2.0/serviceref" uri="src/serviceref.xsd"/> + <nextCatalog catalog="nbproject/private/cache/retriever/catalog.xml"/> </catalog> Modified: trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.wsdl =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.wsdl 2009-07-08 11:05:36 UTC (rev 326) +++ trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.wsdl 2009-07-08 12:50:45 UTC (rev 327) @@ -1,13 +1,16 @@ -<?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.3.1-hudson-749-SNAPSHOT. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.3.1-hudson-749-SNAPSHOT. --> +<?xml version="1.0" encoding="UTF-8"?> +<!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.3.1-hudson-749-SNAPSHOT. --> +<!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.3.1-hudson-749-SNAPSHOT. --> <definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://cse.campussource.de/ejb/ConfigurationManager" xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype" - xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://cse.campussource.de/ejb/ConfigurationManager" name="ConfigurationManagerWSService"> - <ns1:Policy xmlns:ns1="http://www.w3.org/ns/ws-policy" wsu:Id="ConfigurationManagerPortBinding_getSettingAsInteger_WSAT_Policy"> + + <ns1:Policy xmlns:ns1="http://www.w3.org/ns/ws-policy" wsu:Id="ConfigurationManagerPortBinding_getOutboundClients_WSAT_Policy"> <ns1:ExactlyOne> <ns1:All> <ns2:ATAlwaysCapability xmlns:ns2="http://schemas.xmlsoap.org/ws/2004/10/wsat"></ns2:ATAlwaysCapability> @@ -15,7 +18,7 @@ </ns1:All> </ns1:ExactlyOne> </ns1:Policy> - <ns5:Policy xmlns:ns5="http://www.w3.org/ns/ws-policy" wsu:Id="ConfigurationManagerPortBinding_getSettingAsBoolean_WSAT_Policy"> + <ns5:Policy xmlns:ns5="http://www.w3.org/ns/ws-policy" wsu:Id="ConfigurationManagerPortBinding_getSettingAsInteger_WSAT_Policy"> <ns5:ExactlyOne> <ns5:All> <ns6:ATAlwaysCapability xmlns:ns6="http://schemas.xmlsoap.org/ws/2004/10/wsat"></ns6:ATAlwaysCapability> @@ -23,7 +26,8 @@ </ns5:All> </ns5:ExactlyOne> </ns5:Policy> - <ns9:Policy xmlns:ns9="http://www.w3.org/ns/ws-policy" wsu:Id="ConfigurationManagerPortBinding_getSettingAsString_WSAT_Policy"> + + <ns9:Policy xmlns:ns9="http://www.w3.org/ns/ws-policy" wsu:Id="ConfigurationManagerPortBinding_getSettingAsBoolean_WSAT_Policy"> <ns9:ExactlyOne> <ns9:All> <ns10:ATAlwaysCapability xmlns:ns10="http://schemas.xmlsoap.org/ws/2004/10/wsat"></ns10:ATAlwaysCapability> @@ -31,9 +35,17 @@ </ns9:All> </ns9:ExactlyOne> </ns9:Policy> + <ns13:Policy xmlns:ns13="http://www.w3.org/ns/ws-policy" wsu:Id="ConfigurationManagerPortBinding_getSettingAsString_WSAT_Policy"> + <ns13:ExactlyOne> + <ns13:All> + <ns14:ATAlwaysCapability xmlns:ns14="http://schemas.xmlsoap.org/ws/2004/10/wsat"></ns14:ATAlwaysCapability> + <ns15:ATAssertion xmlns:ns16="http://schemas.xmlsoap.org/ws/2002/12/policy" xmlns:ns15="http://schemas.xmlsoap.org/ws/2004/10/wsat" ns13:Optional="true" ns16:Optional="true"></ns15:ATAssertion> + </ns13:All> + </ns13:ExactlyOne> + </ns13:Policy> <types> <xsd:schema> - <xsd:import namespace="http://cse.campussource.de/ejb/ConfigurationManager" schemaLocation="ConfigurationManager.xsd"></xsd:import> + <xsd:import namespace="http://cse.campussource.de/ejb/ConfigurationManager" schemaLocation="http://localhost:8080/ConfigurationManagerWSService/ConfigurationManager?xsd=1"></xsd:import> </xsd:schema> </types> <message name="getSettingAsString"> @@ -49,6 +61,7 @@ <part name="parameters" element="tns:getSettingAsInteger"></part> </message> <message name="getSettingAsIntegerResponse"> + <part name="parameters" element="tns:getSettingAsIntegerResponse"></part> </message> <message name="getSettingAsBoolean"> @@ -57,9 +70,16 @@ <message name="getSettingAsBooleanResponse"> <part name="parameters" element="tns:getSettingAsBooleanResponse"></part> </message> + <message name="getOutboundClients"> + <part name="parameters" element="tns:getOutboundClients"></part> + </message> + <message name="getOutboundClientsResponse"> + <part name="parameters" element="tns:getOutboundClientsResponse"></part> + </message> <portType name="ConfigurationManager"> <operation name="getSettingAsString"> <input message="tns:getSettingAsString"></input> + <output message="tns:getSettingAsStringResponse"></output> <fault message="tns:SettingNotFoundException" name="SettingNotFoundException"></fault> </operation> @@ -73,11 +93,16 @@ <output message="tns:getSettingAsBooleanResponse"></output> <fault message="tns:SettingNotFoundException" name="SettingNotFoundException"></fault> </operation> + <operation name="getOutboundClients"> + <input message="tns:getOutboundClients"></input> + <output message="tns:getOutboundClientsResponse"></output> + </operation> + </portType> <binding name="ConfigurationManagerPortBinding" type="tns:ConfigurationManager"> <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"></soap:binding> <operation name="getSettingAsString"> - <ns13:PolicyReference xmlns:ns13="http://www.w3.org/ns/ws-policy" URI="#ConfigurationManagerPortBinding_getSettingAsString_WSAT_Policy"></ns13:PolicyReference> + <ns17:PolicyReference xmlns:ns17="http://www.w3.org/ns/ws-policy" URI="#ConfigurationManagerPortBinding_getSettingAsString_WSAT_Policy"></ns17:PolicyReference> <soap:operation soapAction=""></soap:operation> <input> <soap:body use="literal"></soap:body> @@ -90,7 +115,8 @@ </fault> </operation> <operation name="getSettingAsInteger"> - <ns14:PolicyReference xmlns:ns14="http://www.w3.org/ns/ws-policy" URI="#ConfigurationManagerPortBinding_getSettingAsInteger_WSAT_Policy"></ns14:PolicyReference> + + <ns18:PolicyReference xmlns:ns18="http://www.w3.org/ns/ws-policy" URI="#ConfigurationManagerPortBinding_getSettingAsInteger_WSAT_Policy"></ns18:PolicyReference> <soap:operation soapAction=""></soap:operation> <input> <soap:body use="literal"></soap:body> @@ -103,10 +129,11 @@ </fault> </operation> <operation name="getSettingAsBoolean"> - <ns15:PolicyReference xmlns:ns15="http://www.w3.org/ns/ws-policy" URI="#ConfigurationManagerPortBinding_getSettingAsBoolean_WSAT_Policy"></ns15:PolicyReference> + <ns19:PolicyReference xmlns:ns19="http://www.w3.org/ns/ws-policy" URI="#ConfigurationManagerPortBinding_getSettingAsBoolean_WSAT_Policy"></ns19:PolicyReference> <soap:operation soapAction=""></soap:operation> <input> <soap:body use="literal"></soap:body> + </input> <output> <soap:body use="literal"></soap:body> @@ -115,6 +142,17 @@ <soap:fault name="SettingNotFoundException" use="literal"></soap:fault> </fault> </operation> + <operation name="getOutboundClients"> + <ns20:PolicyReference xmlns:ns20="http://www.w3.org/ns/ws-policy" URI="#ConfigurationManagerPortBinding_getOutboundClients_WSAT_Policy"></ns20:PolicyReference> + <soap:operation soapAction=""></soap:operation> + <input> + <soap:body use="literal"></soap:body> + </input> + <output> + <soap:body use="literal"></soap:body> + </output> + + </operation> </binding> <service name="ConfigurationManagerWSService"> <port name="ConfigurationManagerPort" binding="tns:ConfigurationManagerPortBinding"> @@ -124,5 +162,4 @@ <plnk:partnerLinkType name="ConfigurationManagerLinkType"> <plnk:role name="ConfigurationManagerRole" portType="tns:ConfigurationManager"/> </plnk:partnerLinkType> - -</definitions> \ No newline at end of file +</definitions> Modified: trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.xsd =================================================================== --- trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.xsd 2009-07-08 11:05:36 UTC (rev 326) +++ trunk/sandbox/lsf-adapter-demo/Common/src/ConfigurationManager.xsd 2009-07-08 12:50:45 UTC (rev 327) @@ -1,3 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.3.1-hudson-749-SNAPSHOT. --> <xs:schema xmlns:tns="http://cse.campussource.de/ejb/ConfigurationManager" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0" @@ -5,6 +7,10 @@ <xs:element name="SettingNotFoundException" type="tns:SettingNotFoundException"></xs:element> + <xs:element name="getOutboundClients" type="tns:getOutboundClients"></xs:element> + + <xs:element name="getOutboundClientsResponse" type="tns:getOutboundClientsResponse"></xs:element> + <xs:element name="getSettingAsBoolean" type="tns:getSettingAsBoolean"></xs:element> <xs:element name="getSettingAsBooleanResponse" type="tns:getSettingAsBooleanResponse"></xs:element> @@ -31,6 +37,7 @@ </xs:complexType> <xs:complexType name="SettingNotFoundException"> + <xs:sequence> <xs:element name="message" type="xs:string" minOccurs="0"></xs:element> </xs:sequence> @@ -61,4 +68,15 @@ <xs:element name="return" type="xs:string" minOccurs="0"></xs:element> </xs:sequence> </xs:complexType> -</xs:schema> \ No newline at end of file + + <xs:complexType name="getOutboundClients"> + <xs:sequence></xs:sequence> + </xs:complexType> + + <xs:complexType name="getOutboundClientsResponse"> + <xs:sequence> + <xs:element name="return" type="xs:string" minOccurs="0" maxOccurs="unbounded"></xs:element> + </xs:sequence> + </xs:complexType> +</xs:schema> + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |