Menu
- General Information
- Architecture :
- Services & Processes
- CookBooks
- Deployment
- Bundled Applications
- Source Code :
- Third-Party Setup :
- Polytech Staff Area :
This orchestration controls readable feeds inside jSeduite. Using a given feedname, it retrieves from the registry the URL of this feed, and then read its content.
The orchestration receive a name (xsd:string) inside its input message.
<xsd:complexType name="FeedReaderIn"> <xsd:sequence> <xsd:element name="name" type="xsd:string"/> </xsd:sequence> </xsd:complexType> <xsd:element name="FeedReaderRequest" type="tns:FeedReaderIn"/>
This orchestration works as an indirection for the RssReader service. So, it basically forward as output the same data type as RssReader, ie a feedContent.
<xsd:import schemaLocation="localhost_8080/jSeduite/RssReader/RssReaderService.xsd_1.xsd" namespace="http://feeds.technical.jSeduite.modalis.i3s.unice.fr/"/> <xsd:complexType name="FeedReaderOut"> <xsd:sequence> <xsd:element name="return" type="ns0:feedContent"/> </xsd:sequence> </xsd:complexType> <xsd:element name="FeedReaderResponse" type="tns:FeedReaderOut"/>