what is the port number of RMI?
Answers were Sorted based on User's Feedback
The default number for RMI is 1099.
The RMI registry that is started up by FUSE uses the
standard port number of 1099. In the event that this port
number is already in use by some other process, this port
number can be changed. To change this port number, simply
edit the components/jmx/jmx-xbean.xml file to change the
port number. Below is an example of changing the RMI
registry port attribute from 1099 to 1234:
<bean id="registry"
class="org.logicblaze.soa.RmiRegistryFactoryBean">
<property name="port" value="1234" />
<property name="testRegistry" value="false" />
</bean>
In addition to changing the RMI registry port attribute,
the same port number will also need to be changed for the
bean named serverConnector which is located in the same
file. The serverConnector bean provides the ability to
connect to FUSE using a JMX management tool. Below is an
example of changing the RMI registry port number in the
serviceUrl attribute from 1099 to 1234:
<bean id="serverConnector"
class="org.apache.xbean.server.spring.jmx.ConnectorServerFac
toryBean"
depends-on="mbeanServer,registry">
<property name="objectName" value="connector:name=rmi" />
<property name="serviceUrl"
value="service:jmx:rmi:///jndi/rmi://localhost:1234/jmxrmi"
/>
<property name="threaded" value="true" />
<property name="daemon" value="true" />
</bean>
| Is This Answer Correct ? | 13 Yes | 5 No |
In a multitiered application which tier is the browser in?
Why is actionform a base class rather than an interface?
Explain RMI Architecture?
What is table mutation and how do you avoid it?
What value does readline() return when it has reached the end of a file?
What are callback interfaces?
What are the different approaches to represent an inheritance hierarchy?
whats is mean by class.forName() whats the return type of class
Write a program on RMI and JDBC using StoredProcedure?
How many times may an objects finalize() method be invoked by the garbage collector?
Can we define constructors in Servlet?
3 Answers Accenture, Opus, Wipro,
What you mean by COM and DCOM?