|
From: <pka...@us...> - 2009-08-02 17:53:18
|
Revision: 421
http://cse-ip.svn.sourceforge.net/cse-ip/?rev=421&view=rev
Author: pkasprzak
Date: 2009-08-02 17:53:01 +0000 (Sun, 02 Aug 2009)
Log Message:
-----------
* DependencyManager wsdl adaptations
Modified Paths:
--------------
trunk/sandbox/lsf-adapter-demo/Common/src/DependencyManager.wsdl
Removed Paths:
-------------
trunk/sandbox/lsf-adapter-demo/Common/src/DependencyManagerNotification.wsdl
Modified: trunk/sandbox/lsf-adapter-demo/Common/src/DependencyManager.wsdl
===================================================================
--- trunk/sandbox/lsf-adapter-demo/Common/src/DependencyManager.wsdl 2009-08-02 17:51:03 UTC (rev 420)
+++ trunk/sandbox/lsf-adapter-demo/Common/src/DependencyManager.wsdl 2009-08-02 17:53:01 UTC (rev 421)
@@ -43,8 +43,8 @@
</message>
<message name="notifyRequest">
- <part name="entityId" type="xsd:int"/>
- <part name="system" type="xsd:string"/>
+ <part name="entityId" type="xsd:int"/>
+ <part name="system" type="xsd:string"/>
</message>
<portType name="DependencyManager">
@@ -56,12 +56,24 @@
</operation>
</portType>
- <portType name="DependencyManagerNotification">
+ <portType name="DependencyManagerCourseNotification">
<operation name="notify">
<input name="input1" message="tns:notifyRequest"/>
</operation>
</portType>
+ <portType name="DependencyManagerCategoryNotification">
+ <operation name="notify">
+ <input name="input1" message="tns:notifyRequest"/>
+ </operation>
+ </portType>
+
+ <portType name="DependencyManagerAccountNotification">
+ <operation name="notify">
+ <input name="input1" message="tns:notifyRequest"/>
+ </operation>
+ </portType>
+
<binding name="DependencyManagerPortBinding" type="tns:DependencyManager">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"></soap:binding>
<operation name="waitForDependencies">
@@ -81,7 +93,7 @@
</operation>
</binding>
- <binding name="DependencyManagerNotificationBinding" type="tns:DependencyManagerNotification">
+ <binding name="DependencyManagerCourseNotificationBinding" type="tns:DependencyManagerCourseNotification">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="notify">
<soap:operation/>
@@ -91,23 +103,65 @@
</operation>
</binding>
+ <binding name="DependencyManagerCategoryNotificationBinding" type="tns:DependencyManagerCategoryNotification">
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
+ <operation name="notify">
+ <soap:operation/>
+ <input name="input1">
+ <soap:body use="literal" namespace="http://j2ee.netbeans.org/wsdl/Common/DependencyManagerNotification"/>
+ </input>
+ </operation>
+ </binding>
+
+ <binding name="DependencyManagerAccountNotificationBinding" type="tns:DependencyManagerAccountNotification">
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
+ <operation name="notify">
+ <soap:operation/>
+ <input name="input1">
+ <soap:body use="literal" namespace="http://j2ee.netbeans.org/wsdl/Common/DependencyManagerNotification"/>
+ </input>
+ </operation>
+ </binding>
+
<service name="DependencyManagerWSService">
<port name="DependencyManagerPort" binding="tns:DependencyManagerPortBinding">
<soap:address location="http://localhost:8080/DependencyManagerWSService/DependencyManager"></soap:address>
</port>
</service>
- <service name="DependencyManagerNotificationService">
- <port name="DependencyManagerNotificationPort" binding="tns:DependencyManagerNotificationBinding">
- <soap:address location="http://localhost:${HttpDefaultPort}/DependencyManagerNotificationService/DependencyManagerNotification"/>
+ <service name="DependencyManagerCourseNotificationService">
+ <port name="DependencyManagerCourseNotificationPort" binding="tns:DependencyManagerCourseNotificationBinding">
+ <soap:address location="http://localhost:${HttpDefaultPort}/DependencyManagerCourseNotificationService/DependencyManagerCourseNotification"/>
</port>
</service>
- <plnk:partnerLinkType name="DependencyManagerLinkType">
- <plnk:role name="DependencyManager_Provider" portType="tns:DependencyManager"/>
- <plnk:role name="DependencyManager_Requestor" portType="tns:DependencyManagerNotification"/>
+ <service name="DependencyManagerCategoryNotificationService">
+ <port name="DependencyManagerCategoryNotificationPort" binding="tns:DependencyManagerCategoryNotificationBinding">
+ <soap:address location="http://localhost:${HttpDefaultPort}/DependencyManagerCategoryNotificationService/DependencyManagerCategoryNotification"/>
+ </port>
+ </service>
+
+ <service name="DependencyManagerAccountNotificationService">
+ <port name="DependencyManagerAccountNotificationPort" binding="tns:DependencyManagerAccountNotificationBinding">
+ <soap:address location="http://localhost:${HttpDefaultPort}/DependencyManagerAccountNotificationService/DependencyManagerAccountNotification"/>
+ </port>
+ </service>
+
+ <plnk:partnerLinkType name="DependencyManagerCourseLinkType">
+ <plnk:role name="DependencyManager_Provider" portType="tns:DependencyManager"/>
+ <plnk:role name="DependencyManager_Receiver" portType="tns:DependencyManagerCourseNotification"/>
</plnk:partnerLinkType>
+ <plnk:partnerLinkType name="DependencyManagerCategoryLinkType">
+ <plnk:role name="DependencyManager_Provider" portType="tns:DependencyManager"/>
+ <plnk:role name="DependencyManager_Receiver" portType="tns:DependencyManagerCategoryNotification"/>
+ </plnk:partnerLinkType>
+
+ <plnk:partnerLinkType name="DependencyManagerAccountLinkType">
+ <plnk:role name="DependencyManager_Provider" portType="tns:DependencyManager"/>
+ <plnk:role name="DependencyManager_Receiver" portType="tns:DependencyManagerAccountNotification"/>
+ </plnk:partnerLinkType>
+
<vprop:property name="EntityId" type="xsd:int"/>
<vprop:propertyAlias propertyName="tns:EntityId" messageType="tns:waitForDependencies" part="parameters">
Deleted: trunk/sandbox/lsf-adapter-demo/Common/src/DependencyManagerNotification.wsdl
===================================================================
--- trunk/sandbox/lsf-adapter-demo/Common/src/DependencyManagerNotification.wsdl 2009-08-02 17:51:03 UTC (rev 420)
+++ trunk/sandbox/lsf-adapter-demo/Common/src/DependencyManagerNotification.wsdl 2009-08-02 17:53:01 UTC (rev 421)
@@ -1,50 +0,0 @@
-<?xml version="1.0" encoding="windows-1252"?>
-<definitions name="DependencyManagerNotification"
- targetNamespace="http://j2ee.netbeans.org/wsdl/Common/DependencyManagerNotification"
- 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/Common/DependencyManagerNotification"
- xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:vprop="http://docs.oasis-open.org/wsbpel/2.0/varprop">
-
- <types/>
- <message name="notifyRequest">
- <part name="entityId" type="xsd:int"/>
- <part name="system" type="xsd:string"/>
- </message>
- <portType name="DependencyManagerNotificationPortType">
- <operation name="notify">
- <input name="input1" message="tns:notifyRequest"/>
- </operation>
- </portType>
- <binding name="DependencyManagerNotificationBinding" type="tns:DependencyManagerNotificationPortType">
- <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
- <operation name="notify">
- <soap:operation/>
- <input name="input1">
- <soap:body use="literal" namespace="http://j2ee.netbeans.org/wsdl/Common/DependencyManagerNotification"/>
- </input>
- </operation>
- </binding>
- <service name="DependencyManagerNotificationService">
- <port name="DependencyManagerNotificationPort" binding="tns:DependencyManagerNotificationBinding">
- <soap:address location="http://localhost:${HttpDefaultPort}/DependencyManagerNotificationService/DependencyManagerNotificationPort"/>
- </port>
- </service>
-
- <plnk:partnerLinkType name="DependencyManagerNotification">
- <plnk:role name="DependencyManagerNotificationPortTypeRole" portType="tns:DependencyManagerNotificationPortType"/>
- </plnk:partnerLinkType>
-
- <vprop:property name="EntityId" type="xsd:int"/>
- <vprop:propertyAlias propertyName="tns:EntityId" messageType="tns:notifyRequest" part="entityId">
-<!-- <vprop:query>/</vprop:query> -->
- </vprop:propertyAlias>
-
-<!--
- <vprop:property name="System" type="xsd:string"/>
- <vprop:propertyAlias propertyName="tns:System" messageType="tns:notifyRequest" part="system"/>
--->
-</definitions>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|