You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(57) |
Jun
(5) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
|
Feb
(86) |
Mar
(385) |
Apr
(198) |
May
(359) |
Jun
(199) |
Jul
(202) |
Aug
(667) |
Sep
(519) |
Oct
(128) |
Nov
(96) |
Dec
(65) |
2008 |
Jan
(145) |
Feb
(539) |
Mar
(1042) |
Apr
(48) |
May
(26) |
Jun
(11) |
Jul
(36) |
Aug
(9) |
Sep
(25) |
Oct
(46) |
Nov
(23) |
Dec
(19) |
2009 |
Jan
(6) |
Feb
|
Mar
(4) |
Apr
(1) |
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <c0u...@us...> - 2015-01-21 11:00:30
|
Revision: 4913 http://sourceforge.net/p/openuss/code/4913 Author: c0u0sen1 Date: 2015-01-21 11:00:28 +0000 (Wed, 21 Jan 2015) Log Message: ----------- FSL-BugFix: Was not possible to start external program from fsl with Windows 7/8 Modified Paths: -------------- trunk/fsl/src/independent/freestyleLearningGroup/independent/util/FLGPlatformSpecifics.java Modified: trunk/fsl/src/independent/freestyleLearningGroup/independent/util/FLGPlatformSpecifics.java =================================================================== --- trunk/fsl/src/independent/freestyleLearningGroup/independent/util/FLGPlatformSpecifics.java 2015-01-21 10:56:25 UTC (rev 4912) +++ trunk/fsl/src/independent/freestyleLearningGroup/independent/util/FLGPlatformSpecifics.java 2015-01-21 11:00:28 UTC (rev 4913) @@ -21,12 +21,6 @@ private static final String CLASS = "class"; private static final String JAR = "jar"; // long system ids - private static final String WIN2K = "Windows 2000"; - private static final String WINXP = "Windows XP"; - private static final String WINNT = "Windows NT"; - private static final String WINME = "Windows ME"; - private static final String WIN98 = "Windows 98"; - private static final String WIN95 = "Windows 95"; private static final String LINUX = "Linux"; private static final String MACOS_X = "Mac OS X"; @@ -98,7 +92,6 @@ private static void startExternalApplicationWIN(String commandLine, String paramLine) { if (paramLine == null) paramLine = ""; String extension = FLGFileUtility.getExtension(commandLine); - String osString = System.getProperty("os.name"); if (commandLine.startsWith("http://")) { extension = "html"; } @@ -110,7 +103,7 @@ return; } if (extension.equalsIgnoreCase(EXE)) { - if ((osString.equals(WIN95)) || (osString.equals(WIN98))) { + if (isWin95Compatible()) { try { new Thread( new FLGPlatformSpecifics_Runnable("command.com /c " + commandLine + " " + paramLine, "")).start(); @@ -119,7 +112,7 @@ System.out.println("Exception: " + e); } } - else if (osString.equals(WINNT) || osString.equals(WIN2K) || osString.equals(WINXP)) { + else if (isWinXPCompatible()) { try { new Thread( new FLGPlatformSpecifics_Runnable("cmd.exe /c " + "\"" + commandLine + " " + paramLine + "\"", "")).start(); @@ -148,10 +141,10 @@ String dir = commandLine.substring(0, i); // NL commandLine = commandLine.substring(i + 1, commandLine.length()); String fullCmd = ""; - if ((osString.equals(WIN95)) || (osString.equals(WIN98)) || (osString.equals(WINME))) { + if (isWin95Compatible()) { fullCmd = "command.com /c " + jdkDir + " -cp \"" + dir + "\" -Duser.dir=\"" + dir + "\" " + "\"" + commandLine + "\"" + paramLine; } - else if (osString.equals(WINNT) || osString.equals(WIN2K) || osString.equals(WINXP)) { + else if (isWinXPCompatible()) { fullCmd = "cmd.exe /c " + jdkDir + " -cp \"" + dir + "\" -Duser.dir=\"" + dir + "\" " + "\"" + commandLine + "\"" + paramLine; } else { @@ -173,10 +166,10 @@ } String dir = commandLine.substring(0, i); String fullCmd = ""; - if ((osString.equals(WIN95)) || (osString.equals(WIN98)) || (osString.equals(WINME))) { + if (isWin95Compatible()) { fullCmd = "command.com /c " + jdkDir + " -jar " + "\"" + commandLine + " \" " + paramLine; } - else if (osString.equals(WINNT) || osString.equals(WIN2K) || osString.equals(WINXP)) { + else if (isWinXPCompatible()) { fullCmd = "cmd.exe /c " + jdkDir + " -jar " + "\"" + commandLine + " \" " + paramLine; } else { @@ -193,13 +186,13 @@ if (appPath != null) { appPath = "\"" + appPath + "\""; - if ((osString.equals(WIN95)) || (osString.equals(WIN98))) { + if (isWin95Compatible()) { commandLine = appPath + " \"" + commandLine + " " + paramLine + "\""; try { new Thread(new FLGPlatformSpecifics_Runnable("command.com /c " + commandLine, "")).start(); } catch (Exception e) { e.printStackTrace(); } - } else if (osString.equals(WINNT) || osString.equals(WIN2K) || osString.equals(WINXP)) { + } else if (isWinXPCompatible()) { if (extension.equals("pps")) { commandLine = "\"" + appPath + " /s \"" + commandLine + " " + paramLine + "\"" + "\""; } else { @@ -234,7 +227,17 @@ e.printStackTrace(); } } + + private static boolean isWin95Compatible() { + String os_name = System.getProperty("os.name"); + return os_name.equalsIgnoreCase("Windows 98") || os_name.equalsIgnoreCase("Windows 95") || os_name.equalsIgnoreCase("Windows ME"); + } + private static boolean isWinXPCompatible() { + String os_name = System.getProperty("os.name"); + return (os_name.contains("Windows") || os_name.contains("windows")) && !isWin95Compatible(); + } + /** * This extension can be used to separate language propeties in a property file. * When asking for the property the key has to be build by combining the prefix with the @@ -245,7 +248,7 @@ String os_name = System.getProperty("os.name"); if (os_name.equalsIgnoreCase("Windows 2000") || os_name.equalsIgnoreCase("Windows NT") || os_name.equalsIgnoreCase("Windows XP") || os_name.equalsIgnoreCase("Windows 98") || - os_name.equalsIgnoreCase("Windows 95")) + os_name.equalsIgnoreCase("Windows 95") || os_name.contains("Windows") || os_name.contains("windows")) return FLGPlatformSpecifics.WIN; return os_name; } @@ -291,8 +294,7 @@ } private static void runCommandWIN(String commandLine) { - String osString = System.getProperty("os.name"); - if ((osString.equals(WIN95)) || (osString.equals(WIN98)) || (osString.equals(WINME))) { + if (isWin95Compatible()) { try { new Thread(new FLGPlatformSpecifics_Runnable("command.com /c " + commandLine, "")).start(); } @@ -300,7 +302,7 @@ System.out.println("Exception: " + e); } } - else if (osString.equals(WINNT) || osString.equals(WIN2K) || osString.equals(WINXP)) { + else if (isWinXPCompatible()) { try { String commandString = "cmd.exe /c " + "\"" + commandLine + "\""; new Thread(new FLGPlatformSpecifics_Runnable(commandLine, "")).start(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <c0u...@us...> - 2015-01-21 10:56:27
|
Revision: 4912 http://sourceforge.net/p/openuss/code/4912 Author: c0u0sen1 Date: 2015-01-21 10:56:25 +0000 (Wed, 21 Jan 2015) Log Message: ----------- Revert changes from revision(s) 4911 Removed Paths: ------------- trunk openuss-code/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <c0u...@us...> - 2015-01-21 09:30:18
|
Revision: 4911 http://sourceforge.net/p/openuss/code/4911 Author: c0u0sen1 Date: 2015-01-21 09:30:16 +0000 (Wed, 21 Jan 2015) Log Message: ----------- Added Paths: ----------- trunk openuss-code/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sl...@us...> - 2009-06-12 13:13:36
|
Revision: 4909 http://openuss.svn.sourceforge.net/openuss/?rev=4909&view=rev Author: sluug Date: 2009-06-12 12:39:32 +0000 (Fri, 12 Jun 2009) Log Message: ----------- upgrade script to hibernate-3.2.6.ga Modified Paths: -------------- trunk/openuss-plexus/plexus/plexus-core/build.xml Modified: trunk/openuss-plexus/plexus/plexus-core/build.xml =================================================================== --- trunk/openuss-plexus/plexus/plexus-core/build.xml 2009-06-12 12:37:55 UTC (rev 4908) +++ trunk/openuss-plexus/plexus/plexus-core/build.xml 2009-06-12 12:39:32 UTC (rev 4909) @@ -50,7 +50,7 @@ <target name="hibernate-schema" description="Generates database schema"> <taskdef name="schemaexport" classname="org.hibernate.tool.hbm2ddl.SchemaExportTask"> <classpath> - <pathelement location="${m2_repo}/org/hibernate/hibernate/3.2.5.ga/hibernate-3.2.5.ga.jar"/> + <pathelement location="${m2_repo}/org/hibernate/hibernate/3.2.6.ga/hibernate-3.2.6.ga.jar"/> <pathelement location="${m2_repo}/commons-logging/commons-logging/1.1/commons-logging-1.1.jar"/> <pathelement location="${m2_repo}/commons-collections/commons-collections/3.1/commons-collections-3.1.jar"/> <pathelement location="${m2_repo}/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sl...@us...> - 2009-06-12 13:13:22
|
Revision: 4908 http://openuss.svn.sourceforge.net/openuss/?rev=4908&view=rev Author: sluug Date: 2009-06-12 12:37:55 +0000 (Fri, 12 Jun 2009) Log Message: ----------- removed teamopenuss repository. Modified Paths: -------------- trunk/openuss-plexus/pom.xml Modified: trunk/openuss-plexus/pom.xml =================================================================== --- trunk/openuss-plexus/pom.xml 2009-04-09 15:12:09 UTC (rev 4907) +++ trunk/openuss-plexus/pom.xml 2009-06-12 12:37:55 UTC (rev 4908) @@ -213,11 +213,14 @@ <module>plexus</module> </modules> <repositories> + <!-- + <repository> <id>openuss</id> <name>OpenUSS Plexus</name> <url>http://teamopenuss.uni-muenster.de/repository</url> </repository> + --> <repository> <id>java-net</id> <name>Java.Net</name> @@ -226,11 +229,13 @@ </repository> </repositories> <pluginRepositories> + <!-- <pluginRepository> <id>openuss</id> <name>OpenUSS Plexus</name> <url>http://teamopenuss.uni-muenster.de/repository</url> </pluginRepository> + --> <pluginRepository> <id>java-net</id> <name>Java.Net</name> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sl...@us...> - 2009-06-12 13:13:11
|
Revision: 4910 http://openuss.svn.sourceforge.net/openuss/?rev=4910&view=rev Author: sluug Date: 2009-06-12 12:41:11 +0000 (Fri, 12 Jun 2009) Log Message: ----------- reactivate db generation Modified Paths: -------------- trunk/openuss-plexus/plexus/plexus-core/pom.xml Modified: trunk/openuss-plexus/plexus/plexus-core/pom.xml =================================================================== --- trunk/openuss-plexus/plexus/plexus-core/pom.xml 2009-06-12 12:39:32 UTC (rev 4909) +++ trunk/openuss-plexus/plexus/plexus-core/pom.xml 2009-06-12 12:41:11 UTC (rev 4910) @@ -9,7 +9,7 @@ <artifactId>plexus-core</artifactId> <name>Plexus - Core</name> <packaging>jar</packaging> -<!-- + <build> <plugins> <plugin> @@ -65,7 +65,6 @@ </plugin> </plugins> </build> ---> <dependencies> <dependency> <groupId>org.openuss.framework</groupId> @@ -214,10 +213,12 @@ <groupId>org.springmodules</groupId> <artifactId>spring-modules-lucene</artifactId> </dependency> + <!-- <dependency> <groupId>edu.emory.mathcs</groupId> <artifactId>backport-concurrency</artifactId> </dependency> + --> </dependencies> </project> \ 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: <id...@us...> - 2009-04-09 15:12:55
|
Revision: 4907 http://openuss.svn.sourceforge.net/openuss/?rev=4907&view=rev Author: idueppe Date: 2009-04-09 15:12:09 +0000 (Thu, 09 Apr 2009) Log Message: ----------- add jaybird 2.1.6 to install-all Modified Paths: -------------- trunk/openuss-plexus/tools/missing-dependencies/build.xml Modified: trunk/openuss-plexus/tools/missing-dependencies/build.xml =================================================================== --- trunk/openuss-plexus/tools/missing-dependencies/build.xml 2009-03-03 18:51:52 UTC (rev 4906) +++ trunk/openuss-plexus/tools/missing-dependencies/build.xml 2009-04-09 15:12:09 UTC (rev 4907) @@ -4,6 +4,7 @@ <target name="install-all"> <antcall target="jaybird"/> <antcall target="jaybird-2.1.1"/> + <antcall target="jaybird-2.1.6"/> <antcall target="jta"/> <antcall target="tomahawk"/> <antcall target="tomahawk-javadoc"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2009-03-03 18:52:07
|
Revision: 4906 http://openuss.svn.sourceforge.net/openuss/?rev=4906&view=rev Author: idueppe Date: 2009-03-03 18:51:52 +0000 (Tue, 03 Mar 2009) Log Message: ----------- fixed migration script Modified Paths: -------------- trunk/openuss-plexus/plexus/plexus-core/src/main/data/kollaboration-migration.sql Modified: trunk/openuss-plexus/plexus/plexus-core/src/main/data/kollaboration-migration.sql =================================================================== --- trunk/openuss-plexus/plexus/plexus-core/src/main/data/kollaboration-migration.sql 2009-03-03 15:47:32 UTC (rev 4905) +++ trunk/openuss-plexus/plexus/plexus-core/src/main/data/kollaboration-migration.sql 2009-03-03 18:51:52 UTC (rev 4906) @@ -5,11 +5,12 @@ create table WORKSPACE (ID BIGINT not null, DOMAIN_ID BIGINT not null, NAME VARCHAR(100) not null, primary key (ID)); create table USER2WORKSPACES (WORKSPACES_FK BIGINT not null, USER_FK BIGINT not null, primary key (WORKSPACES_FK, USER_FK)); - alter table LECTURE_COURSE add COLLABORATION SMALLINT not null; alter table LECTURE_COURSE add PAPERSUBMISSION SMALLINT not null; alter table LECTURE_COURSE add WIKI SMALLINT not null; +update LECTURE_COURSE set COLLABORATION=0, PAPERSUBMISSION=0, WIKI=0 + alter table PAPERSUBMISSION_PAPER add constraint PAPERSUBMISSION_PAPER_SENDER_C foreign key (SENDER_FK) references SECURITY_USER; alter table PAPERSUBMISSION_PAPER add constraint PAPERSUBMISSION_PAPER_EXAM_FKC foreign key (EXAM_FK) references PAPERSUBMISSION_EXAM; alter table USER2WORKSPACES add constraint WORKSPACE_USER_FKC foreign key (USER_FK) references SECURITY_USER; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2009-03-03 15:47:33
|
Revision: 4905 http://openuss.svn.sourceforge.net/openuss/?rev=4905&view=rev Author: idueppe Date: 2009-03-03 15:47:32 +0000 (Tue, 03 Mar 2009) Log Message: ----------- ignore applet folder Property Changed: ---------------- trunk/openuss-plexus/plexus/plexus-web/src/main/webapp/ Property changes on: trunk/openuss-plexus/plexus/plexus-web/src/main/webapp ___________________________________________________________________ Added: svn:ignore + applet This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2009-03-03 15:21:36
|
Revision: 4904 http://openuss.svn.sourceforge.net/openuss/?rev=4904&view=rev Author: idueppe Date: 2009-03-03 15:21:18 +0000 (Tue, 03 Mar 2009) Log Message: ----------- upgrade to jaybird 2.1.6 version Modified Paths: -------------- trunk/openuss-plexus/plexus/plexus-core/pom.xml trunk/openuss-plexus/pom.xml trunk/openuss-plexus/tools/missing-dependencies/build.xml Added Paths: ----------- trunk/openuss-plexus/tools/missing-dependencies/jaybird/jaybird-2.1.6.jar trunk/openuss-plexus/tools/missing-dependencies/jaybird/jaybird-full-2.1.6.jar Modified: trunk/openuss-plexus/plexus/plexus-core/pom.xml =================================================================== --- trunk/openuss-plexus/plexus/plexus-core/pom.xml 2009-03-03 10:26:42 UTC (rev 4903) +++ trunk/openuss-plexus/plexus/plexus-core/pom.xml 2009-03-03 15:21:18 UTC (rev 4904) @@ -9,7 +9,7 @@ <artifactId>plexus-core</artifactId> <name>Plexus - Core</name> <packaging>jar</packaging> - +<!-- <build> <plugins> <plugin> @@ -63,10 +63,9 @@ </execution> </executions> </plugin> - </plugins> </build> - +--> <dependencies> <dependency> <groupId>org.openuss.framework</groupId> Modified: trunk/openuss-plexus/pom.xml =================================================================== --- trunk/openuss-plexus/pom.xml 2009-03-03 10:26:42 UTC (rev 4903) +++ trunk/openuss-plexus/pom.xml 2009-03-03 15:21:18 UTC (rev 4904) @@ -533,7 +533,7 @@ <dependency> <groupId>jaybird</groupId> <artifactId>jaybird-full</artifactId> - <version>2.1.1</version> + <version>2.1.6</version> </dependency> <dependency> <groupId>net.sf.ehcache</groupId> Modified: trunk/openuss-plexus/tools/missing-dependencies/build.xml =================================================================== --- trunk/openuss-plexus/tools/missing-dependencies/build.xml 2009-03-03 10:26:42 UTC (rev 4903) +++ trunk/openuss-plexus/tools/missing-dependencies/build.xml 2009-03-03 15:21:18 UTC (rev 4904) @@ -32,6 +32,16 @@ <arg value="-Dpackaging=jar"/> </exec> </target> + <target name="jaybird-2.1.6"> + <exec executable="${maven.executable}"> + <arg value="install:install-file"/> + <arg value="-Dfile=./jaybird/jaybird-full-2.1.6.jar"/> + <arg value="-DgroupId=jaybird"/> + <arg value="-DartifactId=jaybird-full"/> + <arg value="-Dversion=2.1.6"/> + <arg value="-Dpackaging=jar"/> + </exec> + </target> <target name="jta"> <exec executable="${maven.executable}"> <arg value="install:install-file"/> Added: trunk/openuss-plexus/tools/missing-dependencies/jaybird/jaybird-2.1.6.jar =================================================================== (Binary files differ) Property changes on: trunk/openuss-plexus/tools/missing-dependencies/jaybird/jaybird-2.1.6.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/openuss-plexus/tools/missing-dependencies/jaybird/jaybird-full-2.1.6.jar =================================================================== (Binary files differ) Property changes on: trunk/openuss-plexus/tools/missing-dependencies/jaybird/jaybird-full-2.1.6.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: <id...@us...> - 2009-03-03 10:26:57
|
Revision: 4903 http://openuss.svn.sourceforge.net/openuss/?rev=4903&view=rev Author: idueppe Date: 2009-03-03 10:26:42 +0000 (Tue, 03 Mar 2009) Log Message: ----------- code polishing Modified Paths: -------------- trunk/openuss-plexus/plexus/plexus-core/src/main/java/org/openuss/braincontest/AnswerDao.java trunk/openuss-plexus/plexus/plexus-core/src/main/java/org/openuss/desktop/DesktopDao.java Modified: trunk/openuss-plexus/plexus/plexus-core/src/main/java/org/openuss/braincontest/AnswerDao.java =================================================================== --- trunk/openuss-plexus/plexus/plexus-core/src/main/java/org/openuss/braincontest/AnswerDao.java 2009-01-27 13:54:34 UTC (rev 4902) +++ trunk/openuss-plexus/plexus/plexus-core/src/main/java/org/openuss/braincontest/AnswerDao.java 2009-03-03 10:26:42 UTC (rev 4903) @@ -1,5 +1,8 @@ package org.openuss.braincontest; +import java.util.Collection; +import java.util.List; + /** * @see org.openuss.braincontest.Answer */ @@ -41,7 +44,7 @@ * Converts this DAO's entity to a Collection of instances of type * {@link org.openuss.braincontest.AnswerInfo}. */ - public void toAnswerInfoCollection(java.util.Collection entities); + public void toAnswerInfoCollection(Collection entities); /** * Copies the fields of {@link org.openuss.braincontest.AnswerInfo} to the @@ -52,26 +55,25 @@ * entity if the value is NULL. If TRUE, it will be copied * regardless of its value. */ - public void answerInfoToEntity(org.openuss.braincontest.AnswerInfo sourceVO, - org.openuss.braincontest.Answer targetEntity, boolean copyIfNull); + public void answerInfoToEntity(AnswerInfo sourceVO, Answer targetEntity, boolean copyIfNull); /** * Converts an instance of type {@link org.openuss.braincontest.AnswerInfo} * to this DAO's entity. */ - public org.openuss.braincontest.Answer answerInfoToEntity(org.openuss.braincontest.AnswerInfo answerInfo); + public Answer answerInfoToEntity(AnswerInfo answerInfo); /** * Converts a Collection of instances of type * {@link org.openuss.braincontest.AnswerInfo} to this DAO's entity. */ - public void answerInfoToEntityCollection(java.util.Collection instances); + public void answerInfoToEntityCollection(Collection instances); /** * Loads an instance of org.openuss.braincontest.Answer from the persistent * store. */ - public org.openuss.braincontest.Answer load(org.openuss.braincontest.AnswerPK answerPk); + public Answer load(AnswerPK answerPk); /** * <p> @@ -96,7 +98,7 @@ * * @return the loaded entities. */ - public java.util.Collection<org.openuss.braincontest.Answer> loadAll(); + public Collection<org.openuss.braincontest.Answer> loadAll(); /** * <p> @@ -113,13 +115,13 @@ * the flag indicating what transformation to use. * @return the loaded entities. */ - public java.util.Collection loadAll(final int transform); + public Collection loadAll(final int transform); /** * Creates an instance of org.openuss.braincontest.Answer and adds it to the * persistent store. */ - public org.openuss.braincontest.Answer create(org.openuss.braincontest.Answer answer); + public Answer create(Answer answer); /** * <p> @@ -132,7 +134,7 @@ * value object for example). By default, transformation does not occur. * </p> */ - public Object create(int transform, org.openuss.braincontest.Answer answer); + public Object create(int transform, Answer answer); /** * Creates a new instance of org.openuss.braincontest.Answer and adds from @@ -144,8 +146,7 @@ * * @return the created instances. */ - public java.util.Collection<org.openuss.braincontest.Answer> create( - java.util.Collection<org.openuss.braincontest.Answer> entities); + public Collection<Answer> create(Collection<Answer> entities); /** * <p> @@ -158,24 +159,24 @@ * value objects for example). By default, transformation does not occur. * </p> */ - public java.util.Collection create(int transform, java.util.Collection<org.openuss.braincontest.Answer> entities); + public Collection create(int transform, Collection<Answer> entities); /** * Updates the <code>answer</code> instance in the persistent store. */ - public void update(org.openuss.braincontest.Answer answer); + public void update(Answer answer); /** * Updates all instances in the <code>entities</code> collection in the * persistent store. */ - public void update(java.util.Collection<org.openuss.braincontest.Answer> entities); + public void update(Collection<Answer> entities); /** * Removes the instance of org.openuss.braincontest.Answer from the * persistent store. */ - public void remove(org.openuss.braincontest.Answer answer); + public void remove(Answer answer); /** * Removes the instance of org.openuss.braincontest.Answer having the given @@ -192,7 +193,7 @@ /** * */ - public org.openuss.braincontest.Answer findByContestAndSolver(Long solverId, Long contestId); + public Answer findByContestAndSolver(Long solverId, Long contestId); /** * <p> Does the same thing as @@ -202,8 +203,7 @@ * defined in * {@link #findByContestAndSolver(Long, Long)}. </p> */ - public org.openuss.braincontest.Answer findByContestAndSolver(String queryString, Long solverId, - Long contestId); + public Answer findByContestAndSolver(String queryString, Long solverId, Long contestId); /** * <p> @@ -234,8 +234,8 @@ Long contestId); /** - * + * */ - public java.util.List findBySolver(Long solverId); + public List findBySolver(Long solverId); } Modified: trunk/openuss-plexus/plexus/plexus-core/src/main/java/org/openuss/desktop/DesktopDao.java =================================================================== --- trunk/openuss-plexus/plexus/plexus-core/src/main/java/org/openuss/desktop/DesktopDao.java 2009-01-27 13:54:34 UTC (rev 4902) +++ trunk/openuss-plexus/plexus/plexus-core/src/main/java/org/openuss/desktop/DesktopDao.java 2009-03-03 10:26:42 UTC (rev 4903) @@ -1,5 +1,7 @@ package org.openuss.desktop; +import java.util.Collection; + /** * @see org.openuss.desktop.Desktop */ @@ -42,7 +44,7 @@ /** * Converts this DAO's entity to a Collection of instances of type {@link org.openuss.desktop.DesktopInfo}. */ - public void toDesktopInfoCollection(java.util.Collection entities); + public void toDesktopInfoCollection(Collection entities); /** * Copies the fields of {@link org.openuss.desktop.DesktopInfo} to the specified entity. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2009-01-27 13:54:38
|
Revision: 4902 http://openuss.svn.sourceforge.net/openuss/?rev=4902&view=rev Author: roekens Date: 2009-01-27 13:54:34 +0000 (Tue, 27 Jan 2009) Log Message: ----------- fix for problem with content_type of xlsx files Added Paths: ----------- trunk/openuss-plexus/plexus/plexus-core/src/main/data/content_type-fix.sql Added: trunk/openuss-plexus/plexus/plexus-core/src/main/data/content_type-fix.sql =================================================================== --- trunk/openuss-plexus/plexus/plexus-core/src/main/data/content_type-fix.sql (rev 0) +++ trunk/openuss-plexus/plexus/plexus-core/src/main/data/content_type-fix.sql 2009-01-27 13:54:34 UTC (rev 4902) @@ -0,0 +1 @@ +alter table documents_fileentry alter column content_type type varchar(128); \ 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: <ro...@us...> - 2009-01-23 12:40:25
|
Revision: 4898 http://openuss.svn.sourceforge.net/openuss/?rev=4898&view=rev Author: roekens Date: 2009-01-23 11:51:12 +0000 (Fri, 23 Jan 2009) Log Message: ----------- Initial commit of CorrelationTest BPEL application Added Paths: ----------- trunk/sandbox/CorrelationTest/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2009-01-23 12:40:23
|
Revision: 4899 http://openuss.svn.sourceforge.net/openuss/?rev=4899&view=rev Author: roekens Date: 2009-01-23 11:52:03 +0000 (Fri, 23 Jan 2009) Log Message: ----------- Initial commit of CorrelationTest BPEL application Added Paths: ----------- trunk/sandbox/CorrelationTest/build.xml trunk/sandbox/CorrelationTest/catalog.xml trunk/sandbox/CorrelationTest/nbproject/ trunk/sandbox/CorrelationTest/nbproject/build-impl.xml trunk/sandbox/CorrelationTest/nbproject/genfiles.properties trunk/sandbox/CorrelationTest/nbproject/project.properties trunk/sandbox/CorrelationTest/nbproject/project.xml trunk/sandbox/CorrelationTest/src/ trunk/sandbox/CorrelationTest/src/CorrelationClient.bpel trunk/sandbox/CorrelationTest/src/CorrelationClient.wsdl trunk/sandbox/CorrelationTest/src/CorrelationProcess.bpel trunk/sandbox/CorrelationTest/src/CorrelationProcess.wsdl trunk/sandbox/CorrelationTest/src/CorrelationTest.xsd Property Changed: ---------------- trunk/sandbox/CorrelationTest/ Property changes on: trunk/sandbox/CorrelationTest ___________________________________________________________________ Added: svn:ignore + build Added: trunk/sandbox/CorrelationTest/build.xml =================================================================== --- trunk/sandbox/CorrelationTest/build.xml (rev 0) +++ trunk/sandbox/CorrelationTest/build.xml 2009-01-23 11:52:03 UTC (rev 4899) @@ -0,0 +1,73 @@ +<?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/CorrelationTest/catalog.xml =================================================================== --- trunk/sandbox/CorrelationTest/catalog.xml (rev 0) +++ trunk/sandbox/CorrelationTest/catalog.xml 2009-01-23 11:52:03 UTC (rev 4899) @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog" prefer="system"/> Property changes on: trunk/sandbox/CorrelationTest/nbproject ___________________________________________________________________ Added: svn:ignore + private Added: trunk/sandbox/CorrelationTest/nbproject/build-impl.xml =================================================================== --- trunk/sandbox/CorrelationTest/nbproject/build-impl.xml (rev 0) +++ trunk/sandbox/CorrelationTest/nbproject/build-impl.xml 2009-01-23 11:52:03 UTC (rev 4899) @@ -0,0 +1,142 @@ +<?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="CorrelationTest-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-projectapi.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/org-openide-filesystems.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/modules/org-netbeans-modules-soa-validation.jar"/> + <pathelement location="${netbeans.home}/../soa2/modules/org-netbeans-modules-soa-ui.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/ant/nblib/org-netbeans-modules-bpel-project.jar"/> + <pathelement location="${netbeans.home}/../xml2/modules/ext/jxpath/jxpath1.1.jar"/> + <pathelement location="${netbeans.home}/../xml2/modules/org-netbeans-modules-xml-search.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="${netbeans.home}/../xml2/modules/org-netbeans-modules-xml-wsdl-extensions.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}"/> + <!-- copy all files from project source directory to build directory. --> + <copy todir="${build.dir}" preservelastmodified="true"> + <fileset includes="**/*.bpel,**/*.wsdl,**/*.xsd, **/*.xsl, **/*.xslt" 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" 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/CorrelationTest/nbproject/genfiles.properties =================================================================== --- trunk/sandbox/CorrelationTest/nbproject/genfiles.properties (rev 0) +++ trunk/sandbox/CorrelationTest/nbproject/genfiles.properties 2009-01-23 11:52:03 UTC (rev 4899) @@ -0,0 +1,8 @@ +build.xml.data.CRC32=841380d9 +build.xml.script.CRC32=1578cd50 +build.xml.stylesheet.CRC32=6afb700a +# 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=841380d9 +nbproject/build-impl.xml.script.CRC32=aac59749 +nbproject/build-impl.xml.stylesheet.CRC32=e4fee816 Added: trunk/sandbox/CorrelationTest/nbproject/project.properties =================================================================== --- trunk/sandbox/CorrelationTest/nbproject/project.properties (rev 0) +++ trunk/sandbox/CorrelationTest/nbproject/project.properties 2009-01-23 11:52:03 UTC (rev 4899) @@ -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}/CorrelationTest.zip +dist.javadoc.dir=${dist.dir}/javadoc +jar.compress=false +jar.name=CorrelationTest.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=UTF-8 +source.root=src +src.dir=${source.root} +wsdl.classpath= Added: trunk/sandbox/CorrelationTest/nbproject/project.xml =================================================================== --- trunk/sandbox/CorrelationTest/nbproject/project.xml (rev 0) +++ trunk/sandbox/CorrelationTest/nbproject/project.xml 2009-01-23 11:52:03 UTC (rev 4899) @@ -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>CorrelationTest</name> + <minimum-ant-version>1.6</minimum-ant-version> + </data> + </configuration> +</project> Added: trunk/sandbox/CorrelationTest/src/CorrelationClient.bpel =================================================================== --- trunk/sandbox/CorrelationTest/src/CorrelationClient.bpel (rev 0) +++ trunk/sandbox/CorrelationTest/src/CorrelationClient.bpel 2009-01-23 11:52:03 UTC (rev 4899) @@ -0,0 +1,186 @@ +<?xml version="1.0" encoding="UTF-8"?> +<process + name="CorrelationClient" + targetNamespace="http://enterprise.netbeans.org/bpel/CorrelationTest/CorrelationClient" + xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:sxt="http://www.sun.com/wsbpel/2.0/process/executable/SUNExtension/Trace" + xmlns:sxed="http://www.sun.com/wsbpel/2.0/process/executable/SUNExtension/Editor" + xmlns:tns="http://enterprise.netbeans.org/bpel/CorrelationTest/CorrelationClient" + xmlns:ns0="http://xml.netbeans.org/schema/CorrelationTest" + xmlns:ns1="http://j2ee.netbeans.org/wsdl/CorrelationClient" + xmlns:ns2="http://j2ee.netbeans.org/wsdl/CorrelationProcess" + xmlns:ns3="http://docs.oasis-open.org/wsbpel/2.0/process/executable" + xmlns:sxtx="http://www.sun.com/wsbpel/2.0/process/executable/SUNExtension" + sxtx:waitingRequestLifeSpan="15"> + <import namespace="http://j2ee.netbeans.org/wsdl/CorrelationClient" location="CorrelationClient.wsdl" importType="http://schemas.xmlsoap.org/wsdl/"/> + <import namespace="http://j2ee.netbeans.org/wsdl/CorrelationProcess" location="CorrelationProcess.wsdl" importType="http://schemas.xmlsoap.org/wsdl/"/> + <partnerLinks> + <partnerLink name="PartnerLink2" partnerLinkType="ns2:CorrelationProcess" partnerRole="CorrelationProcessPortTypeRole"/> + <partnerLink name="PartnerLink1" partnerLinkType="ns1:CorrelationClient" myRole="CorrelationClientPortTypeRole"/> + </partnerLinks> + <variables> + <variable name="CorrelationClientOperationOut" messageType="ns1:CorrelationClientOperationResponse"/> + <variable name="CorrelationReceiveOutcomeOperationIn1" messageType="ns1:CorrelationReceiveOutcomeRequest"/> + <variable name="CorrelationReceiveOutcomeOperationIn" messageType="ns1:CorrelationReceiveOutcomeRequest"/> + <variable name="CorrelationProcessOperationIn" messageType="ns2:CorrelationProcessOperationRequest"/> + <variable name="CorrelationClientOperationIn" messageType="ns1:CorrelationClientOperationRequest"/> + </variables> + <correlationSets> + <correlationSet name="ClientCorrSet" properties="ns1:clientCorrId"/> + </correlationSets> + <sequence> + <receive name="Receive1" createInstance="yes" partnerLink="PartnerLink1" operation="CorrelationClientOperation" xmlns:tns="http://j2ee.netbeans.org/wsdl/CorrelationClient" portType="tns:CorrelationClientPortType" variable="CorrelationClientOperationIn"> + <correlations> + <correlation set="ClientCorrSet" initiate="yes"/> + </correlations> + </receive> + <assign name="Assign1"> + <copy> + <from>$CorrelationClientOperationIn.request/ns0:id</from> + <to>$CorrelationProcessOperationIn.part1/ns0:id</to> + </copy> + <copy> + <from>$CorrelationClientOperationIn.request/ns0:param</from> + <to>$CorrelationProcessOperationIn.part1/ns0:param</to> + </copy> + </assign> + <flow name="Flow1"> + <sequence name="FlowSequence"> + <scope name="Scope2"> + <faultHandlers> + <catchAll> + <empty name="Empty2"> + <sxt:trace> + <sxt:log level="info" location="onStart"> + <ns3:from>'Catch All - Thread 1'</ns3:from> + </sxt:log> + </sxt:trace> + </empty> + </catchAll> + </faultHandlers> + <sequence name="Sequence2"> + <invoke name="Invoke1" partnerLink="PartnerLink2" operation="CorrelationProcessOperation" xmlns:tns="http://j2ee.netbeans.org/wsdl/CorrelationProcess" portType="tns:CorrelationProcessPortType" inputVariable="CorrelationProcessOperationIn"> + <sxt:trace> + <sxt:log level="info" location="onStart"> + <from>'Starting Thread 1'</from> + </sxt:log> + <sxt:log level="info" location="onComplete"> + <from>'Thread 1 Started'</from> + </sxt:log> + </sxt:trace> + </invoke> + </sequence> + </scope> + <pick name="Pick2"> + <onMessage partnerLink="PartnerLink1" operation="CorrelationReceiveOutcomeOperation" portType="ns1:CorrelationClientPortType" variable="CorrelationReceiveOutcomeOperationIn"> + <correlations> + <correlation set="ClientCorrSet" initiate="no"/> + </correlations> + <empty name="Empty4"> + <sxt:trace> + <sxt:log level="info" location="onStart"> + <ns3:from>'Everything OK - Outcome Received - Thread 1'</ns3:from> + </sxt:log> + </sxt:trace> + </empty> + </onMessage> + <onAlarm> + <for>'P0Y0M0DT0H0M5.0S'</for> + <assign name="Assign8"> + <sxt:trace> + <sxt:log level="info" location="onStart"> + <ns3:from>'Nothing Received - Thread 1'</ns3:from> + </sxt:log> + </sxt:trace> + <copy> + <from>'Nothing Received'</from> + <to>$CorrelationReceiveOutcomeOperationIn.request/ns0:id</to> + </copy> + <copy> + <from>'Nothing Received'</from> + <to>$CorrelationReceiveOutcomeOperationIn.request/ns0:param</to> + </copy> + </assign> + </onAlarm> + </pick> + </sequence> + <sequence name="FlowSequence1"> + <scope name="Scope1"> + <faultHandlers> + <catchAll> + <empty name="Empty1"> + <sxt:trace> + <sxt:log level="info" location="onStart"> + <ns3:from>'Catch All - Thread 2'</ns3:from> + </sxt:log> + </sxt:trace> + </empty> + </catchAll> + </faultHandlers> + <sequence name="Sequence1"> + <invoke name="Invoke2" partnerLink="PartnerLink2" operation="CorrelationProcessOperation" portType="ns2:CorrelationProcessPortType" inputVariable="CorrelationProcessOperationIn"> + <sxt:trace> + <sxt:log level="info" location="onStart"> + <from>'Starting Thread 2'</from> + </sxt:log> + <sxt:log level="info" location="onComplete"> + <from>'Thread 2 Started'</from> + </sxt:log> + </sxt:trace> + </invoke> + </sequence> + </scope> + <pick name="Pick1"> + <onMessage partnerLink="PartnerLink1" operation="CorrelationReceiveOutcomeOperation" portType="ns1:CorrelationClientPortType" variable="CorrelationReceiveOutcomeOperationIn1"> + <correlations> + <correlation set="ClientCorrSet" initiate="no"/> + </correlations> + <empty name="Empty3"> + <sxt:trace> + <sxt:log level="info" location="onStart"> + <ns3:from>'Everything OK - Outcome Received - Thread 2'</ns3:from> + </sxt:log> + </sxt:trace> + </empty> + </onMessage> + <onAlarm> + <for>'P0Y0M0DT0H0M5.0S'</for> + <assign name="Assign7"> + <sxt:trace> + <sxt:log level="info" location="onStart"> + <ns3:from>'Nothing Received - Thread 2'</ns3:from> + </sxt:log> + </sxt:trace> + <copy> + <from>'Nothing Received'</from> + <to>$CorrelationReceiveOutcomeOperationIn1.request/ns0:id</to> + </copy> + <copy> + <from>'Nothing Received'</from> + <to>$CorrelationReceiveOutcomeOperationIn1.request/ns0:param</to> + </copy> + </assign> + </onAlarm> + </pick> + </sequence> + </flow> + <assign name="Assign2"> + <copy> + <from>concat($CorrelationReceiveOutcomeOperationIn.request/ns0:id, $CorrelationReceiveOutcomeOperationIn1.request/ns0:id)</from> + <to>$CorrelationClientOperationOut.response/ns0:id</to> + </copy> + <copy> + <from>concat($CorrelationReceiveOutcomeOperationIn.request/ns0:param, $CorrelationReceiveOutcomeOperationIn1.request/ns0:param)</from> + <to>$CorrelationClientOperationOut.response/ns0:param</to> + </copy> + </assign> + <reply name="Reply1" partnerLink="PartnerLink1" operation="CorrelationClientOperation" xmlns:tns="http://j2ee.netbeans.org/wsdl/CorrelationClient" portType="tns:CorrelationClientPortType" variable="CorrelationClientOperationOut"> + <sxt:trace> + <sxt:log level="info" location="onStart"> + <from>'Test successfull'</from> + </sxt:log> + </sxt:trace> + </reply> + </sequence> +</process> Added: trunk/sandbox/CorrelationTest/src/CorrelationClient.wsdl =================================================================== --- trunk/sandbox/CorrelationTest/src/CorrelationClient.wsdl (rev 0) +++ trunk/sandbox/CorrelationTest/src/CorrelationClient.wsdl 2009-01-23 11:52:03 UTC (rev 4899) @@ -0,0 +1,78 @@ +<?xml version="1.0" encoding="UTF-8"?> +<definitions name="CorrelationClient" targetNamespace="http://j2ee.netbeans.org/wsdl/CorrelationClient" + xmlns="http://schemas.xmlsoap.org/wsdl/" + xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://j2ee.netbeans.org/wsdl/CorrelationClient" xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:ns0="http://xml.netbeans.org/schema/CorrelationTest" xmlns:vprop="http://docs.oasis-open.org/wsbpel/2.0/varprop"> + <types> + <xsd:schema targetNamespace="http://j2ee.netbeans.org/wsdl/CorrelationClient"> + <xsd:import namespace="http://xml.netbeans.org/schema/CorrelationTest" schemaLocation="CorrelationTest.xsd"/> + </xsd:schema> + </types> +<!-- document style + <message name="CorrelationClientOperationRequest"> + <part name="part1" element="ns0:request"/> + </message> + <message name="CorrelationClientOperationResponse"> + <part name="part1" element="ns0:response"/> + </message> + <message name="CorrelationReceiveOutcomeRequest"> + <part name="part1" element="ns0:request"/> + </message> +--> +<!-- rpc style --> + <message name="CorrelationClientOperationRequest"> + <part name="request" type="ns0:request"/> + </message> + <message name="CorrelationClientOperationResponse"> + <part name="response" type="ns0:response"/> + </message> + <message name="CorrelationReceiveOutcomeRequest"> + <part name="request" type="ns0:request"/> + </message> + + <portType name="CorrelationClientPortType"> + <operation name="CorrelationClientOperation"> + <input name="input1" message="tns:CorrelationClientOperationRequest"/> + <output name="output1" message="tns:CorrelationClientOperationResponse"/> + </operation> + <operation name="CorrelationReceiveOutcomeOperation"> + <input name="input2" message="tns:CorrelationReceiveOutcomeRequest"/> + </operation> + </portType> + <binding name="CorrelationClientPortTypeBinding" type="tns:CorrelationClientPortType"> + <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/> + <operation name="CorrelationClientOperation"> + <soap:operation/> + <input name="input1"> + <soap:body use="literal"/> + </input> + <output name="output1"> + <soap:body use="literal"/> + </output> + </operation> + <operation name="CorrelationReceiveOutcomeOperation"> + <soap:operation/> + <input name="input2"> + <soap:body use="literal"/> + </input> + </operation> + </binding> + <service name="CorrelationClientService"> + <port name="CorrelationClientPortTypeBindingPort" binding="tns:CorrelationClientPortTypeBinding"> + <soap:address location="http://localhost:${HttpDefaultPort}/CorrelationClientService/CorrelationClientPortTypeBindingPort"/> + </port> + </service> + <plnk:partnerLinkType name="CorrelationClient"> + <!-- A partner link type is automatically generated when a new port type is added. Partner link types are used by BPEL processes. +In a BPEL process, a partner link represents the interaction between the BPEL process and a partner service. Each partner link is associated with a partner link type. +A partner link type characterizes the conversational relationship between two services. The partner link type can have one or two roles.--> + <plnk:role name="CorrelationClientPortTypeRole" portType="tns:CorrelationClientPortType"/> + </plnk:partnerLinkType> + <vprop:property name="clientCorrId" type="xsd:string"/> + <vprop:propertyAlias propertyName="tns:clientCorrId" messageType="tns:CorrelationClientOperationRequest" part="request"> + <vprop:query>ns0:id</vprop:query> + </vprop:propertyAlias> + <vprop:propertyAlias propertyName="tns:clientCorrId" messageType="tns:CorrelationReceiveOutcomeRequest" part="request"> + <vprop:query>ns0:id</vprop:query> + </vprop:propertyAlias> +</definitions> Added: trunk/sandbox/CorrelationTest/src/CorrelationProcess.bpel =================================================================== --- trunk/sandbox/CorrelationTest/src/CorrelationProcess.bpel (rev 0) +++ trunk/sandbox/CorrelationTest/src/CorrelationProcess.bpel 2009-01-23 11:52:03 UTC (rev 4899) @@ -0,0 +1,81 @@ +<?xml version="1.0" encoding="UTF-8"?> +<process + name="CorrelationProcess" + targetNamespace="http://enterprise.netbeans.org/bpel/CorrelationTest/CorrelationProcess" + xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:sxt="http://www.sun.com/wsbpel/2.0/process/executable/SUNExtension/Trace" + xmlns:sxed="http://www.sun.com/wsbpel/2.0/process/executable/SUNExtension/Editor" + xmlns:tns="http://enterprise.netbeans.org/bpel/CorrelationTest/CorrelationProcess" + xmlns:ns0="http://xml.netbeans.org/schema/CorrelationTest" + xmlns:ns1="http://j2ee.netbeans.org/wsdl/CorrelationProcess" + xmlns:ns2="http://j2ee.netbeans.org/wsdl/CorrelationClient"> + <import namespace="http://j2ee.netbeans.org/wsdl/CorrelationProcess" location="CorrelationProcess.wsdl" importType="http://schemas.xmlsoap.org/wsdl/"/> + <import namespace="http://j2ee.netbeans.org/wsdl/CorrelationClient" location="CorrelationClient.wsdl" importType="http://schemas.xmlsoap.org/wsdl/"/> + <partnerLinks> + <partnerLink name="PartnerLink3" partnerLinkType="ns1:CorrelationProcess" myRole="CorrelationProcessPortTypeRole"/> + <partnerLink name="PartnerLink2" partnerLinkType="ns2:CorrelationClient" partnerRole="CorrelationClientPortTypeRole"/> + </partnerLinks> + <variables> + <variable name="CorrelationProcessOperationIn" messageType="ns1:CorrelationProcessOperationRequest"/> + <variable name="CorrelationReceiveOutcomeOperationIn" messageType="ns2:CorrelationReceiveOutcomeRequest"/> + </variables> + <correlationSets> + <correlationSet name="ProcessCorrSet" properties="ns1:processCorrId"/> + </correlationSets> + <sequence> + <scope name="Scope1"> + <faultHandlers> + <catchAll> + <sequence name="FaultSequence"> + <empty name="Empty1"> + <sxt:trace> + <sxt:log level="info" location="onStart"> + <from>'Catch All - Inner Thread'</from> + </sxt:log> + </sxt:trace> + </empty> + <assign name="Assign2"> + <copy> + <from>'FAULT'</from> + <to>$CorrelationReceiveOutcomeOperationIn.request/ns0:id</to> + </copy> + <copy> + <from>'FAULT'</from> + <to>$CorrelationReceiveOutcomeOperationIn.request/ns0:param</to> + </copy> + </assign> + </sequence> + </catchAll> + </faultHandlers> + <sequence name="Sequence1"> + <receive name="Receive1" createInstance="yes" partnerLink="PartnerLink3" operation="CorrelationProcessOperation" portType="ns1:CorrelationProcessPortType" variable="CorrelationProcessOperationIn"> + <correlations> + <correlation set="ProcessCorrSet" initiate="yes"/> + </correlations> + </receive> + <assign name="Assign1"> + <copy> + <from>$CorrelationProcessOperationIn.part1/ns0:id</from> + <to>$CorrelationReceiveOutcomeOperationIn.request/ns0:id</to> + </copy> + <copy> + <from>$CorrelationProcessOperationIn.part1/ns0:param</from> + <to>$CorrelationReceiveOutcomeOperationIn.request/ns0:param</to> + </copy> + </assign> + <invoke name="Invoke1" partnerLink="PartnerLink2" operation="CorrelationReceiveOutcomeOperation" xmlns:tns="http://j2ee.netbeans.org/wsdl/CorrelationClient" portType="tns:CorrelationClientPortType" inputVariable="CorrelationReceiveOutcomeOperationIn"> + <sxt:trace> + <sxt:log level="info" location="onStart"> + <from>'Thread started'</from> + </sxt:log> + <sxt:log level="info" location="onComplete"> + <from>'Thread outcome successfully send'</from> + </sxt:log> + </sxt:trace> + </invoke> + </sequence> + </scope> + + </sequence> +</process> Added: trunk/sandbox/CorrelationTest/src/CorrelationProcess.wsdl =================================================================== --- trunk/sandbox/CorrelationTest/src/CorrelationProcess.wsdl (rev 0) +++ trunk/sandbox/CorrelationTest/src/CorrelationProcess.wsdl 2009-01-23 11:52:03 UTC (rev 4899) @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="UTF-8"?> +<definitions name="CorrelationProcess" targetNamespace="http://j2ee.netbeans.org/wsdl/CorrelationProcess" + xmlns="http://schemas.xmlsoap.org/wsdl/" + xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:tns="http://j2ee.netbeans.org/wsdl/CorrelationProcess" + xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype" + xmlns:ns0="http://xml.netbeans.org/schema/CorrelationTest" + xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" + xmlns:vprop="http://docs.oasis-open.org/wsbpel/2.0/varprop" xmlns:ns1="http://j2ee.netbeans.org/wsdl/CorrelationClient"> + <import namespace="http://j2ee.netbeans.org/wsdl/CorrelationClient" location="CorrelationClient.wsdl"/> + <types> + <xsd:schema targetNamespace="http://j2ee.netbeans.org/wsdl/CorrelationProcess"> + <xsd:import namespace="http://xml.netbeans.org/schema/CorrelationTest" schemaLocation="CorrelationTest.xsd"/> + </xsd:schema> + </types> + <message name="CorrelationProcessOperationRequest"> + <part name="part1" element="ns0:processRequest"/> + </message> + <portType name="CorrelationProcessPortType"> + <operation name="CorrelationProcessOperation"> + <input name="input1" message="tns:CorrelationProcessOperationRequest"/> + </operation> + </portType> + <binding name="CorrelationProcessPortTypeBinding" type="tns:CorrelationProcessPortType"> + <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> + <operation name="CorrelationProcessOperation"> + <soap:operation/> + <input name="input1"> + <soap:body use="literal"/> + </input> + </operation> + </binding> + <service name="CorrelationProcessService"> + <port name="CorrelationProcessPortTypeBindingPort" binding="tns:CorrelationProcessPortTypeBinding"> + <soap:address location="http://localhost:${HttpDefaultPort}/CorrelationProcessService/CorrelationProcessPortTypeBindingPort"/> + </port> + </service> + <plnk:partnerLinkType name="CorrelationProcess"> + <plnk:role name="CorrelationProcessPortTypeRole" portType="tns:CorrelationProcessPortType"/> + </plnk:partnerLinkType> + <vprop:property name="processCorrId" type="xsd:string"/> + <vprop:propertyAlias propertyName="tns:processCorrId" messageType="tns:CorrelationProcessOperationRequest" part="part1"> + <vprop:query>/ns0:processRequest/ns0:id</vprop:query> + </vprop:propertyAlias> +</definitions> Added: trunk/sandbox/CorrelationTest/src/CorrelationTest.xsd =================================================================== --- trunk/sandbox/CorrelationTest/src/CorrelationTest.xsd (rev 0) +++ trunk/sandbox/CorrelationTest/src/CorrelationTest.xsd 2009-01-23 11:52:03 UTC (rev 4899) @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://xml.netbeans.org/schema/CorrelationTest" + xmlns:tns="http://xml.netbeans.org/schema/CorrelationTest" + elementFormDefault="qualified"> + <xsd:element name="request" type="tns:request"/> + <xsd:element name="processRequest" type="tns:request" /> + <xsd:element name="response" type="tns:response"/> + <xsd:complexType name="request"> + <xsd:sequence> + <xsd:element name="id" type="xsd:string"/> + <xsd:element name="param" type="xsd:string"/> + </xsd:sequence> + </xsd:complexType> + <xsd:complexType name="response"> + <xsd:sequence> + <xsd:element name="id" type="xsd:string"/> + <xsd:element name="param" type="xsd:string"/> + </xsd:sequence> + </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: <ro...@us...> - 2009-01-23 12:40:21
|
Revision: 4900 http://openuss.svn.sourceforge.net/openuss/?rev=4900&view=rev Author: roekens Date: 2009-01-23 11:53:36 +0000 (Fri, 23 Jan 2009) Log Message: ----------- Initial commit of correlationTest composite application Added Paths: ----------- trunk/sandbox/CorrelationTestCA/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2009-01-23 12:40:19
|
Revision: 4901 http://openuss.svn.sourceforge.net/openuss/?rev=4901&view=rev Author: roekens Date: 2009-01-23 11:54:21 +0000 (Fri, 23 Jan 2009) Log Message: ----------- Initial commit of correlationTest composite application Added Paths: ----------- trunk/sandbox/CorrelationTestCA/Catalog.xml trunk/sandbox/CorrelationTestCA/build.xml trunk/sandbox/CorrelationTestCA/nbproject/ trunk/sandbox/CorrelationTestCA/nbproject/build-impl.xml trunk/sandbox/CorrelationTestCA/nbproject/genfiles.properties trunk/sandbox/CorrelationTestCA/nbproject/project.properties trunk/sandbox/CorrelationTestCA/nbproject/project.xml trunk/sandbox/CorrelationTestCA/src/ trunk/sandbox/CorrelationTestCA/src/conf/ trunk/sandbox/CorrelationTestCA/src/conf/AssemblyInformation.xml trunk/sandbox/CorrelationTestCA/src/conf/BindingComponentInformation.xml trunk/sandbox/CorrelationTestCA/src/conf/ComponentInformation.xml trunk/sandbox/CorrelationTestCA/src/conf/CorrelationTestCA.casa trunk/sandbox/CorrelationTestCA/src/conf/connections.xml trunk/sandbox/CorrelationTestCA/src/jbiasa/ trunk/sandbox/CorrelationTestCA/test/ trunk/sandbox/CorrelationTestCA/test/TestCase1/ trunk/sandbox/CorrelationTestCA/test/TestCase1/Concurrent.properties trunk/sandbox/CorrelationTestCA/test/TestCase1/Input.xml trunk/sandbox/CorrelationTestCA/test/TestCase1/Output.xml trunk/sandbox/CorrelationTestCA/test/selected-tests.properties Property Changed: ---------------- trunk/sandbox/CorrelationTestCA/ Property changes on: trunk/sandbox/CorrelationTestCA ___________________________________________________________________ Added: svn:ignore + build dist Added: trunk/sandbox/CorrelationTestCA/Catalog.xml =================================================================== --- trunk/sandbox/CorrelationTestCA/Catalog.xml (rev 0) +++ trunk/sandbox/CorrelationTestCA/Catalog.xml 2009-01-23 11:54:21 UTC (rev 4901) @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?><catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog" prefer="system"><nextCatalog catalog="src/jbiServiceUnits/META-INF/CorrelationTest/catalog.xml"/> + +</catalog> \ No newline at end of file Added: trunk/sandbox/CorrelationTestCA/build.xml =================================================================== --- trunk/sandbox/CorrelationTestCA/build.xml (rev 0) +++ trunk/sandbox/CorrelationTestCA/build.xml 2009-01-23 11:54:21 UTC (rev 4901) @@ -0,0 +1,73 @@ +<?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> Property changes on: trunk/sandbox/CorrelationTestCA/nbproject ___________________________________________________________________ Added: svn:ignore + private Added: trunk/sandbox/CorrelationTestCA/nbproject/build-impl.xml =================================================================== --- trunk/sandbox/CorrelationTestCA/nbproject/build-impl.xml (rev 0) +++ trunk/sandbox/CorrelationTestCA/nbproject/build-impl.xml 2009-01-23 11:54:21 UTC (rev 4901) @@ -0,0 +1,346 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + *** GENERATED FROM project.xml - DO NOT EDIT *** + *** EDIT ../build.xml INSTEAD *** + + For the purpose of easier reading the script + is divided into following sections: + + - initialization + - compilation + - dist + - execution + - debugging + - cleanup + + --> +<project name="CorrelationTestCA-jbi-impl" default="build" basedir=".."> + <target name="default" depends="dist" 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"> + <!-- The two properties below are usually overridden --> + <!-- by the active platform. Just a fallback. --> + <property name="default.javac.source" value="1.4"/> + <property name="default.javac.target" value="1.4"/> + <condition property="have.tests"> + <or> + <available file="${test.dir}"/> + </or> + </condition> + <condition property="netbeans.home+have.tests"> + <and> + <isset property="netbeans.home"/> + <isset property="have.tests"/> + </and> + </condition> + </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="build.generated.dir">Must set build.generated.dir</fail> + <fail unless="dist.dir">Must set dist.dir</fail> + <fail unless="build.classes.dir">Must set build.classes.dir</fail> + <fail unless="dist.jar">Must set dist.jar</fail> + <fail unless="test.dir">Must set test.dir</fail> + </target> + <target name="-init-taskdefs" if="from.commandline"> + <path id="ant.task.classpath"> + <pathelement location="${soa.module.install.dir}/org-netbeans-modules-compapp-projects-jbi.jar"/> + <pathelement location="${soa.module.install.dir}/org-netbeans-modules-compapp-manager-jbi.jar"/> + <pathelement location="${soa.module.install.dir}/org-netbeans-soa-libs-xmlbeans.jar"/> + <pathelement location="${soa.module.install.dir}/ext/jbi/jbi-admin-common.jar"/> + <pathelement location="${soa.module.install.dir}/../ant/nblib/org-netbeans-modules-compapp-projects-jbi.jar"/> + <pathelement location="${netbeans.home}/lib/org-openide-util.jar"/> + <pathelement location="${netbeans.home}/lib/org-openide-modules.jar"/> + <pathelement location="${netbeans.home}/modules/org-openide-options.jar"/> + <pathelement location="${netbeans.home}/modules/org-openide-text.jar"/> + <pathelement location="${netbeans.home}/modules/org-openide-loaders.jar"/> + <pathelement location="${netbeans.home}/modules/org-openide-nodes.jar"/> + <pathelement location="${netbeans.home}/modules/org-openide-dialogs.jar"/> + <pathelement location="${netbeans.home}/core/org-openide-filesystems.jar"/> + <pathelement location="${ide.module.install.dir}/ext/xerces-2.8.0.jar"/> + <pathelement location="${ide.module.install.dir}/ext/xml-commons-dom-ranges-1.0.b2.jar"/> + <pathelement location="${ide.module.install.dir}/org-netbeans-modules-xml-retriever.jar"/> + <pathelement location="${ide.module.install.dir}/org-netbeans-modules-xml-schema-model.jar"/> + <pathelement location="${ide.module.install.dir}/org-netbeans-modules-xml-wsdl-model.jar"/> + <pathelement location="${ide.module.install.dir}/org-netbeans-modules-xml-xam.jar"/> + <pathelement location="${ide.module.install.dir}/org-netbeans-modules-xml-text.jar"/> + <pathelement location="${ide.module.install.dir}/org-netbeans-modules-editor.jar"/> + <pathelement location="${ide.module.install.dir}/org-netbeans-modules-editor-lib.jar"/> + <pathelement location="${ide.module.install.dir}/org-netbeans-modules-editor-util.jar"/> + <pathelement location="${ide.module.install.dir}/org-netbeans-modules-projectapi.jar"/> + <pathelement location="${ide.module.install.dir}/org-netbeans-modules-classfile.jar"/> + <pathelement location="${ide.module.install.dir}/org-apache-xml-resolver.jar"/> + <pathelement location="${xml.module.install.dir}/org-netbeans-modules-xml-wsdl-extensions.jar"/> + <pathelement location="${ide.module.install.dir}/ext/jaxb/api/jaxb-api.jar"/> + <pathelement location="${ide.module.install.dir}/ext/jaxb/jaxb-impl.jar"/> + <pathelement location="${ide.module.install.dir}/ext/jaxb/activation.jar"/> + <pathelement location="${enterprise.module.install.dir}/org-netbeans-modules-j2eeserver.jar"/> + <pathelement location="${enterprise.module.install.dir}/ext/jsr88javax.jar"/> + </path> + <taskdef name="jbi-build-service-assembly" classname="org.netbeans.modules.compapp.projects.jbi.anttasks.BuildServiceAssembly"> + <classpath refid="ant.task.classpath"/> + </taskdef> + <taskdef name="jbi-deploy-service-assembly" classname="org.netbeans.modules.compapp.projects.jbi.anttasks.DeployServiceAssembly"> + <classpath refid="ant.task.classpath"/> + </taskdef> + <taskdef name="setup-debug-environment" classname="org.netbeans.modules.compapp.projects.jbi.anttasks.SetUpDebugEnvironment"> + <classpath refid="ant.task.classpath"/> + </taskdef> + <taskdef name="teardown-debug-environment" classname="org.netbeans.modules.compapp.projects.jbi.anttasks.TearDownDebugEnvironment"> + <classpath refid="ant.task.classpath"/> + </taskdef> + <taskdef name="jbi-javaee-dist" classname="org.netbeans.modules.compapp.projects.jbi.anttasks.BuildJavaEESU"> + <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"/> + <!-- + COMPILATION SECTION + --> + <target name="deps-jar" depends="init" unless="${no.dependencies}"> + <ant target="dist_se" inheritall="false" antfile="${project.CorrelationTest}/build.xml"/> + <basename property="CorrelationTest.su.name" file="${project.CorrelationTest}"/> + <unzip src="${reference.CorrelationTest.dist_se}" dest="${src.dir}/../jbiServiceUnits/${CorrelationTest.su.name}"> + <patternset> + <include name="**/*.wsdl"/> + <include name="**/*.WSDL"/> + <include name="**/*.xsd"/> + <include name="**/*.XSD"/> + <include name="META-INF/jbi.xml"/> + <include name="META-INF/catalog.xml"/> + </patternset> + </unzip> + <property name="CorrelationTest.su.dir" value="${src.dir}/../jbiServiceUnits/${CorrelationTest.su.name}"/> + <move file="${CorrelationTest.su.dir}/META-INF/jbi.xml" todir="${CorrelationTest.su.dir}"/> + <move todir="${src.dir}/../jbiServiceUnits/META-INF/${CorrelationTest.su.name}"> + <fileset dir="${CorrelationTest.su.dir}/META-INF"/> + </move> + </target> + <target name="deps-javaee-jar" depends="init" unless="${no.dependencies}"/> + <target name="pre-pre-compile" depends="init,deps-jar"> + <mkdir dir="${build.classes.dir}"/> + </target> + <target name="pre-compile"> + <!-- Empty placeholder for easier customization. --> + <!-- You can override this target in the ../build.xml file. --> + </target> + <target name="library-inclusion-in-archive" depends="compile"> + <unjar dest="${build.classes.dir}" src="${reference.CorrelationTest.dist_se}"/> + </target> + <target name="library-inclusion-in-manifest" depends="compile"> + <basename property="included.lib.reference.CorrelationTest.dist_se" file="${reference.CorrelationTest.dist_se}"/> + <copy todir="${build.classes.dir}" file="${reference.CorrelationTest.dist_se}"/> + <manifest file="${build.classes.dir}/META-INF/MANIFEST.MF" mode="update"> + <attribute name="Class-Path" value="${included.lib.reference.CorrelationTest.dist_se}"/> + </manifest> + </target> + <target name="do-compile" depends="init,deps-jar,pre-pre-compile,pre-compile"/> + <target name="post-compile"> + <!-- Empty placeholder for easier customization. --> + <!-- You can override this target in the ../build.xml file. --> + </target> + <target name="compile" depends="init,deps-jar,pre-pre-compile,pre-compile,do-compile,post-compile" description="Compile project."/> + <target name="pre-compile-single"> + <!-- Empty placeholder for easier customization. --> + <!-- You can override this target in the ../build.xml file. --> + </target> + <target name="do-compile-single" depends="init,deps-jar,pre-pre-compile"> + <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail> + </target> + <target name="post-compile-single"> + <!-- Empty placeholder for easier customization. --> + <!-- You can override this target in the ../build.xml file. --> + </target> + <target name="compile-single" depends="init,deps-jar,pre-pre-compile,pre-compile-single,do-compile-single,post-compile-single"/> + <!-- + DIST BUILDING SECTION + --> + <target name="jbi-build" depends="init,init-deploy,deps-jar, deps-javaee-jar" description="Build Service Assembly."> + <mkdir dir="${src.dir}"/> + <copy todir="${src.dir}/../jbiServiceUnits" overwrite="true"> + <fileset dir="${src.dir}"/> + </copy> + <mkdir dir="${build.dir}/META-INF"/> + <jar compress="true" jarfile="${build.dir}/BCDeployment.jar"> + <fileset dir="${src.dir}/../jbiServiceUnits"> + <exclude name="**/catalog.xml"/> + <exclude name="**/jbi.xml"/> + </fileset> + </jar> + <jbi-build-service-assembly/> + <delete file="${build.dir}/BCDeployment.jar"/> + <dirname property="dist.jar.dir" file="${dist.jar}"/> + <mkdir dir="${dist.jar.dir}"/> + <jar compress="${jar.compress}" jarfile="${dist.jar}" filesetmanifest="merge"> + <fileset dir="${build.dir}" excludes="jar/*"/> + </jar> + </target> + <target name="jbi-clean-build" depends="init,init-deploy,clean,jbi-build" description="Clean and Build Service Assembly."/> + <target name="dist" depends="jbi-build" description="Build distribution (JAR)."/> + <!-- + EXECUTION SECTION + --> + <target name="run" depends="jbi-build,run-jbi-deploy" description="Deploy to server."/> + <target name="init-deploy"> + <property name="include.jar.manifest" value=""/> + </target> + <target name="run-jbi-deploy" depends="jbi-build"> + <property name="j2ee.server.instance" value=""/> + <loadproperties srcFile="${basedir}/nbproject/private/private.properties"/> + <jbi-deploy-service-assembly serviceAssemblyID="${jbi.service-assembly.id}" serviceAssemblyLocation="${basedir}/${dist.jar}" netBeansUserDir="${netbeans.user}" j2eeServerInstance="${j2ee.server.instance}"/> + </target> + <target name="undeploy" depends="init"> + <property name="j2ee.server.instance" value=""/> + <loadproperties srcFile="${basedir}/nbproject/private/private.properties"/> + <jbi-deploy-service-assembly undeployServiceAssembly="true" serviceAssemblyID="${jbi.service-assembly.id}" serviceAssemblyLocation="${basedir}/${dist.jar}" netBeansUserDir="${netbeans.user}" j2eeServerInstance="${j2ee.server.instance}"/> + </target> + <target name="-pre-debug"> + <property name="inDebug" value="true"/> + <setup-debug-environment netBeansUserDir="${netbeans.user}" j2eeServerInstance="${j2ee.server.instance}"/> + </target> + <target name="-post-debug"> + <property name="inDebug" value="false"/> + <teardown-debug-environment netBeansUserDir="${netbeans.user}" j2eeServerInstance="${j2ee.server.instance}"/> + </target> + <!-- + DEBUGGING SECTION + --> + <target name="debug" description="Debug project in IDE." depends="run,-pre-debug" if="netbeans.home"/> + <target name="pre-debug-fix" depends="init"> + <fail unless="fix.includes">Must set fix.includes</fail> + <property name="javac.includes" value="${fix.includes}.java"/> + </target> + <target name="do-debug-fix" if="netbeans.home" depends="init,pre-debug-fix,compile-single"> + <j2seproject:nbjpdareload xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"/> + </target> + <target name="debug-fix" if="netbeans.home" depends="init,pre-debug-fix,do-debug-fix"/> + <!-- + CLEANUP SECTION + --> + <target name="deps-clean" depends="init" unless="${no.dependencies}"> + <ant target="clean" inheritall="false" antfile="${project.CorrelationTest}/build.xml"/> + </target> + <target name="do-clean" depends="init"> + <delete dir="${build.dir}"/> + <delete dir="${dist.dir}"/> + <delete dir="${source.root}/jbiServiceUnits"/> + </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,deps-clean,do-clean,post-clean" description="Clean build products."/> + <target name="jbi-clean-config" depends="init,clear-casa,jbi-clean-build" description="Clean service assembly."/> + <target name="clear-casa"> + <delete file="${source.root}/conf/${jbi.service-assembly.id}.casa"/> + <delete file="${src.dir}/${jbi.service-assembly.id}.wsdl"/> + </target> + <!-- + JUNIT EXECUTION SECTION + ======================= + --> + <target name="-pre-test-run" if="have.tests" depends="init"> + <mkdir dir="${test.results.dir}"/> + <path id="unit.test.classpath"> + <pathelement path="${soa.module.install.dir}/org-netbeans-modules-compapp-manager-jbi.jar"/> + <pathelement path="${soa.module.install.dir}/org-netbeans-modules-compapp-projects-jbi.jar"/> + <pathelement path="${soa.module.install.dir}/ext/jbi/jbi-admin-common.jar"/> + <pathelement path="${soa.module.install.dir}/ext/jbi/catd.jar"/> + <pathelement path="${java.module.install.dir}/ext/junit-3.8.2.jar"/> + <pathelement path="${java.module.install.dir}/ext/jaxws21/api/saaj-api.jar"/> + <pathelement path="${java.module.install.dir}/ext/jaxws21/saaj-impl.jar"/> + <pathelement path="${java.module.install.dir}/ext/jaxws21/FastInfoset.jar"/> + <pathelement path="${ide.module.install.dir}/org-netbeans-modules-editor-lib.jar"/> + <pathelement path="${ide.module.install.dir}/org-netbeans-modules-editor.jar"/> + <pathelement path="${ide.module.install.dir}/org-netbeans-modules-editor-util.jar"/> + <pathelement path="${ide.module.install.dir}/org-netbeans-modules-editor-lib2.jar"/> + <pathelement path="${ide.module.install.dir}/org-netbeans-modules-editor-indent.jar"/> + <pathelement path="${ide.module.install.dir}/org-netbeans-modules-editor-plain.jar"/> + <pathelement path="${ide.module.install.dir}/org-netbeans-modules-editor-plain-lib.jar"/> + <pathelement path="${ide.module.install.dir}/org-netbeans-modules-editor-settings.jar"/> + <pathelement path="${ide.module.install.dir}/org-netbeans-modules-editor-settings-storage.jar"/> + <pathelement path="${ide.module.install.dir}/org-netbeans-modules-lexer.jar"/> + <pathelement path="${ide.module.install.dir}/org-netbeans-modules-xml-core.jar"/> + <pathelement path="${ide.module.install.dir}/org-netbeans-modules-xml-lexer.jar"/> + <pathelement path="${ide.module.install.dir}/org-netbeans-modules-xml-text.jar"/> + <pathelement path="${ide.module.install.dir}/org-netbeans-modules-xml-xdm.jar"/> + <pathelement path="${ide.module.install.dir}/org-netbeans-modules-xml-xam.jar"/> + <pathelement path="${ide.module.install.dir}/ext/jaxb/activation.jar"/> + <pathelement path="${netbeans.home}/lib/org-openide-modules.jar"/> + <pathelement path="${netbeans.home}/lib/org-openide-util.jar"/> + <pathelement path="${netbeans.home}/modules/org-openide-options.jar"/> + <pathelement path="${netbeans.home}/modules/org-openide-text.jar"/> + <pathelement path="${netbeans.home}/modules/org-openide-loaders.jar"/> + <pathelement path="${netbeans.home}/modules/org-openide-nodes.jar"/> + <pathelement path="${netbeans.home}/modules/org-netbeans-modules-editor-mimelookup.jar"/> + <pathelement path="${netbeans.home}/modules/org-netbeans-modules-editor-mimelookup-impl.jar"/> + <pathelement path="${netbeans.home}/core/org-openide-filesystems.jar"/> + </path> + </target> + <target name="-do-test-run" if="netbeans.home+have.tests" depends="init,-pre-test-run"> + <junit showoutput="true" fork="yes" dir="${basedir}" failureproperty="tests.failed" errorproperty="tests.failed"> + <classpath refid="unit.test.classpath"/> + <sysproperty key="NetBeansUserDir" value="${netbeans.user}"/> + <test name="org.netbeans.modules.compapp.catd.ConfiguredTest" haltonfailure="no" todir="${test.results.dir}"/> + <syspropertyset> + <propertyref prefix="test-sys-prop."/> + <mapper to="*" from="test-sys-prop.*" type="glob"/> + </syspropertyset> + <formatter usefile="false" type="brief"/> + <formatter type="xml"/> + </junit> + </target> + <target name="-do-single-test-run" if="netbeans.home+have.tests" depends="init,-pre-test-run"> + <junit showoutput="true" fork="yes" dir="${basedir}" failureproperty="tests.failed" errorproperty="tests.failed"> + <classpath refid="unit.test.classpath"/> + <sysproperty key="NetBeansUserDir" value="${netbeans.user}"/> + <sysproperty key="inDebug" value="${inDebug}"/> + <test name="org.netbeans.modules.compapp.catd.ConfiguredTest" haltonfailure="no" todir="${test.results.dir}"/> + <syspropertyset> + <propertyref prefix="test-sys-prop."/> + <mapper to="*" from="test-sys-prop.*" type="glob"/> + </syspropertyset> + <formatter usefile="false" type="brief"/> + <formatter type="xml"/> + </junit> + </target> + <target name="-post-test-run" if="have.tests" depends="init,-pre-test-run,-do-test-run"> + <fail if="tests.failed">Some tests failed; see details above.</fail> + </target> + <target name="-post-single-test-run" if="have.tests" depends="init,-pre-test-run,-do-single-test-run"> + <fail if="tests.failed">Some tests failed; see details above.</fail> + </target> + <target name="test-report" if="have.tests" depends="init"/> + <target name="-test-browse" if="netbeans.home+have.tests" depends="init"/> + <target name="test" depends="init,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests."/> + <target name="test-single" depends="init,-pre-test-run,-do-single-test-run,test-report,-post-single-test-run,-test-browse" description="Run unit tests."/> + <target name="debug-single" depends="init,-pre-test-run,-pre-debug,-do-single-test-run,-post-debug,test-report,-post-single-test-run,-test-browse" description="Debug unit tests."/> + <target name="-post-unit-test-run" if="have.tests+tests.failed" depends="init,-pre-test-run,-do-test-run"> + <echo>Some tests failed; see details above.</echo> + </target> + <target name="unit-test" depends="init,-pre-test-run,-do-test-run,test-report,-post-unit-test-run,-test-browse" description="Run unit tests in a batch."/> + <target name="jbi-unit-test" depends="run,unit-test,undeploy" description="build, deploy, test, and undeploy."/> +</project> Added: trunk/sandbox/CorrelationTestCA/nbproject/genfiles.properties =================================================================== --- trunk/sandbox/CorrelationTestCA/nbproject/genfiles.properties (rev 0) +++ trunk/sandbox/CorrelationTestCA/nbproject/genfiles.properties 2009-01-23 11:54:21 UTC (rev 4901) @@ -0,0 +1,8 @@ +build.xml.data.CRC32=b306962b +build.xml.script.CRC32=152ee0d9 +build.xml.stylesheet.CRC32=fe0f5af2 +# 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=b306962b +nbproject/build-impl.xml.script.CRC32=32559d2d +nbproject/build-impl.xml.stylesheet.CRC32=7b44c5c7 Added: trunk/sandbox/CorrelationTestCA/nbproject/project.properties =================================================================== --- trunk/sandbox/CorrelationTestCA/nbproject/project.properties (rev 0) +++ trunk/sandbox/CorrelationTestCA/nbproject/project.properties 2009-01-23 11:54:21 UTC (rev 4901) @@ -0,0 +1,43 @@ +build.classes.dir=${build.dir}/jar +build.classes.excludes=**/*.java,**/*.form,**/.nbattrs +build.dir=build +build.generated.dir=${build.dir}/generated +com.sun.jbi.routing=true +com.sun.jbi.sa.internal.routing=true +debug.classpath=${javac.classpath}:${build.classes.dir} +dist.dir=dist +dist.jar=${dist.dir}/CorrelationTestCA.zip +dist.javadoc.dir=${dist.dir}/javadoc +j2ee.platform=1.4 +jar.compress=false +javac.debug=true +javac.deprecation=false +javac.source=1.4 +javac.target=1.4 +javadoc.author=false +javadoc.encoding= +javadoc.noindex=false +javadoc.nonavbar=false +javadoc.notree=false +javadoc.preview=true +javadoc.private=false +javadoc.splitindex=true +javadoc.use=true +javadoc.version=false +javadoc.windowtitle= +jbi.content.additional=${reference.CorrelationTest.dist_se} +jbi.content.component=sun-bpel-engine +jbi.service-assembly.description=Represents the Service Assembly of CorrelationTestCA +jbi.service-assembly.id=CorrelationTestCA +jbi.service-unit.description=Represents this Service Unit +meta.inf=${source.root}/conf +platform.active=default_platform +project.CorrelationTest=../CorrelationTest +reference.CorrelationTest.dist_se=${project.CorrelationTest}/build/SEDeployment.jar +resource.CorrelationTest=${project.CorrelationTest}/setup +source.encoding=UTF-8 +source.root=src +src.build.dir=${source.root}/jbiServiceUnits +src.dir=${source.root}/jbiasa +test.dir=test +test.results.dir=${basedir}/test/results Added: trunk/sandbox/CorrelationTestCA/nbproject/project.xml =================================================================== --- trunk/sandbox/CorrelationTestCA/nbproject/project.xml (rev 0) +++ trunk/sandbox/CorrelationTestCA/nbproject/project.xml 2009-01-23 11:54:21 UTC (rev 4901) @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://www.netbeans.org/ns/project/1"> + <type>org.netbeans.modules.compapp.projects.jbi</type> + <configuration> + <data xmlns="http://www.netbeans.org/ns/j2ee-jbi/1"> + <name>CorrelationTestCA</name> + <minimum-ant-version>1.6</minimum-ant-version> + <included-library>reference.CorrelationTest.dist_se</included-library> + </data> + <references xmlns="http://www.netbeans.org/ns/ant-project-references/1"> + <reference> + <foreign-project>CorrelationTest</foreign-project> + <artifact-type>CAPS.asa:sun-bpel-engine</artifact-type> + <script>build.xml</script> + <target>dist_se</target> + <clean-target>clean</clean-target> + <id>dist_se</id> + </reference> + </references> + </configuration> +</project> Property changes on: trunk/sandbox/CorrelationTestCA/src ___________________________________________________________________ Added: svn:ignore + jbiServiceUnits Added: trunk/sandbox/CorrelationTestCA/src/conf/AssemblyInformation.xml =================================================================== --- trunk/sandbox/CorrelationTestCA/src/conf/AssemblyInformation.xml (rev 0) +++ trunk/sandbox/CorrelationTestCA/src/conf/AssemblyInformation.xml 2009-01-23 11:54:21 UTC (rev 4901) @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<jbi xmlns="http://java.sun.com/xml/ns/jbi" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0" xsi:schemaLocation="http://java.sun.com/xml/ns/jbi ./jbi.xsd"> + <service-assembly> + <identification> + <name>CorrelationTestCA</name> + <description>Represents the Service Assembly of CorrelationTestCA</description> + </identification> + <service-unit> + <identification> + <name>CorrelationTestCA-CorrelationTest</name> + <description>Represents this Service Unit</description> + </identification> + <target> + <artifacts-zip>CorrelationTest.jar</artifacts-zip> + <component-name>sun-bpel-engine</component-name> + </target> + </service-unit> + <service-unit> + <identification> + <name>CorrelationTestCA-sun-file-binding</name> + <description>Represents this Service Unit</description> + </identification> + <target> + <artifacts-zip>sun-file-binding.jar</artifacts-zip> + <component-name>sun-file-binding</component-name> + </target> + </service-unit> + <service-unit> + <identification> + <name>CorrelationTestCA-sun-http-binding</name> + <description>Represents this Service Unit</description> + </identification> + <target> + <artifacts-zip>sun-http-binding.jar</artifacts-zip> + <component-name>sun-http-binding</component-name> + </target> + </service-unit> + <service-unit> + <identification> + <name>CorrelationTestCA-sun-jms-binding</name> + <description>Represents this Service Unit</description> + </identification> + <target> + <artifacts-zip>sun-jms-binding.jar</artifacts-zip> + <component-name>sun-jms-binding</component-name> + </target> + </service-unit> + </service-assembly> +</jbi> Added: trunk/sandbox/CorrelationTestCA/src/conf/BindingComponentInformation.xml =================================================================== --- trunk/sandbox/CorrelationTestCA/src/conf/BindingComponentInformation.xml (rev 0) +++ trunk/sandbox/CorrelationTestCA/src/conf/BindingComponentInformation.xml 2009-01-23 11:54:21 UTC (rev 4901) @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<component-info-list> + <component-info> + <description>File Binding</description> + <name>sun-file-binding</name> + <state>Installed</state> + <type>Binding</type> + <xmlns>http://schemas.sun.com/jbi/wsdl-extensions/file/</xmlns> + </component-info> + <component-info> + <description>HTTP Soap Binding to send SOAP messages e.g. to and from BPEL service engine.</description> + <name>sun-http-binding</name> + <state>Installed</state> + <type>Binding</type> + <xmlns>http://schemas.xmlsoap.org/wsdl/http/</xmlns> + <xmlns>http://schemas.xmlsoap.org/wsdl/soap/</xmlns> + </component-info> + <component-info> + <description>JMS Binding</description> + <name>sun-jms-binding</name> + <state>Installed</state> + <type>Binding</type> + <xmlns>http://schemas.sun.com/jbi/wsdl-extensions/jms/</xmlns> + </component-info> +</component-info-list> Added: trunk/sandbox/CorrelationTestCA/src/conf/ComponentInformation.xml =================================================================== --- trunk/sandbox/CorrelationTestCA/src/conf/ComponentInformation.xml (rev 0) +++ trunk/sandbox/CorrelationTestCA/src/conf/ComponentInformation.xml 2009-01-23 11:54:21 UTC (rev 4901) @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<component-info-list> + <component-info> + <description>File Binding</description> + <name>sun-file-binding</name> + <state>Installed</state> + <type>Binding</type> + </component-info> + <component-info> + <description>HTTP Soap Binding to send SOAP messages e.g. to and from BPEL service engine.</description> + <name>sun-http-binding</name> + <state>Installed</state> + <type>Binding</type> + </component-info> + <component-info> + <description>JMS Binding</description> + <name>sun-jms-binding</name> + <state>Installed</state> + <type>Binding</type> + </component-info> + <component-info> + <description>This is a bpel service engine.</description> + <name>sun-bpel-engine</name> + <state>Installed</state> + <type>Engine</type> + </component-info> + <component-info> + <description>Java EE service engine.</description> + <name>sun-javaee-engine</name> + <state>Installed</state> + <type>Engine</type> + </component-info> + <component-info> + <description>This is a sql service engine.</description> + <name>sun-sql-engine</name> + <state>Installed</state> + <type>Engine</type> + </component-info> + <component-info> + <description>This is a xslt service engine.</description> + <name>sun-xslt-engine</name> + <state>Installed</state> + <type>Engine</type> + </component-info> +</component-info-list> Added: trunk/sandbox/CorrelationTestCA/src/conf/CorrelationTestCA.casa =================================================================== --- trunk/sandbox/CorrelationTestCA/src/conf/CorrelationTestCA.casa (rev 0) +++ trunk/sandbox/CorrelationTestCA/src/conf/CorrelationTestCA.casa 2009-01-23 11:54:21 UTC (rev 4901) @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<casa xmlns="http://java.sun.com/xml/ns/casa" xmlns:ns1="http://j2ee.netbeans.org/wsdl/CorrelationProcess" xmlns:ns2="http://j2ee.netbeans.org/wsdl/CorrelationClient" xmlns:ns3="http://enterprise.netbeans.org/bpel/CorrelationTest/CorrelationClient" xmlns:ns4="http://enterprise.netbeans.org/bpel/CorrelationTest/CorrelationProcess" xmlns:xlink="http://www.w3.org/2000/xlink"> + <endpoints> + <endpoint endpoint-name="CorrelationProcessPortTypeBindingPort" interface-name="ns1:CorrelationProcessPortType" name="endpoint1" service-name="ns1:CorrelationProcessService"/> + <endpoint endpoint-name="CorrelationClientPortTypeBindingPort" interface-name="ns2:CorrelationClientPortType" name="endpoint2" service-name="ns2:CorrelationClientService"/> + <endpoint display-name="PartnerLink1" endpoint-name="CorrelationClientPortTypeRole_myRole" file-path="CorrelationClient.bpel" interface-name="ns2:CorrelationClientPortType" name="endpoint3" process-name="CorrelationClient" service-name="ns3:PartnerLink1"/> + <endpoint display-name="PartnerLink3" endpoint-name="CorrelationProcessPortTypeRole_myRole" file-path="CorrelationProcess.bpel" interface-name="ns1:CorrelationProcessPortType" name="endpoint4" process-name="CorrelationProcess" service-name="ns4:PartnerLink3"/> + <endpoint display-name="PartnerLink2" endpoint-name="CorrelationProcessPortTypeRole_partnerRole" file-path="CorrelationClient.bpel" interface-name="ns1:CorrelationProcessPortType" name="endpoint5" process-name="CorrelationClient" service-name="ns3:PartnerLink2"/> + <endpoint display-name="PartnerLink2" endpoint-name="CorrelationClientPortTypeRole_partnerRole" file-path="CorrelationProcess.bpel" interface-name="ns2:CorrelationClientPortType" name="endpoint6" process-name="CorrelationProcess" service-name="ns4:PartnerLink2"/> + </endpoints> + <service-units> + <service-engine-service-unit artifacts-zip="CorrelationTest.jar" component-name="sun-bpel-engine" defined="true" description="Represents this Service Unit" internal="true" name="CorrelationTestCA-CorrelationTest" unit-name="CorrelationTest" unknown="false" x="144" y="99"> + <provides endpoint="endpoint3"/> + <provides endpoint="endpoint4"/> + <consumes endpoint="endpoint5"/> + <consumes endpoint="endpoint6"/> + </service-engine-service-unit> + <binding-component-service-unit artifacts-zip="sun-http-binding.jar" component-name="sun-http-binding" description="Represents this Service Unit" name="CorrelationTestCA-sun-http-binding" unit-name="sun-http-binding"> + <ports> + <port x="67" y="303"> + <link xlink:href="../jbiServiceUnits/CorrelationTest/CorrelationClient.wsdl#xpointer(/definitions/service[@name='CorrelationClientService']/port[@name='CorrelationClientPortTypeBindingPort'])" xlink:type="simple"/> + <consumes endpoint="endpoint2"/> + <provides endpoint="endpoint2"/> + </port> + <port x="67" y="39"> + <link xlink:href="../jbiServiceUnits/CorrelationTest/CorrelationProcess.wsdl#xpointer(/definitions/service[@name='CorrelationProcessService']/port[@name='CorrelationProcessPortTypeBindingPort'])" xlink:type="simple"/> + <consumes endpoint="endpoint1"/> + <provides endpoint="endpoint1"/> + </port> + </ports> + </binding-component-service-unit> + </service-units> + <connections> + <connection consumer="endpoint2" provider="endpoint3" state="unchanged"/> + <connection consumer="endpoint1" provider="endpoint4" state="unchanged"/> + <connection consumer="endpoint5" provider="endpoint1" state="unchanged"> + <redelivery xmlns="http://www.sun.com/jbi/qos/redelivery" maxAttempts="20" waitTime="300"> + <on-failure> + <delete/> + </on-failure> + </redelivery> + </connection> + <connection consumer="endpoint6" provider="endpoint3" state="unchanged"/> + </connections> + <porttypes> + <link xlink:href="../jbiServiceUnits/CorrelationTest/CorrelationClient.wsdl#xpointer(/definitions/portType[@name='CorrelationClientPortType'])" xlink:type="simple"/> + <link xlink:href="../jbiServiceUnits/CorrelationTest/CorrelationProcess.wsdl#xpointer(/definitions/portType[@name='CorrelationProcessPortType'])" xlink:type="simple"/> + </porttypes> + <bindings> + <link xlink:href="../jbiServiceUnits/CorrelationTest/CorrelationClient.wsdl#xpointer(/definitions/binding[@name='CorrelationClientPortTypeBinding'])" xlink:type="simple"/> + <link xlink:href="../jbiServiceUnits/CorrelationTest/CorrelationProcess.wsdl#xpointer(/definitions/binding[@name='CorrelationProcessPortTypeBinding'])" xlink:type="simple"/> + </bindings> + <services> + <link xlink:href="../jbiServiceUnits/CorrelationTest/CorrelationClient.wsdl#xpointer(/definitions/service[@name='CorrelationClientService'])" xlink:type="simple"/> + <link xlink:href="../jbiServiceUnits/CorrelationTest/CorrelationProcess.wsdl#xpointer(/definitions/service[@name='CorrelationProcessService'])" xlink:type="simple"/> + </services> + <regions> + <region name="WSDL Endpoints" width="150"/> + <region name="JBI Modules" width="500"/> + <region name="External Modules" width="200"/> + </regions> +</casa> Added: trunk/sandbox/CorrelationTestCA/src/conf/connections.xml =================================================================== --- trunk/sandbox/CorrelationTestCA/src/conf/connections.xml (rev 0) +++ trunk/sandbox/CorrelationTestCA/src/conf/connections.xml 2009-01-23 11:54:21 UTC (rev 4901) @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<jbi xmlns="http://java.sun.com/xml/ns/jbi" xmlns:ns1="http://j2ee.netbeans.org/wsdl/CorrelationClient" xmlns:ns2="http://enterprise.netbeans.org/bpel/CorrelationTest/CorrelationClient" xmlns:ns3="http://j2ee.netbeans.org/wsdl/CorrelationProcess" xmlns:ns4="http://enterprise.netbeans.org/bpel/CorrelationTest/CorrelationProcess" version="1.0"> + <service-assembly> + <identification> + <name>CorrelationTestCA</name> + <description>Represents the Service Assembly of CorrelationTestCA</description> + </identification> + <connections> + <connection> + <consumer endpoint-name="CorrelationClientPortTypeBindingPort" service-name="ns1:CorrelationClientService"/> + <provider endpoint-name="CorrelationClientPortTypeRole_myRole" service-name="ns2:PartnerLink1"/> + </connection> + <connection> + <consumer endpoint-name="CorrelationProcessPortTypeBindingPort" service-name="ns3:CorrelationProcessService"/> + <provider endpoint-name="CorrelationProcessPortTypeRole_myRole" service-name="ns4:PartnerLink3"/> + </connection> + <connection> + <consumer endpoint-name="CorrelationProcessPortTypeRole_partnerRole" service-name="ns2:PartnerLink2"/> + <provider endpoint-name="CorrelationProcessPortTypeBindingPort" service-name="ns3:CorrelationProcessService"/> + </connection> + <connection> + <consumer endpoint-name="CorrelationClientPortTypeRole_partnerRole" service-name="ns4:PartnerLink2"/> + <provider endpoint-name="CorrelationClientPortTypeRole_myRole" service-name="ns2:PartnerLink1"/> + </connection> + </connections> + <connections xmlns="http://www.sun.com/jbi/qos"> + <connection> + <consumer endpoint-name="CorrelationProcessPortTypeRole_partnerRole" service-name="ns2:PartnerLink2"/> + <provider endpoint-name="CorrelationProcessPortTypeBindingPort" service-name="ns3:CorrelationProcessService"/> + <redelivery xmlns="http://www.sun.com/jbi/qos/redelivery" maxAttempts="20" waitTime="300"> + <on-failure> + <delete/> + </on-failure> + </redelivery> + </connection> + </connections> + </service-assembly> +</jbi> Property changes on: trunk/sandbox/CorrelationTestCA/test ___________________________________________________________________ Added: svn:ignore + results Added: trunk/sandbox/CorrelationTestCA/test/TestCase1/Concurrent.properties =================================================================== --- trunk/sandbox/CorrelationTestCA/test/TestCase1/Concurrent.properties (rev 0) +++ trunk/sandbox/CorrelationTestCA/test/TestCase1/Concurrent.properties 2009-01-23 11:54:21 UTC (rev 4901) @@ -0,0 +1,13 @@ +calculatethroughput=false +#comparisontype's possible values: identical|binary|equals +comparisontype=identical +concurrentthreads=1 +description=testcase TestCase1 +destination=http://localhost:${HttpDefaultPort}/CorrelationClientService/CorrelationClientPortTypeBindingPort +#featurestatus's possible values: progress|done +featurestatus=done +inputfile=Input.xml +invokesperthread=1 +outputfile=Output.xml +soapaction= +testtimeout=30 Added: trunk/sandbox/CorrelationTestCA/test/TestCase1/Input.xml =================================================================== --- trunk/sandbox/CorrelationTestCA/test/TestCase1/Input.xml (rev 0) +++ trunk/sandbox/CorrelationTestCA/test/TestCase1/Input.xml 2009-01-23 11:54:21 UTC (rev 4901) @@ -0,0 +1,10 @@ +<soapenv:Envelope xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:cor="http://j2ee.netbeans.org/wsdl/CorrelationClient" xmlns:cor1="http://xml.netbeans.org/schema/CorrelationTest"> + <soapenv:Body> + <cor:CorrelationClientOperation> + <request> + <cor1:id>correlationId</cor1:id> + <cor1:param>parameter</cor1:param> + </request> + </cor:CorrelationClientOperation> + </soapenv:Body> +</soapenv:Envelope> \ No newline at end of file Added: trunk/sandbox/CorrelationTestCA/test/TestCase1/Output.xml =================================================================== --- trunk/sandbox/CorrelationTestCA/test/TestCase1/Output.xml (rev 0) +++ trunk/sandbox/CorrelationTestCA/test/TestCase1/Output.xml 2009-01-23 11:54:21 UTC (rev 4901) @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ http://schemas.xmlsoap.org/soap/envelope/"> + <SOAP-ENV:Body> + <SOAP-ENV:Fault> + <faultcode xmlns="">SOAP-ENV:Server</faultcode> + <faultstring xmlns="">BPCOR-6135:A fault was not handled in the process scope; Fault Name is {http://docs.oasis-open.org/wsbpel/2.0/process/executable}correlationViolation; Fault Data is null. Sending errors for the pending requests in the process scope before terminating the process instance</faultstring> + <faultactor xmlns="">sun-bpel-engine</faultactor> + <detail xmlns=""> + <detailText>BPCOR-6135:A fault was not handled in the process scope; Fault Name is {http://docs.oasis-open.org/wsbpel/2.0/process/executable}correlationViolation; Fault Data is null. Sending errors for the pending requests in the process scope before terminating the process instance</detailText> + </detail> + </SOAP-ENV:Fault> + </SOAP-ENV:Body> +</SOAP-ENV:Envelope> Added: trunk/sandbox/CorrelationTestCA/test/selected-tests.properties =================================================================== --- trunk/sandbox/CorrelationTestCA/test/selected-tests.properties (rev 0) +++ trunk/sandbox/CorrelationTestCA/test/selected-tests.properties 2009-01-23 11:54:21 UTC (rev 4901) @@ -0,0 +1 @@ +testcases=TestCase1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2009-01-08 14:33:37
|
Revision: 4897 http://openuss.svn.sourceforge.net/openuss/?rev=4897&view=rev Author: roekens Date: 2009-01-08 14:33:24 +0000 (Thu, 08 Jan 2009) Log Message: ----------- Add @XmlSchema configuration. Added Paths: ----------- trunk/openuss-plexus/plexus/plexus-remote/src/main/java/org/openuss/services/model/package-info.java Added: trunk/openuss-plexus/plexus/plexus-remote/src/main/java/org/openuss/services/model/package-info.java =================================================================== --- trunk/openuss-plexus/plexus/plexus-remote/src/main/java/org/openuss/services/model/package-info.java (rev 0) +++ trunk/openuss-plexus/plexus/plexus-remote/src/main/java/org/openuss/services/model/package-info.java 2009-01-08 14:33:24 UTC (rev 4897) @@ -0,0 +1,5 @@ +@XmlSchema(elementFormDefault=XmlNsForm.QUALIFIED, namespace="http://www.openuss.org/services/DataTypes") +package org.openuss.services.model; + +import javax.xml.bind.annotation.XmlNsForm; +import javax.xml.bind.annotation.XmlSchema; Property changes on: trunk/openuss-plexus/plexus/plexus-remote/src/main/java/org/openuss/services/model/package-info.java ___________________________________________________________________ Added: svn:mime-type + text/plain This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2008-12-16 15:39:50
|
Revision: 4896 http://openuss.svn.sourceforge.net/openuss/?rev=4896&view=rev Author: idueppe Date: 2008-12-16 15:39:44 +0000 (Tue, 16 Dec 2008) Log Message: ----------- Fixed the SOAP Exception problem. I needed set the soapAction attribute in <soap:oaration> of the binding in the CSEImproveCA.wsdl file. But now I have still the problem, that no data is in the CourseType part parameter of the EJB. Modified Paths: -------------- trunk/sandbox/CSEImproveCA/src/conf/CSEImproveCA.casa trunk/sandbox/CSEImproveCA/src/conf/connections.xml trunk/sandbox/CSEImproveCA/src/jbiasa/CSEImproveCA.wsdl Modified: trunk/sandbox/CSEImproveCA/src/conf/CSEImproveCA.casa =================================================================== --- trunk/sandbox/CSEImproveCA/src/conf/CSEImproveCA.casa 2008-12-16 15:00:05 UTC (rev 4895) +++ trunk/sandbox/CSEImproveCA/src/conf/CSEImproveCA.casa 2008-12-16 15:39:44 UTC (rev 4896) @@ -1,25 +1,26 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<casa xmlns="http://java.sun.com/xml/ns/casa" xmlns:ns1="http://cse.campussource.de/lsf/wsdl/LSFSynchronizationMessage" xmlns:ns2="http://cse.campussource.de/lsf/wsdl/SynchronizationMessage" xmlns:ns3="http://cse.campussource.de/cse/wsdl/CourseWrapper" xmlns:ns4="http://cse.campussource.de/cse/wsdl/Course" xmlns:ns5="CSEImproveCA" xmlns:ns6="http://cse.campussource/cse/bpel/CreateCourse" xmlns:ns7="http://enterprise.netbeans.org/bpel/CSEImprove/SplittSyncMessage" xmlns:ns8="http://cse.campussource.de/lsf/bpel/SyncMsgTransformation" xmlns:ns9="http://cse.campussource.de/cse/wsdl/LMSGenericAdapter" xmlns:xlink="http://www.w3.org/2000/xlink"> +<casa xmlns="http://java.sun.com/xml/ns/casa" xmlns:ns1="http://cse.campussource.de/lsf/wsdl/LSFSynchronizationMessage" xmlns:ns2="http://cse.campussource.de/lsf/wsdl/SynchronizationMessage" xmlns:ns3="http://cse.campussource.de/cse/wsdl/CourseWrapper" xmlns:ns4="http://cse.campussource.de/cse/wsdl/Course" xmlns:ns5="CSEImproveCA" xmlns:ns6="http://cse.campussource.de/cse/wsdl/LMSGenericAdapter" xmlns:ns7="http://cse.campussource/cse/bpel/CreateCourse" xmlns:ns8="http://enterprise.netbeans.org/bpel/CSEImprove/SplittSyncMessage" xmlns:ns9="http://cse.campussource.de/lsf/bpel/SyncMsgTransformation" xmlns:xlink="http://www.w3.org/2000/xlink"> <endpoints> <endpoint endpoint-name="LSFSynchronizationMessagePort" interface-name="ns1:LSFSynchronizationMessagePortType" name="endpoint1" service-name="ns1:LSFSynchronizationMessageService"/> <endpoint endpoint-name="SynchronizationMessagePort" interface-name="ns2:SynchronizationMessagePortType" name="endpoint2" service-name="ns2:SynchronizationMessageService"/> <endpoint endpoint-name="CoursePortTypeBindingPort" interface-name="ns4:CoursePortType" name="endpoint3" service-name="ns3:CourseService"/> <endpoint endpoint-name="FileImport" interface-name="ns1:LSFSynchronizationMessagePortType" name="endpoint4" service-name="ns5:casaService1"/> - <endpoint display-name="CoursePLink" endpoint-name="CoursePortTypeRole_myRole" file-path="CSE\CreateCourse.bpel" interface-name="ns4:CoursePortType" name="endpoint5" process-name="CreateCourse" service-name="ns6:CoursePLink"/> - <endpoint display-name="SyncMsgPLink" endpoint-name="SynchronizationMessagePortTypeRole_myRole" file-path="LSF\SplittSyncMessage.bpel" interface-name="ns2:SynchronizationMessagePortType" name="endpoint6" process-name="SplittSyncMessage" service-name="ns7:SyncMsgPLink"/> - <endpoint display-name="LSFPLink" endpoint-name="LSFSynchronizationMessagePortTypeRole_myRole" file-path="LSF\TransformLSFSyncMsg.bpel" interface-name="ns1:LSFSynchronizationMessagePortType" name="endpoint7" process-name="SyncMsgTransformation" service-name="ns8:LSFPLink"/> - <endpoint display-name="GeneryAdapterPLink" endpoint-name="LMSGenericAdapterPortTypeRole_partnerRole" file-path="CSE\CreateCourse.bpel" interface-name="ns9:LMSGenericAdapterPortType" name="endpoint8" process-name="CreateCourse" service-name="ns6:GeneryAdapterPLink"/> - <endpoint display-name="CoursePLink" endpoint-name="CoursePortTypeRole_partnerRole" file-path="LSF\SplittSyncMessage.bpel" interface-name="ns4:CoursePortType" name="endpoint9" process-name="SplittSyncMessage" service-name="ns7:CoursePLink"/> - <endpoint display-name="SyncMsgPLink" endpoint-name="SynchronizationMessagePortTypeRole_partnerRole" file-path="LSF\TransformLSFSyncMsg.bpel" interface-name="ns2:SynchronizationMessagePortType" name="endpoint10" process-name="SyncMsgTransformation" service-name="ns8:SyncMsgPLink"/> + <endpoint endpoint-name="LMSTestClientPort" interface-name="ns6:LMSGenericAdapterPortType" name="endpoint5" service-name="ns5:LMSTestClientService"/> + <endpoint display-name="CoursePLink" endpoint-name="CoursePortTypeRole_myRole" file-path="CSE\CreateCourse.bpel" interface-name="ns4:CoursePortType" name="endpoint6" process-name="CreateCourse" service-name="ns7:CoursePLink"/> + <endpoint display-name="SyncMsgPLink" endpoint-name="SynchronizationMessagePortTypeRole_myRole" file-path="LSF\SplittSyncMessage.bpel" interface-name="ns2:SynchronizationMessagePortType" name="endpoint7" process-name="SplittSyncMessage" service-name="ns8:SyncMsgPLink"/> + <endpoint display-name="LSFPLink" endpoint-name="LSFSynchronizationMessagePortTypeRole_myRole" file-path="LSF\TransformLSFSyncMsg.bpel" interface-name="ns1:LSFSynchronizationMessagePortType" name="endpoint8" process-name="SyncMsgTransformation" service-name="ns9:LSFPLink"/> + <endpoint display-name="GeneryAdapterPLink" endpoint-name="LMSGenericAdapterPortTypeRole_partnerRole" file-path="CSE\CreateCourse.bpel" interface-name="ns6:LMSGenericAdapterPortType" name="endpoint9" process-name="CreateCourse" service-name="ns7:GeneryAdapterPLink"/> + <endpoint display-name="CoursePLink" endpoint-name="CoursePortTypeRole_partnerRole" file-path="LSF\SplittSyncMessage.bpel" interface-name="ns4:CoursePortType" name="endpoint10" process-name="SplittSyncMessage" service-name="ns8:CoursePLink"/> + <endpoint display-name="SyncMsgPLink" endpoint-name="SynchronizationMessagePortTypeRole_partnerRole" file-path="LSF\TransformLSFSyncMsg.bpel" interface-name="ns2:SynchronizationMessagePortType" name="endpoint11" process-name="SyncMsgTransformation" service-name="ns9:SyncMsgPLink"/> </endpoints> <service-units> <service-engine-service-unit artifacts-zip="CSEImprove.jar" component-name="sun-bpel-engine" defined="true" description="Represents this Service Unit" internal="true" name="CSEImproveCA-CSEImprove" unit-name="CSEImprove" unknown="false" x="139" y="99"> - <provides endpoint="endpoint5"/> <provides endpoint="endpoint6"/> <provides endpoint="endpoint7"/> - <consumes endpoint="endpoint8"/> + <provides endpoint="endpoint8"/> <consumes endpoint="endpoint9"/> <consumes endpoint="endpoint10"/> + <consumes endpoint="endpoint11"/> </service-engine-service-unit> <binding-component-service-unit artifacts-zip="sun-file-binding.jar" component-name="sun-file-binding" description="Represents this Service Unit" name="CSEImproveCA-sun-file-binding" unit-name="sun-file-binding"> <ports> @@ -32,6 +33,12 @@ </binding-component-service-unit> <binding-component-service-unit artifacts-zip="sun-http-binding.jar" component-name="sun-http-binding" description="Represents this Service Unit" name="CSEImproveCA-sun-http-binding" unit-name="sun-http-binding"> <ports> + <port bindingType="soap" x="67" y="412"> + <link xlink:href="../jbiasa/CSEImproveCA.wsdl#xpointer(/definitions/service[@name='LMSTestClientService']/port[@name='LMSTestClientPort'])" xlink:type="simple"/> + <consumes endpoint="endpoint5"/> + <provides endpoint="endpoint5"/> + <WsitCallback xmlns="http://www.sun.com/jbi/wsit/callbackproject" CallbackProject=""/> + </port> <port x="67" y="197"> <link xlink:href="../jbiServiceUnits/CSEImprove/CSE/CourseWrapper.wsdl#xpointer(/definitions/service[@name='CourseService']/port[@name='CoursePortTypeBindingPort'])" xlink:type="simple"/> <consumes endpoint="endpoint3"/> @@ -51,7 +58,7 @@ </binding-component-service-unit> </service-units> <connections> - <connection consumer="endpoint4" provider="endpoint7" state="new"> + <connection consumer="endpoint4" provider="endpoint8" state="new"> <redelivery xmlns="http://www.sun.com/jbi/qos/redelivery" maxAttempts="-1" waitTime="1000"> <on-failure> <delete/> @@ -59,11 +66,12 @@ </redelivery> <throttling xmlns="http://www.sun.com/jbi/qos/throttling" maximumConcurrencyLimit="1"/> </connection> - <connection consumer="endpoint1" provider="endpoint7" state="unchanged"/> - <connection consumer="endpoint3" provider="endpoint5" state="unchanged"/> - <connection consumer="endpoint2" provider="endpoint6" state="unchanged"/> + <connection consumer="endpoint1" provider="endpoint8" state="unchanged"/> + <connection consumer="endpoint3" provider="endpoint6" state="unchanged"/> + <connection consumer="endpoint2" provider="endpoint7" state="unchanged"/> + <connection consumer="endpoint9" provider="endpoint5" state="new"/> <connection consumer="endpoint10" provider="endpoint6" state="unchanged"/> - <connection consumer="endpoint9" provider="endpoint5" state="unchanged"/> + <connection consumer="endpoint11" provider="endpoint7" state="unchanged"/> </connections> <porttypes> <link xlink:href="../jbiasa/CSEImproveCA.wsdl#xpointer(/definitions/portType[@name='dummyCasaPortType'])" xlink:type="simple"/> @@ -75,17 +83,21 @@ </porttypes> <bindings> <link xlink:href="../jbiasa/CSEImproveCA.wsdl#xpointer(/definitions/binding[@name='casaBinding1'])" xlink:type="simple"/> + <link xlink:href="../jbiasa/CSEImproveCA.wsdl#xpointer(/definitions/binding[@name='casaBinding2'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImprove/CSE/CourseWrapper.wsdl#xpointer(/definitions/binding[@name='CoursePortTypeBinding'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImprove/LSF/LSFSynchronizationMessage.wsdl#xpointer(/definitions/binding[@name='LSFSynchronizationMessageBinding'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImprove/LSF/SynchronizationMessage.wsdl#xpointer(/definitions/binding[@name='SynchronizationMessageBinding'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImproveCA.wsdl#xpointer(/definitions/binding[@name='casaBinding1'])" xlink:type="simple"/> + <link xlink:href="../jbiServiceUnits/CSEImproveCA.wsdl#xpointer(/definitions/binding[@name='casaBinding2'])" xlink:type="simple"/> </bindings> <services> <link xlink:href="../jbiasa/CSEImproveCA.wsdl#xpointer(/definitions/service[@name='casaService1'])" xlink:type="simple"/> + <link xlink:href="../jbiasa/CSEImproveCA.wsdl#xpointer(/definitions/service[@name='LMSTestClientService'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImprove/CSE/CourseWrapper.wsdl#xpointer(/definitions/service[@name='CourseService'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImprove/LSF/LSFSynchronizationMessage.wsdl#xpointer(/definitions/service[@name='LSFSynchronizationMessageService'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImprove/LSF/SynchronizationMessage.wsdl#xpointer(/definitions/service[@name='SynchronizationMessageService'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImproveCA.wsdl#xpointer(/definitions/service[@name='casaService1'])" xlink:type="simple"/> + <link xlink:href="../jbiServiceUnits/CSEImproveCA.wsdl#xpointer(/definitions/service[@name='LMSTestClientService'])" xlink:type="simple"/> </services> <regions> <region name="WSDL Endpoints" width="150"/> Modified: trunk/sandbox/CSEImproveCA/src/conf/connections.xml =================================================================== --- trunk/sandbox/CSEImproveCA/src/conf/connections.xml 2008-12-16 15:00:05 UTC (rev 4895) +++ trunk/sandbox/CSEImproveCA/src/conf/connections.xml 2008-12-16 15:39:44 UTC (rev 4896) @@ -23,13 +23,17 @@ <provider endpoint-name="SynchronizationMessagePortTypeRole_myRole" service-name="ns7:SyncMsgPLink"/> </connection> <connection> - <consumer endpoint-name="SynchronizationMessagePortTypeRole_partnerRole" service-name="ns2:SyncMsgPLink"/> - <provider endpoint-name="SynchronizationMessagePortTypeRole_myRole" service-name="ns7:SyncMsgPLink"/> + <consumer endpoint-name="LMSGenericAdapterPortTypeRole_partnerRole" service-name="ns5:GeneryAdapterPLink"/> + <provider endpoint-name="LMSTestClientPort" service-name="ns1:LMSTestClientService"/> </connection> <connection> <consumer endpoint-name="CoursePortTypeRole_partnerRole" service-name="ns7:CoursePLink"/> <provider endpoint-name="CoursePortTypeRole_myRole" service-name="ns5:CoursePLink"/> </connection> + <connection> + <consumer endpoint-name="SynchronizationMessagePortTypeRole_partnerRole" service-name="ns2:SyncMsgPLink"/> + <provider endpoint-name="SynchronizationMessagePortTypeRole_myRole" service-name="ns7:SyncMsgPLink"/> + </connection> </connections> <connections xmlns="http://www.sun.com/jbi/qos"> <connection> Modified: trunk/sandbox/CSEImproveCA/src/jbiasa/CSEImproveCA.wsdl =================================================================== --- trunk/sandbox/CSEImproveCA/src/jbiasa/CSEImproveCA.wsdl 2008-12-16 15:00:05 UTC (rev 4895) +++ trunk/sandbox/CSEImproveCA/src/jbiasa/CSEImproveCA.wsdl 2008-12-16 15:39:44 UTC (rev 4896) @@ -9,7 +9,7 @@ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="CSEImproveCA" - xmlns:tns="CSEImproveCA" xmlns:ns="http://cse.campussource.de/lsf/wsdl/LSFSynchronizationMessage" xmlns:file="http://schemas.sun.com/jbi/wsdl-extensions/file/" xmlns:ns1="http://cse.campussource.de/cse/wsdl/LMSGenericAdapter" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:fi="http://java.sun.com/xml/ns/wsit/2006/09/policy/fastinfoset/service" xmlns:tcp="http://java.sun.com/xml/ns/wsit/2006/09/policy/soaptcp/service" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702" xmlns:sc="http://schemas.sun.com/2006/03/wss/server" xmlns:wspp="http://java.sun.com/xml/ns/wsit/policy" xmlns:wsrm="http://docs.oasis-open.org/ws-rx/wsrmp/200702" xmlns:wsoma="http://schemas.xmlsoap.org/ws/2004/09/policy/optimizedmimeserialization"> + xmlns:tns="CSEImproveCA" xmlns:ns="http://cse.campussource.de/lsf/wsdl/LSFSynchronizationMessage" xmlns:file="http://schemas.sun.com/jbi/wsdl-extensions/file/" xmlns:ns1="http://cse.campussource.de/cse/wsdl/LMSGenericAdapter" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:fi="http://java.sun.com/xml/ns/wsit/2006/09/policy/fastinfoset/service" xmlns:tcp="http://java.sun.com/xml/ns/wsit/2006/09/policy/soaptcp/service" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702" xmlns:sc="http://schemas.sun.com/2006/03/wss/server" xmlns:wspp="http://java.sun.com/xml/ns/wsit/policy" xmlns:wsrm="http://docs.oasis-open.org/ws-rx/wsrmp/200702" xmlns:wsoma="http://schemas.xmlsoap.org/ws/2004/09/policy/optimizedmimeserialization" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"> <import namespace="http://cse.campussource.de/lsf/wsdl/LSFSynchronizationMessage" location="../jbiServiceUnits/CSEImprove/LSF/LSFSynchronizationMessage.wsdl"/> <import namespace="http://cse.campussource.de/cse/wsdl/LMSGenericAdapter" location="../jbiServiceUnits/CSEImprove/CSE/LMSGenericAdapter.wsdl"/> <portType name="dummyCasaPortType"/> @@ -25,9 +25,125 @@ </output> </operation> </binding> + <binding name="casaBinding2" type="ns1:LMSGenericAdapterPortType"> + <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> + <operation name="createCourse"> + <soap:operation soapAction="createCourse_action"/> + <input name="inputCreateCourse"> + <soap:body use="literal"/> + </input> + <output name="outputCreateCourse"> + <soap:body use="literal"/> + </output> + <fault name="faultCreateCourse"> + <soap:fault use="literal" name="faultCreateCourse"/> + </fault> + </operation> + <operation name="updateCourse"> + <soap:operation soapAction="updateCourse_action"/> + <input name="inputUpdateCourse"> + <soap:body use="literal"/> + </input> + <output name="outputUpdateCourse"> + <soap:body use="literal"/> + </output> + <fault name="faultUpdateCourse"> + <soap:fault use="literal" name="faultUpdateCourse"/> + </fault> + </operation> + <operation name="deleteCourse"> + <soap:operation soapAction="deleteCourse_action"/> + <input name="inputDeleteCourse"> + <soap:body use="literal"/> + </input> + <output name="outputDeleteCourse"> + <soap:body use="literal"/> + </output> + <fault name="faultDeleteCourse"> + <soap:fault use="literal" name="faultDeleteCourse"/> + </fault> + </operation> + <operation name="createAccount"> + <soap:operation soapAction="createAccount_action"/> + <input name="inputCreateAccount"> + <soap:body use="literal"/> + </input> + <output name="outputCreateAccount"> + <soap:body use="literal"/> + </output> + <fault name="faultCreateAccount"> + <soap:fault use="literal" name="faultCreateAccount"/> + </fault> + </operation> + <operation name="updateAccount"> + <soap:operation soapAction="updateAccount_action"/> + <input name="inputUpdateAccount"> + <soap:body use="literal"/> + </input> + <output name="outputUpdateAccount"> + <soap:body use="literal"/> + </output> + <fault name="faultUpdateAccount"> + <soap:fault use="literal" name="faultUpdateAccount"/> + </fault> + </operation> + <operation name="deleteAccount"> + <soap:operation soapAction="deleteAccount_action"/> + <input name="inputDeleteAccount"> + <soap:body use="literal"/> + </input> + <output name="outputDeleteAccount"> + <soap:body use="literal"/> + </output> + <fault name="faultDeleteAccount"> + <soap:fault use="literal" name="faultDeleteAccount"/> + </fault> + </operation> + <operation name="createCategory"> + <soap:operation soapAction="createCategory_action"/> + <input name="inputCreateCategory"> + <soap:body use="literal"/> + </input> + <output name="outputCreateCategory"> + <soap:body use="literal"/> + </output> + <fault name="faultCreateCategory"> + <soap:fault use="literal" name="faultCreateCategory"/> + </fault> + </operation> + <operation name="updateCategory"> + <soap:operation soapAction="updateCategory_action"/> + <input name="inputUpdateCategory"> + <soap:body use="literal"/> + </input> + <output name="outputUpdateCategory"> + <soap:body use="literal"/> + </output> + <fault name="faultUpdateCategory"> + <soap:fault use="literal" name="faultUpdateCategory"/> + </fault> + </operation> + <operation name="deleteCategory"> + <soap:operation soapAction="deleteCategory_action"/> + <input name="inputDeleteCategory"> + <soap:body use="literal"/> + </input> + <output name="outputDeleteCategory"> + <soap:body use="literal"/> + </output> + <fault name="faultDeleteCategory"> + <soap:fault use="literal" name="faultDeleteCategory"/> + </fault> + </operation> + </binding> <service name="casaService1"> <port name="FileImport" binding="tns:casaBinding1"> <file:address fileDirectory="inbox" lockName="filebc.lck" workArea="filebc_tmp" seqName="filebc.seq" relativePath="true" pathRelativeTo="User Home"/> </port> </service> + <service name="LMSTestClientService"> + <port name="LMSTestClientPort" binding="tns:casaBinding2"> + <soap:address location="http://localhost:8080/LMSGenericAdapterService/LMSTestClient"/> + </port> + </service> </definitions> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2008-12-16 15:00:11
|
Revision: 4895 http://openuss.svn.sourceforge.net/openuss/?rev=4895&view=rev Author: idueppe Date: 2008-12-16 15:00:05 +0000 (Tue, 16 Dec 2008) Log Message: ----------- deployable version removed link to testclient Modified Paths: -------------- trunk/sandbox/CSEImproveCA/src/conf/CSEImproveCA.casa trunk/sandbox/CSEImproveCA/src/conf/connections.xml trunk/sandbox/CSEImproveCA/src/jbiasa/CSEImproveCA.wsdl Modified: trunk/sandbox/CSEImproveCA/src/conf/CSEImproveCA.casa =================================================================== --- trunk/sandbox/CSEImproveCA/src/conf/CSEImproveCA.casa 2008-12-15 20:57:43 UTC (rev 4894) +++ trunk/sandbox/CSEImproveCA/src/conf/CSEImproveCA.casa 2008-12-16 15:00:05 UTC (rev 4895) @@ -1,26 +1,25 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<casa xmlns="http://java.sun.com/xml/ns/casa" xmlns:ns1="http://cse.campussource.de/lsf/wsdl/LSFSynchronizationMessage" xmlns:ns2="http://cse.campussource.de/lsf/wsdl/SynchronizationMessage" xmlns:ns3="http://cse.campussource.de/cse/wsdl/CourseWrapper" xmlns:ns4="http://cse.campussource.de/cse/wsdl/Course" xmlns:ns5="CSEImproveCA" xmlns:ns6="http://cse.campussource.de/cse/wsdl/LMSGenericAdapter" xmlns:ns7="http://cse.campussource/cse/bpel/CreateCourse" xmlns:ns8="http://enterprise.netbeans.org/bpel/CSEImprove/SplittSyncMessage" xmlns:ns9="http://cse.campussource.de/lsf/bpel/SyncMsgTransformation" xmlns:xlink="http://www.w3.org/2000/xlink"> +<casa xmlns="http://java.sun.com/xml/ns/casa" xmlns:ns1="http://cse.campussource.de/lsf/wsdl/LSFSynchronizationMessage" xmlns:ns2="http://cse.campussource.de/lsf/wsdl/SynchronizationMessage" xmlns:ns3="http://cse.campussource.de/cse/wsdl/CourseWrapper" xmlns:ns4="http://cse.campussource.de/cse/wsdl/Course" xmlns:ns5="CSEImproveCA" xmlns:ns6="http://cse.campussource/cse/bpel/CreateCourse" xmlns:ns7="http://enterprise.netbeans.org/bpel/CSEImprove/SplittSyncMessage" xmlns:ns8="http://cse.campussource.de/lsf/bpel/SyncMsgTransformation" xmlns:ns9="http://cse.campussource.de/cse/wsdl/LMSGenericAdapter" xmlns:xlink="http://www.w3.org/2000/xlink"> <endpoints> <endpoint endpoint-name="LSFSynchronizationMessagePort" interface-name="ns1:LSFSynchronizationMessagePortType" name="endpoint1" service-name="ns1:LSFSynchronizationMessageService"/> <endpoint endpoint-name="SynchronizationMessagePort" interface-name="ns2:SynchronizationMessagePortType" name="endpoint2" service-name="ns2:SynchronizationMessageService"/> <endpoint endpoint-name="CoursePortTypeBindingPort" interface-name="ns4:CoursePortType" name="endpoint3" service-name="ns3:CourseService"/> <endpoint endpoint-name="FileImport" interface-name="ns1:LSFSynchronizationMessagePortType" name="endpoint4" service-name="ns5:casaService1"/> - <endpoint endpoint-name="LMSTestClient" interface-name="ns6:LMSGenericAdapterPortType" name="endpoint5" service-name="ns5:LMSTestClientService"/> - <endpoint display-name="CoursePLink" endpoint-name="CoursePortTypeRole_myRole" file-path="CSE\CreateCourse.bpel" interface-name="ns4:CoursePortType" name="endpoint6" process-name="CreateCourse" service-name="ns7:CoursePLink"/> - <endpoint display-name="SyncMsgPLink" endpoint-name="SynchronizationMessagePortTypeRole_myRole" file-path="LSF\SplittSyncMessage.bpel" interface-name="ns2:SynchronizationMessagePortType" name="endpoint7" process-name="SplittSyncMessage" service-name="ns8:SyncMsgPLink"/> - <endpoint display-name="LSFPLink" endpoint-name="LSFSynchronizationMessagePortTypeRole_myRole" file-path="LSF\TransformLSFSyncMsg.bpel" interface-name="ns1:LSFSynchronizationMessagePortType" name="endpoint8" process-name="SyncMsgTransformation" service-name="ns9:LSFPLink"/> - <endpoint display-name="GeneryAdapterPLink" endpoint-name="LMSGenericAdapterPortTypeRole_partnerRole" file-path="CSE\CreateCourse.bpel" interface-name="ns6:LMSGenericAdapterPortType" name="endpoint9" process-name="CreateCourse" service-name="ns7:GeneryAdapterPLink"/> - <endpoint display-name="CoursePLink" endpoint-name="CoursePortTypeRole_partnerRole" file-path="LSF\SplittSyncMessage.bpel" interface-name="ns4:CoursePortType" name="endpoint10" process-name="SplittSyncMessage" service-name="ns8:CoursePLink"/> - <endpoint display-name="SyncMsgPLink" endpoint-name="SynchronizationMessagePortTypeRole_partnerRole" file-path="LSF\TransformLSFSyncMsg.bpel" interface-name="ns2:SynchronizationMessagePortType" name="endpoint11" process-name="SyncMsgTransformation" service-name="ns9:SyncMsgPLink"/> + <endpoint display-name="CoursePLink" endpoint-name="CoursePortTypeRole_myRole" file-path="CSE\CreateCourse.bpel" interface-name="ns4:CoursePortType" name="endpoint5" process-name="CreateCourse" service-name="ns6:CoursePLink"/> + <endpoint display-name="SyncMsgPLink" endpoint-name="SynchronizationMessagePortTypeRole_myRole" file-path="LSF\SplittSyncMessage.bpel" interface-name="ns2:SynchronizationMessagePortType" name="endpoint6" process-name="SplittSyncMessage" service-name="ns7:SyncMsgPLink"/> + <endpoint display-name="LSFPLink" endpoint-name="LSFSynchronizationMessagePortTypeRole_myRole" file-path="LSF\TransformLSFSyncMsg.bpel" interface-name="ns1:LSFSynchronizationMessagePortType" name="endpoint7" process-name="SyncMsgTransformation" service-name="ns8:LSFPLink"/> + <endpoint display-name="GeneryAdapterPLink" endpoint-name="LMSGenericAdapterPortTypeRole_partnerRole" file-path="CSE\CreateCourse.bpel" interface-name="ns9:LMSGenericAdapterPortType" name="endpoint8" process-name="CreateCourse" service-name="ns6:GeneryAdapterPLink"/> + <endpoint display-name="CoursePLink" endpoint-name="CoursePortTypeRole_partnerRole" file-path="LSF\SplittSyncMessage.bpel" interface-name="ns4:CoursePortType" name="endpoint9" process-name="SplittSyncMessage" service-name="ns7:CoursePLink"/> + <endpoint display-name="SyncMsgPLink" endpoint-name="SynchronizationMessagePortTypeRole_partnerRole" file-path="LSF\TransformLSFSyncMsg.bpel" interface-name="ns2:SynchronizationMessagePortType" name="endpoint10" process-name="SyncMsgTransformation" service-name="ns8:SyncMsgPLink"/> </endpoints> <service-units> <service-engine-service-unit artifacts-zip="CSEImprove.jar" component-name="sun-bpel-engine" defined="true" description="Represents this Service Unit" internal="true" name="CSEImproveCA-CSEImprove" unit-name="CSEImprove" unknown="false" x="139" y="99"> + <provides endpoint="endpoint5"/> <provides endpoint="endpoint6"/> <provides endpoint="endpoint7"/> - <provides endpoint="endpoint8"/> + <consumes endpoint="endpoint8"/> <consumes endpoint="endpoint9"/> <consumes endpoint="endpoint10"/> - <consumes endpoint="endpoint11"/> </service-engine-service-unit> <binding-component-service-unit artifacts-zip="sun-file-binding.jar" component-name="sun-file-binding" description="Represents this Service Unit" name="CSEImproveCA-sun-file-binding" unit-name="sun-file-binding"> <ports> @@ -33,14 +32,6 @@ </binding-component-service-unit> <binding-component-service-unit artifacts-zip="sun-http-binding.jar" component-name="sun-http-binding" description="Represents this Service Unit" name="CSEImproveCA-sun-http-binding" unit-name="sun-http-binding"> <ports> - <port bindingType="soap" x="67" y="404"> - <link xlink:href="../jbiasa/CSEImproveCA.wsdl#xpointer(/definitions/service[@name='LMSTestClientService']/port[@name='LMSTestClient'])" xlink:type="simple"/> - <consumes endpoint="endpoint5"/> - <provides endpoint="endpoint5"> - <codegen xmlns="http://www.sun.com/jbi/descriptor/config-endpoint" disableInBC="false"/> - </provides> - <WsitCallback xmlns="http://www.sun.com/jbi/wsit/callbackproject" CallbackProject=""/> - </port> <port x="67" y="197"> <link xlink:href="../jbiServiceUnits/CSEImprove/CSE/CourseWrapper.wsdl#xpointer(/definitions/service[@name='CourseService']/port[@name='CoursePortTypeBindingPort'])" xlink:type="simple"/> <consumes endpoint="endpoint3"/> @@ -60,7 +51,7 @@ </binding-component-service-unit> </service-units> <connections> - <connection consumer="endpoint4" provider="endpoint8" state="new"> + <connection consumer="endpoint4" provider="endpoint7" state="new"> <redelivery xmlns="http://www.sun.com/jbi/qos/redelivery" maxAttempts="-1" waitTime="1000"> <on-failure> <delete/> @@ -68,12 +59,11 @@ </redelivery> <throttling xmlns="http://www.sun.com/jbi/qos/throttling" maximumConcurrencyLimit="1"/> </connection> - <connection consumer="endpoint1" provider="endpoint8" state="unchanged"/> - <connection consumer="endpoint3" provider="endpoint6" state="unchanged"/> - <connection consumer="endpoint2" provider="endpoint7" state="unchanged"/> - <connection consumer="endpoint9" provider="endpoint5" state="new"/> - <connection consumer="endpoint11" provider="endpoint7" state="unchanged"/> + <connection consumer="endpoint1" provider="endpoint7" state="unchanged"/> + <connection consumer="endpoint3" provider="endpoint5" state="unchanged"/> + <connection consumer="endpoint2" provider="endpoint6" state="unchanged"/> <connection consumer="endpoint10" provider="endpoint6" state="unchanged"/> + <connection consumer="endpoint9" provider="endpoint5" state="unchanged"/> </connections> <porttypes> <link xlink:href="../jbiasa/CSEImproveCA.wsdl#xpointer(/definitions/portType[@name='dummyCasaPortType'])" xlink:type="simple"/> @@ -85,21 +75,17 @@ </porttypes> <bindings> <link xlink:href="../jbiasa/CSEImproveCA.wsdl#xpointer(/definitions/binding[@name='casaBinding1'])" xlink:type="simple"/> - <link xlink:href="../jbiasa/CSEImproveCA.wsdl#xpointer(/definitions/binding[@name='casaBinding2'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImprove/CSE/CourseWrapper.wsdl#xpointer(/definitions/binding[@name='CoursePortTypeBinding'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImprove/LSF/LSFSynchronizationMessage.wsdl#xpointer(/definitions/binding[@name='LSFSynchronizationMessageBinding'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImprove/LSF/SynchronizationMessage.wsdl#xpointer(/definitions/binding[@name='SynchronizationMessageBinding'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImproveCA.wsdl#xpointer(/definitions/binding[@name='casaBinding1'])" xlink:type="simple"/> - <link xlink:href="../jbiServiceUnits/CSEImproveCA.wsdl#xpointer(/definitions/binding[@name='casaBinding2'])" xlink:type="simple"/> </bindings> <services> <link xlink:href="../jbiasa/CSEImproveCA.wsdl#xpointer(/definitions/service[@name='casaService1'])" xlink:type="simple"/> - <link xlink:href="../jbiasa/CSEImproveCA.wsdl#xpointer(/definitions/service[@name='LMSTestClientService'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImprove/CSE/CourseWrapper.wsdl#xpointer(/definitions/service[@name='CourseService'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImprove/LSF/LSFSynchronizationMessage.wsdl#xpointer(/definitions/service[@name='LSFSynchronizationMessageService'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImprove/LSF/SynchronizationMessage.wsdl#xpointer(/definitions/service[@name='SynchronizationMessageService'])" xlink:type="simple"/> <link xlink:href="../jbiServiceUnits/CSEImproveCA.wsdl#xpointer(/definitions/service[@name='casaService1'])" xlink:type="simple"/> - <link xlink:href="../jbiServiceUnits/CSEImproveCA.wsdl#xpointer(/definitions/service[@name='LMSTestClientService'])" xlink:type="simple"/> </services> <regions> <region name="WSDL Endpoints" width="150"/> Modified: trunk/sandbox/CSEImproveCA/src/conf/connections.xml =================================================================== --- trunk/sandbox/CSEImproveCA/src/conf/connections.xml 2008-12-15 20:57:43 UTC (rev 4894) +++ trunk/sandbox/CSEImproveCA/src/conf/connections.xml 2008-12-16 15:00:05 UTC (rev 4895) @@ -23,10 +23,6 @@ <provider endpoint-name="SynchronizationMessagePortTypeRole_myRole" service-name="ns7:SyncMsgPLink"/> </connection> <connection> - <consumer endpoint-name="LMSGenericAdapterPortTypeRole_partnerRole" service-name="ns5:GeneryAdapterPLink"/> - <provider endpoint-name="LMSTestClient" service-name="ns1:LMSTestClientService"/> - </connection> - <connection> <consumer endpoint-name="SynchronizationMessagePortTypeRole_partnerRole" service-name="ns2:SyncMsgPLink"/> <provider endpoint-name="SynchronizationMessagePortTypeRole_myRole" service-name="ns7:SyncMsgPLink"/> </connection> Modified: trunk/sandbox/CSEImproveCA/src/jbiasa/CSEImproveCA.wsdl =================================================================== --- trunk/sandbox/CSEImproveCA/src/jbiasa/CSEImproveCA.wsdl 2008-12-15 20:57:43 UTC (rev 4894) +++ trunk/sandbox/CSEImproveCA/src/jbiasa/CSEImproveCA.wsdl 2008-12-16 15:00:05 UTC (rev 4895) @@ -9,7 +9,7 @@ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="CSEImproveCA" - xmlns:tns="CSEImproveCA" xmlns:ns="http://cse.campussource.de/lsf/wsdl/LSFSynchronizationMessage" xmlns:file="http://schemas.sun.com/jbi/wsdl-extensions/file/" xmlns:ns1="http://cse.campussource.de/cse/wsdl/LMSGenericAdapter" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:fi="http://java.sun.com/xml/ns/wsit/2006/09/policy/fastinfoset/service" xmlns:tcp="http://java.sun.com/xml/ns/wsit/2006/09/policy/soaptcp/service" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702" xmlns:sc="http://schemas.sun.com/2006/03/wss/server" xmlns:wspp="http://java.sun.com/xml/ns/wsit/policy" xmlns:wsrm="http://docs.oasis-open.org/ws-rx/wsrmp/200702" xmlns:wsoma="http://schemas.xmlsoap.org/ws/2004/09/policy/optimizedmimeserialization"> + xmlns:tns="CSEImproveCA" xmlns:ns="http://cse.campussource.de/lsf/wsdl/LSFSynchronizationMessage" xmlns:file="http://schemas.sun.com/jbi/wsdl-extensions/file/" xmlns:ns1="http://cse.campussource.de/cse/wsdl/LMSGenericAdapter" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:fi="http://java.sun.com/xml/ns/wsit/2006/09/policy/fastinfoset/service" xmlns:tcp="http://java.sun.com/xml/ns/wsit/2006/09/policy/soaptcp/service" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:sp="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702" xmlns:sc="http://schemas.sun.com/2006/03/wss/server" xmlns:wspp="http://java.sun.com/xml/ns/wsit/policy" xmlns:wsrm="http://docs.oasis-open.org/ws-rx/wsrmp/200702" xmlns:wsoma="http://schemas.xmlsoap.org/ws/2004/09/policy/optimizedmimeserialization"> <import namespace="http://cse.campussource.de/lsf/wsdl/LSFSynchronizationMessage" location="../jbiServiceUnits/CSEImprove/LSF/LSFSynchronizationMessage.wsdl"/> <import namespace="http://cse.campussource.de/cse/wsdl/LMSGenericAdapter" location="../jbiServiceUnits/CSEImprove/CSE/LMSGenericAdapter.wsdl"/> <portType name="dummyCasaPortType"/> @@ -25,130 +25,9 @@ </output> </operation> </binding> - <binding name="casaBinding2" type="ns1:LMSGenericAdapterPortType"> - <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> - <operation name="createCourse"> - <soap:operation/> - <input name="inputCreateCourse"> - <soap:body use="literal"/> - </input> - <output name="outputCreateCourse"> - <soap:body use="literal"/> - </output> - <fault name="faultCreateCourse"> - <soap:fault use="literal" name="faultCreateCourse"/> - </fault> - </operation> - <operation name="updateCourse"> - <soap:operation/> - <input name="inputUpdateCourse"> - <soap:body use="literal"/> - </input> - <output name="outputUpdateCourse"> - <soap:body use="literal"/> - </output> - <fault name="faultUpdateCourse"> - <soap:fault use="literal" name="faultUpdateCourse"/> - </fault> - </operation> - <operation name="deleteCourse"> - <soap:operation/> - <input name="inputDeleteCourse"> - <soap:body use="literal"/> - </input> - <output name="outputDeleteCourse"> - <soap:body use="literal"/> - </output> - <fault name="faultDeleteCourse"> - <soap:fault use="literal" name="faultDeleteCourse"/> - </fault> - </operation> - <operation name="createAccount"> - <soap:operation/> - <input name="inputCreateAccount"> - <soap:body use="literal"/> - </input> - <output name="outputCreateAccount"> - <soap:body use="literal"/> - </output> - <fault name="faultCreateAccount"> - <soap:fault use="literal" name="faultCreateAccount"/> - </fault> - </operation> - <operation name="updateAccount"> - <soap:operation/> - <input name="inputUpdate"> - <soap:body use="literal"/> - </input> - <output name="outputUpdate"> - <soap:body use="literal"/> - </output> - <fault name="faultUpdate"> - <soap:fault use="literal" name="faultUpdate"/> - </fault> - </operation> - <operation name="deleteAccount"> - <soap:operation/> - <input name="input1"> - <soap:body use="literal"/> - </input> - <output name="output1"> - <soap:body use="literal"/> - </output> - <fault name="fault1"> - <soap:fault use="literal" name="fault1"/> - </fault> - </operation> - <operation name="createCategory"> - <soap:operation/> - <input name="inputCreateCategory"> - <soap:body use="literal"/> - </input> - <output name="outputCreateCategory"> - <soap:body use="literal"/> - <wsp:PolicyReference URI="#casaBinding2_outputCreateCourse_Policy"/> - </output> - <fault name="faultCreateCategory"> - <soap:fault use="literal" name="faultCreateCategory"/> - </fault> - </operation> - <operation name="updateCategory"> - <soap:operation/> - <input name="inputUpdateCategory"> - <soap:body use="literal"/> - <wsp:PolicyReference URI="#casaBinding2_inputCreateCourse_Policy"/> - </input> - <output name="outputUpdateCategory"> - <soap:body use="literal"/> - <wsp:PolicyReference URI="#casaBinding2_outputCreateCourse_Policy"/> - </output> - <fault name="faultUpdateCategory"> - <soap:fault use="literal" name="faultUpdateCategory"/> - </fault> - </operation> - <operation name="deleteCategory"> - <soap:operation/> - <input name="inputDeleteCategory"> - <soap:body use="literal"/> - <wsp:PolicyReference URI="#casaBinding2_inputCreateCourse_Policy"/> - </input> - <output name="outputDeleteCategory"> - <soap:body use="literal"/> - <wsp:PolicyReference URI="#casaBinding2_outputCreateCourse_Policy"/> - </output> - <fault name="faultDeleteCategory"> - <soap:fault use="literal" name="faultDeleteCategory"/> - </fault> - </operation> - </binding> <service name="casaService1"> <port name="FileImport" binding="tns:casaBinding1"> <file:address fileDirectory="inbox" lockName="filebc.lck" workArea="filebc_tmp" seqName="filebc.seq" relativePath="true" pathRelativeTo="User Home"/> </port> </service> - <service name="LMSTestClientService"> - <port name="LMSTestClient" binding="tns:casaBinding2"> - <soap:address location="http://localhost:8080/LMSGenericAdapterService/LMSTestClient"/> - </port> - </service> </definitions> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2008-12-15 20:57:47
|
Revision: 4894 http://openuss.svn.sourceforge.net/openuss/?rev=4894&view=rev Author: roekens Date: 2008-12-15 20:57:43 +0000 (Mon, 15 Dec 2008) Log Message: ----------- updated freestyle learning page to version 4.0.1 (updated links, and added differentiation between windows xp and windows vista) Modified Paths: -------------- trunk/openuss-plexus/plexus/plexus-web/src/main/webapp/views/secured/course/fslinstall.xhtml Modified: trunk/openuss-plexus/plexus/plexus-web/src/main/webapp/views/secured/course/fslinstall.xhtml =================================================================== --- trunk/openuss-plexus/plexus/plexus-web/src/main/webapp/views/secured/course/fslinstall.xhtml 2008-12-15 20:55:59 UTC (rev 4893) +++ trunk/openuss-plexus/plexus/plexus-web/src/main/webapp/views/secured/course/fslinstall.xhtml 2008-12-15 20:57:43 UTC (rev 4894) @@ -35,26 +35,25 @@ <h:graphicImage value="/images/freestyle-learning.jpg" width="237px" height="100px"/> <p class="header_font_normal"> - Version 3.5 + Version 4.0.1 </p> - <h:panelGrid columns="4"> + <h:panelGrid columns="3"> <h:outputText value="Plattform"/> <h:outputText value="mit Java VM"/> <h:outputText value="ohne Java VM"/> - <h:outputText value="Anleitung"/> - <h:outputText value="Windows"/> - <h:outputLink value="http://www.wi.uni-muenster.de/aw/download/fsl/3.5/InstData/Windows/VM/fsl_setup.exe">Download (32.9 MB)</h:outputLink> - <h:outputLink value="http://www.wi.uni-muenster.de/aw/download/fsl/3.5/InstData/Windows/NoVM/fsl_setup.exe">Download (17.9 MB)</h:outputLink> - <h:outputLink value="#windows">view</h:outputLink> + <h:outputText value="Windows XP"/> + <h:outputLink value="http://www.wi.uni-muenster.de/aw/download/fsl/4.0.1/WinXP/fsl_setup.exe">Download (45.3 MB)</h:outputLink> + <h:outputText value="-"/> + <h:outputText value="Windows Vista"/> + <h:outputLink value="http://www.wi.uni-muenster.de/aw/download/fsl/4.0.1/WinVista/fsl_vista.zip">Download (56.8 MB)</h:outputLink> + <h:outputText value="-"/> <h:outputText value="Mac OS X"/> <h:outputText value="-"/> - <h:outputLink value="http://www.wi.uni-muenster.de/aw/download/fsl/3.5/InstData/MacOSX/fsl_setup.zip">Download (17.5 MB)</h:outputLink> - <h:outputLink value="#macosx">view</h:outputLink> + <h:outputLink value="http://www.wi.uni-muenster.de/aw/download/fsl/4.0.1/MacOSX/fsl_setup.zip">Download (19.7 MB)</h:outputLink> <h:outputText value="Linux"/> - <h:outputLink value="http://www.wi.uni-muenster.de/aw/download/fsl/3.5/InstData/Linux/VM/fsl_setup.bin">Download (49.5 MB)</h:outputLink> - <h:outputLink value="http://www.wi.uni-muenster.de/aw/download/fsl/3.5/InstData/Linux/NoVM/fsl_setup.bin">Download (18.1 MB)</h:outputLink> - <h:outputLink value="#linux">view</h:outputLink> + <h:outputLink value="http://www.wi.uni-muenster.de/aw/download/fsl/4.0.1/Linux/fsl_setup.bin">Download (69.2 MB)</h:outputLink> + <h:outputText value="-"/> </h:panelGrid> <p class="header_font_normal"> Handbücher @@ -63,23 +62,22 @@ <h:outputText value="Version"/> <h:outputText value="Deutsch"/> <h:outputText value="English"/> - <h:outputText value="3.5"/> - <h:outputLink value="http://www.wi.uni-muenster.de/aw/download/fsl/manual_3.5/FSL-Manual_de.pdf">Download PDF (2.8 MB)</h:outputLink> - <h:outputLink value="http://www.wi.uni-muenster.de/aw/download/fsl/manual_3.5/FSL-Manual_en.pdf">Download PDF (2.2 MB)</h:outputLink> + <h:outputText value="4.0.1"/> + <h:outputLink value="http://www.wi.uni-muenster.de/aw/download/fsl/4.0.1/manuals/FSL-Manual_4.0.1_de.pdf">Download PDF (2.1 MB)</h:outputLink> + <h:outputLink value="http://www.wi.uni-muenster.de/aw/download/fsl/4.0.1/manuals/FSL-Manual_4.0.1_en.pdf">Download PDF (2.6 MB)</h:outputLink> </h:panelGrid> + <p class="header_font_normal"> + Installationsanleitung Windows XP + </p> <p class="content_font_normal"> - Nach dem Herunterladen bitte die Installationsanwendung starten und den Anweisungen folgen. - Wenn Sie nicht sicher sind, ob Ihr System bereits über eine Java VM verfügt, achten Sie bitte - darauf, die Version mit integrierter VM herunterzuladen. + Nach dem Herunterladen starten Sie bitte die Installationsanwendung und folgenden den Anweisungen. Wenn Sie nicht sicher sind, ob Ihr System bereits über eine Java Runtime Enviroment (JRE) verfügt, achten Sie bitte darauf, die Version mit integrierter JRE / VM herunterzuladen. </p> <p class="header_font_normal"> - Installationsanleitung Windows + Installationsanleitung Windows Vista </p> <p class="content_font_normal"> - Nach dem Herunterladen bitte die Installationsanwendung starten und den Anweisungen folgen. - Wenn Sie nicht sicher sind, ob Ihr System bereits über eine Java VM verfügt, achten Sie bitte - darauf, die Version mit integrierter VM herunterzuladen. + Die Freestyle Learning-Version für Microsoft Windows Vista beinhaltet keine automatische Installationsroutine. Sie können die herunter geladene zip-Datei an einen beliebigen Ort entpacken und die Software mit einem Doppelklick auf die Datei „start_vista“ aus dem Verzeichnis „bin“ starten. </p> <p class="header_font_normal"> Installationsanleitung Mac OS X @@ -92,8 +90,10 @@ <li>StuffIt Expander 6.0 oder höher (bei Bedarf herunterladbar unter <a href="http://www.aladdinsys.com/expander/index.html">http://www.aladdinsys.com/expander/index.html</a> )</li> </ul> <p class="content_font_normal"> - Um Problemen vorzubeugen verwenden Sie bitte nur den StuffIt Expander! - Sollten dennoch Probleme auftreten, wenden Sie sich bitte an den Support . + Um Problemen vorzubeugen verwenden Sie bitte nur den StuffIt Expander ! +Sollten dennoch Probleme auftreten, wenden Sie sich bitte an den Support + +Sie starten Freestyle Learning über "./fsl_java.sh" aus dem Programmverzeichnis. </p> <p class="header_font_normal"> Installationsanleitung Linux This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2008-12-15 20:56:05
|
Revision: 4893 http://openuss.svn.sourceforge.net/openuss/?rev=4893&view=rev Author: roekens Date: 2008-12-15 20:55:59 +0000 (Mon, 15 Dec 2008) Log Message: ----------- fixed resource property of braincontest table Modified Paths: -------------- trunk/openuss-plexus/plexus/plexus-web/src/main/resources/resources_de.properties Modified: trunk/openuss-plexus/plexus/plexus-web/src/main/resources/resources_de.properties =================================================================== --- trunk/openuss-plexus/plexus/plexus-web/src/main/resources/resources_de.properties 2008-12-15 15:38:42 UTC (rev 4892) +++ trunk/openuss-plexus/plexus/plexus-web/src/main/resources/resources_de.properties 2008-12-15 20:55:59 UTC (rev 4893) @@ -1594,7 +1594,7 @@ system_message_institute_disabled=Institution {0} deaktiviert system_message_institute_enabled=Institution {0} aktiviert table_info_text=Datens\xE4tze {2} bis {3} von {0} - Seite {4} von {5} -table_info_text_braincontests=Quizs {2} bis {3} von {0} - Seite {4} von {5} +table_info_text_braincontests=Quize {2} bis {3} von {0} - Seite {4} von {5} table_info_text_chatrooms=Chatrooms {2} bis {3} von {0} - Seite {4} von {5} table_info_text_courses=Veranstaltungen {2} bis {3} von {0} - Seite {4} von {5} table_info_text_coursetypes=Veranstaltungstypen {2} bis {3} von {0} - Seite {4} von {5} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2008-12-15 15:38:44
|
Revision: 4892 http://openuss.svn.sourceforge.net/openuss/?rev=4892&view=rev Author: idueppe Date: 2008-12-15 15:38:42 +0000 (Mon, 15 Dec 2008) Log Message: ----------- fixed naming Modified Paths: -------------- trunk/sandbox/CSEImprove/src/CSE/LMSGenericAdapter.wsdl Modified: trunk/sandbox/CSEImprove/src/CSE/LMSGenericAdapter.wsdl =================================================================== --- trunk/sandbox/CSEImprove/src/CSE/LMSGenericAdapter.wsdl 2008-12-15 14:39:02 UTC (rev 4891) +++ trunk/sandbox/CSEImprove/src/CSE/LMSGenericAdapter.wsdl 2008-12-15 15:38:42 UTC (rev 4892) @@ -62,9 +62,9 @@ <fault name="faultCreateAccount" message="tns:accountFault"/> </operation> <operation name="updateAccount"> - <input name="inputUpdate" message="tns:accountRequest"/> - <output name="outputUpdate" message="tns:accountResponse"/> - <fault name="faultUpdate" message="tns:accountFault"/> + <input name="inputUpdateAccount" message="tns:accountRequest"/> + <output name="outputUpdateAccount" message="tns:accountResponse"/> + <fault name="faultUpdateAccount" message="tns:accountFault"/> </operation> <operation name="deleteAccount"> <input name="inputDeleteAccount" message="tns:accountRequest"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2008-12-15 14:39:06
|
Revision: 4891 http://openuss.svn.sourceforge.net/openuss/?rev=4891&view=rev Author: idueppe Date: 2008-12-15 14:39:02 +0000 (Mon, 15 Dec 2008) Log Message: ----------- findex naming of the wsdl Modified Paths: -------------- trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapter.wsdl trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapterWrapper.wsdl Modified: trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapter.wsdl =================================================================== --- trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapter.wsdl 2008-12-15 12:53:38 UTC (rev 4890) +++ trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapter.wsdl 2008-12-15 14:39:02 UTC (rev 4891) @@ -62,9 +62,9 @@ <fault name="faultCreateAccount" message="tns:accountFault"/> </operation> <operation name="updateAccount"> - <input name="inputUpdate" message="tns:accountRequest"/> - <output name="outputUpdate" message="tns:accountResponse"/> - <fault name="faultUpdate" message="tns:accountFault"/> + <input name="inputUpdateAccount" message="tns:accountRequest"/> + <output name="outputUpdateAccount" message="tns:accountResponse"/> + <fault name="faultUpdateAccount" message="tns:accountFault"/> </operation> <operation name="deleteAccount"> <input name="inputDeleteAccount" message="tns:accountRequest"/> Modified: trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapterWrapper.wsdl =================================================================== --- trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapterWrapper.wsdl 2008-12-15 12:53:38 UTC (rev 4890) +++ trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapterWrapper.wsdl 2008-12-15 14:39:02 UTC (rev 4891) @@ -53,14 +53,14 @@ </wsdl:operation> <wsdl:operation name="updateAccount"> <soap:operation xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" soapAction="updateAccount_action"/> - <wsdl:input name="inputUpdate"> + <wsdl:input name="inputUpdateAccount"> <soap:body xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" use="literal"/> </wsdl:input> - <wsdl:output name="outputUpdate"> + <wsdl:output name="outputUpdateAccount"> <soap:body xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" use="literal"/> </wsdl:output> - <wsdl:fault name="faultUpdate"> - <soap:fault xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" name="faultUpdate" use="literal"/> + <wsdl:fault name="faultUpdateAccount"> + <soap:fault xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" name="faultUpdateAccount" use="literal"/> </wsdl:fault> </wsdl:operation> <wsdl:operation name="deleteAccount"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2008-12-15 12:53:42
|
Revision: 4890 http://openuss.svn.sourceforge.net/openuss/?rev=4890&view=rev Author: idueppe Date: 2008-12-15 12:53:38 +0000 (Mon, 15 Dec 2008) Log Message: ----------- Refactoring but still not working... Modified Paths: -------------- trunk/sandbox/CSEImprove/src/CSE/LMSGenericAdapter.wsdl Modified: trunk/sandbox/CSEImprove/src/CSE/LMSGenericAdapter.wsdl =================================================================== --- trunk/sandbox/CSEImprove/src/CSE/LMSGenericAdapter.wsdl 2008-12-15 12:53:32 UTC (rev 4889) +++ trunk/sandbox/CSEImprove/src/CSE/LMSGenericAdapter.wsdl 2008-12-15 12:53:38 UTC (rev 4890) @@ -67,9 +67,9 @@ <fault name="faultUpdate" message="tns:accountFault"/> </operation> <operation name="deleteAccount"> - <input name="input1" message="tns:accountRequest"/> - <output name="output1" message="tns:accountResponse"/> - <fault name="fault1" message="tns:accountFault"/> + <input name="inputDeleteAccount" message="tns:accountRequest"/> + <output name="outputDeleteAccount" message="tns:accountResponse"/> + <fault name="faultDeleteAccount" message="tns:accountFault"/> </operation> <operation name="createCategory"> <input name="inputCreateCategory" message="tns:categoryRequest"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2008-12-15 12:53:34
|
Revision: 4889 http://openuss.svn.sourceforge.net/openuss/?rev=4889&view=rev Author: idueppe Date: 2008-12-15 12:53:32 +0000 (Mon, 15 Dec 2008) Log Message: ----------- Refactoring but still not working... Modified Paths: -------------- trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapter.wsdl trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapterWrapper.wsdl Modified: trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapter.wsdl =================================================================== --- trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapter.wsdl 2008-12-15 12:28:06 UTC (rev 4888) +++ trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapter.wsdl 2008-12-15 12:53:32 UTC (rev 4889) @@ -67,9 +67,9 @@ <fault name="faultUpdate" message="tns:accountFault"/> </operation> <operation name="deleteAccount"> - <input name="input1" message="tns:accountRequest"/> - <output name="output1" message="tns:accountResponse"/> - <fault name="fault1" message="tns:accountFault"/> + <input name="inputDeleteAccount" message="tns:accountRequest"/> + <output name="outputDeleteAccount" message="tns:accountResponse"/> + <fault name="faultDeleteAccount" message="tns:accountFault"/> </operation> <operation name="createCategory"> <input name="inputCreateCategory" message="tns:categoryRequest"/> Modified: trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapterWrapper.wsdl =================================================================== --- trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapterWrapper.wsdl 2008-12-15 12:28:06 UTC (rev 4888) +++ trunk/sandbox/CSEImproveLMSTestClient/src/conf/wsdl/LMSTestClient/LMSGenericAdapterWrapper.wsdl 2008-12-15 12:53:32 UTC (rev 4889) @@ -65,14 +65,14 @@ </wsdl:operation> <wsdl:operation name="deleteAccount"> <soap:operation xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" soapAction="deleteAccount_action"/> - <wsdl:input name="input1"> + <wsdl:input name="inputDeleteAccount"> <soap:body xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" use="literal"/> </wsdl:input> - <wsdl:output name="output1"> + <wsdl:output name="outputDeleteAccount"> <soap:body xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" use="literal"/> </wsdl:output> - <wsdl:fault name="fault1"> - <soap:fault xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" name="fault1" use="literal"/> + <wsdl:fault name="faultDeleteAccount"> + <soap:fault xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" name="faultDeleteAccount" use="literal"/> </wsdl:fault> </wsdl:operation> <wsdl:operation name="createCategory"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |