1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?xml version='1.0'?>
<!-- Order of specification will determine the sequence of installation. all modules are loaded prior instantiation of plugins -->
<xp:Profile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xp="http://xdaq.web.cern.ch/xdaq/xsd/2005/XMLProfile-10">
<!-- Compulsory Plugins -->
<xp:Application class="executive::Application" id="0" group="profile" service="executive" network="local">
<properties xmlns="urn:xdaq-application:Executive" xsi:type="soapenc:Struct">
<logUrl xsi:type="xsd:string">console</logUrl>
<logLevel xsi:type="xsd:string">INFO</logLevel>
</properties>
</xp:Application>
<xp:Module>${XDAQ_ROOT}/lib/libexecutive.so</xp:Module>
<xp:Application class="pt::http::PeerTransportHTTP" id="1" group="profile" network="local">
<properties xmlns="urn:xdaq-application:pt::http::PeerTransportHTTP" xsi:type="soapenc:Struct">
<documentRoot xsi:type="xsd:string">${XDAQ_DOCUMENT_ROOT}</documentRoot>
<aliasName xsi:type="xsd:string">temporary</aliasName>
<aliasPath xsi:type="xsd:string">.pwd</aliasPath>
</properties>
</xp:Application>
<xp:Module> ${XDAQ_ROOT}/lib/libpthttp.so </xp:Module>
<xp:Application class="pt::fifo::PeerTransportFifo" id="8" group="profile" network="local"/>
<xp:Module>${XDAQ_ROOT}/lib/libptfifo.so</xp:Module>
<!-- XRelay -->
<xp:Application class="xrelay::Application" id="4" service="xrelay" group="profile" network="local"/>
<xp:Module>${XDAQ_ROOT}/lib/libxrelay.so</xp:Module>
<!-- HyperDAQ -->
<xp:Application class="hyperdaq::Application" id="3" service="hyperdaq" group="profile" network="local"/>
<xp:Module>${XDAQ_ROOT}/lib/libhyperdaq.so</xp:Module>
</xp:Profile>
|