diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-11 23:11:48 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-11-11 23:11:48 +0000 |
commit | ece4fd35da7b7fc76264776f81705e6b5b52d3e0 (patch) | |
tree | 962794e2a2b1ab91a02c41e4927a527cade83959 /sca-java-1.x/branches/java-post-M1/samples/sca/helloworldws-celtix/server.xml | |
parent | 76e9f96ca7f494088fe3af5a46ad0d153e961008 (diff) |
Moving 1.x branches
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835140 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/branches/java-post-M1/samples/sca/helloworldws-celtix/server.xml')
-rw-r--r-- | sca-java-1.x/branches/java-post-M1/samples/sca/helloworldws-celtix/server.xml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/sca-java-1.x/branches/java-post-M1/samples/sca/helloworldws-celtix/server.xml b/sca-java-1.x/branches/java-post-M1/samples/sca/helloworldws-celtix/server.xml new file mode 100644 index 0000000000..94c9efe897 --- /dev/null +++ b/sca-java-1.x/branches/java-post-M1/samples/sca/helloworldws-celtix/server.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE beans SYSTEM + "http://celtix.objectweb.org/configuration/spring/celtix-spring-beans.dtd"> + +<beans + xmlns:ct="http://celtix.objectweb.org/configuration/types" + xmlns:sec="http://celtix.objectweb.org/bus/configuration/security" + xmlns:im-conf="http://celtix.objectweb.org/bus/instrumentation/instrumentation-config" + xmlns:im="http://celtix.objectweb.org/bus/instrumentation" +> + + <bean id="celtix.Instrumentation" + class="org.objectweb.celtix.bus.instrumentation.instrumentation_config.spring.InstrumentationConfigBean"> + <property name="instrumentationControl"> + <value> + <im:instrumentation> + <im:InstrumentationEnabled>true</im:InstrumentationEnabled> + <im:JMXEnabled>true</im:JMXEnabled> + </im:instrumentation> + </value> + </property> + <property name="MBServer"> + <value> + <im:MBServer> + <im:JMXConnector> + <im:Threaded>true</im:Threaded> + <im:Daemon>false</im:Daemon> + <im:JMXServiceURL>service:jmx:rmi:///jndi/rmi://localhost:1099/jmxrmi/server</im:JMXServiceURL> + </im:JMXConnector> + </im:MBServer> + </value> + </property> + </bean> +</beans> + |