[asterisk-scf-commits] asterisk-scf/examples.git branch "master" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Fri Sep 16 14:55:22 CDT 2011
branch "master" has been updated
via bf38bcd8f66f8c9f11d08fab030c94ee501de6d5 (commit)
via 4fe004d39946a3d826db046fca12fd4204291fd2 (commit)
from a6bbfe3c993a925dc140c8dc318143e2a26e1c55 (commit)
Summary of changes:
configs/BridgeManager.conf | 7 +++----
configs/RoutingService.conf | 4 ++++
configs/SipService.conf | 24 ++++++++++++++++++++++++
3 files changed, 31 insertions(+), 4 deletions(-)
create mode 100644 configs/SipService.conf
- Log -----------------------------------------------------------------
commit bf38bcd8f66f8c9f11d08fab030c94ee501de6d5
Author: Kevin P. Fleming <kpfleming at digium.com>
Date: Fri Sep 16 14:55:20 2011 -0500
Basic configuration for Sip Service
diff --git a/configs/SipService.conf b/configs/SipService.conf
new file mode 100644
index 0000000..f6c435d
--- /dev/null
+++ b/configs/SipService.conf
@@ -0,0 +1,24 @@
+IceBox.InheritProperties=1
+# this value was empirically determined... it may need to be different on different systems
+Ice.ThreadPool.Client.Size=10
+IceBox.Service.SipService=SipSessionManager:create
+
+SipService.ServiceAdapter.Endpoints=tcp -p 4461
+SipService.ServiceAdapter.ThreadPool.Size=4
+SipService.BackplaneAdapter.Endpoints=tcp -p 4462
+SipService.BackplaneAdapter.ThreadPool.Size=4
+SipService.Standalone=yes
+# this service name property is used when registering this component's
+# services with the ServiceLocator. services are registered with
+# a Category, Service, and Instance.
+SipService.ServiceName=default
+# this property specifies which of the available service modules should
+# be started in this instance
+SipService.Modules=Session Logging Registrar
+
+LocatorService.Proxy=LocatorService:tcp -p 4411
+LocatorServiceManagement.Proxy=LocatorServiceManagement:tcp -p 4412
+
+# this is used to connect to the IceStorm instance that lives in the same IceBox
+# container as the ServiceDiscovery service
+TopicManager.Proxy=ServiceDiscoveryIceStorm/TopicManager:tcp -p 4421
commit 4fe004d39946a3d826db046fca12fd4204291fd2
Author: Kevin P. Fleming <kpfleming at digium.com>
Date: Fri Sep 16 14:42:49 2011 -0500
Set service names for registration with Service Locator
diff --git a/configs/BridgeManager.conf b/configs/BridgeManager.conf
index 72fbf99..0044e50 100644
--- a/configs/BridgeManager.conf
+++ b/configs/BridgeManager.conf
@@ -7,10 +7,9 @@ BridgeManager.ServiceAdapter.Endpoints=tcp -p 4441
BridgeManager.BackplaneAdapter.Endpoints=tcp -p 4442
BridgeManager.Standalone=yes
BridgeManager.ManagerInterface.ObjectId=BridgeManager
-
-# This service name property is used in registering this components
-# services with the Service Locator. Services are registered in
-# a Category, Service, and Instance Id for discovery.
+# this service name property is used when registering this component's
+# services with the ServiceLocator. services are registered with
+# a Category, Service, and Instance.
BridgeManager.ServiceName=default
LocatorService.Proxy=LocatorService:tcp -p 4411
diff --git a/configs/RoutingService.conf b/configs/RoutingService.conf
index a617afc..e8b1f83 100644
--- a/configs/RoutingService.conf
+++ b/configs/RoutingService.conf
@@ -6,6 +6,10 @@ IceBox.Service.RoutingService=BasicRoutingService:create
RoutingService.ServiceAdapter.Endpoints=tcp -p 4451
RoutingService.BackplaneAdapter.Endpoints=tcp -p 4452
RoutingService.Standalone=yes
+# this service name property is used when registering this component's
+# services with the ServiceLocator. services are registered with
+# a Category, Service, and Instance.
+RoutingService.ServiceName=default
# the RoutingService will use the ServiceLocator to locate the BridgeManager;
# to do so it needs to specify the category (which is always “BridgeManager”, it is not
# configurable), and the service name. the service name is configurable in the
-----------------------------------------------------------------------
--
asterisk-scf/examples.git
More information about the asterisk-scf-commits
mailing list