1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<!-- ************ JGroups Protocol Stack Configuration ************** -->
<!-- generated by XmlConfigurator on Mon Apr 26 10:51:55 PDT 2004 -->
<!-- input file: bare-bones.xml -->
<!--
Bare bones stack with only UDP and UNICAST. Multicast is unreliable
(members may get a multicast, or not) and messages don't get fragmented (if a message is
too big, it will be dropped). However, unicast messages (e.g. responses to multicast
messages) are reliable: they will be retransmitted if dropped. Since no membership protocol
is included, members have no way of finding other members. Such a functionality has to be
done on the application level in this case
-->
<config xmlns="urn:org:jgroups"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:org:jgroups http://www.jgroups.org/schema/JGroups-2.12.xsd">
<UDP mcast_port="45566"
ip_ttl="32"/>
<UNICAST timeout="1200"/>
</config>
|