rmi Questions
1
I have a requirement to migrate a legacy CORBA system to any latest java technology. The main problem I am facing is to provide long lived transaction(db) in the proposed system. Currently the clie...
Gant asked 10/5, 2016 at 10:16
4
Solved
In our application, we are using RMI for client-server communication in very different ways:
Pushing data from the server to the client to be displayed.
Sending control information from the clien...
9
Hi I'm trying to run a java application that binds a class to the naming server, but i constantly get a ClassNotFoundException
First I start the registry:
rmiregistry
then from eclipse ...
Bayonne asked 21/1, 2009 at 10:12
9
Solved
I'm new to both Web Services and RMI and I wonder which is the better way to do remoting between different web applications, when these applications are all written in Java, that is when diff...
Alvaroalveolar asked 19/9, 2008 at 10:32
6
I have a program which requires dynamically (i.e. at run time) opening an available socket and start a JMX agent on it. This JMX parameters are being set inside the Java code and not through comman...
11
I'm creating a Java application that requires master-slave communication between JVMs, possibly residing on the same physical machine. There will be a "master" server running inside a Java EE appli...
Liesa asked 7/4, 2010 at 18:15
1
I have my OSGi application launching with the following command in my remote machine:
java -Dcom.sun.management.jmxremote \
-Dcom.sun.management.jmxremote.port=8080 \
-Dcom.sun.management.jmxrem...
1
Solved
Running into Exception caused during call to UnicastRemoteObject.exportObject().
javax.json.jar is on the classpath and is used in many other places in the application without any problems.
This ...
4
I wish to send a java.nio.ByteBuffer accross a network using RMI, however ByteBuffer isn't serializable. I've tried the following custom class to no avail:
public class NetByteBuffer implements ja...
Regalia asked 20/10, 2010 at 22:1
3
Solved
I'm working on a RMI project that has two separated projects for Client and Server. I used start rmiregistry. When I try to run my Server application, I get an exception.
public class Runner exten...
1
I'm newer in Java Card Platform so please be patient with me. I'm trying to develop an RMI application for the Java Card 3 Platform. My IDE is Eclipse and my OS is Windows 10. I start by creating a...
3
Issue: Remote Jmeter server is not reporting back the results to the master server.
Description:
Using a VMware server I have added several Ubuntu servers hosting various JMeter client/servers. I ...
6
I have an EJB client that needs to retrieve a large file from an EJB server (JBoss).
The evident way to implement this is the server to offer a EJB facade with a method like this one:
public byte...
Diagram asked 24/5, 2012 at 8:58
4
Solved
Our frontend is simple Jetty (might be replaced with Tomcat later on) server. Through servlets, we are providing a public HTTP API (more or less RESTful) to expose our product functionality.
In th...
6
Solved
I need to create a distributed application consisting of multiple clients that send files (plus info about files) to one server, also query that server.
Clients must access to that Web Server from...
Jinajingle asked 21/12, 2009 at 17:31
3
Solved
3
I have following set up for my Spring Application Context.
@Configuration
public class RmiContext {
@Bean
public RmiProxyFactoryBean service() {
RmiProxyFactoryBean rmiProxy = new RmiProxyFacto...
Poultry asked 25/7, 2013 at 12:15
2
Solved
The application is a Project Management application for a LAN, and it has objects such as Project, Task, etc. So RMI seemed like the way to go.
But it also has live notifications sent to certain c...
4
Solved
What is RMI registry? What does it do?
Personally asked 14/4, 2011 at 5:26
5
In want to diagnose a bottleneck which happens when my client is talking to a server on the other side of the world. I'd like to run the server on my local machine and simulate the latency. Is ther...
3
Solved
I've read lots of threads about this issue, and i couldnt see a 'real' solution for it.
I made a java project - which is a rmi server and i have an android application which suppose to be also a r...
3
Solved
I'm writing a small RMI based Chat application.
The idea is: the Client registers himself on the Server, and everytime the server receives a message from a client, he pushes this message to all ot...
3
I get this;
java.net.MalformedURLException: unknown protocol: rsrc
I'm not entirely sure what to do about this unknown protocol. I am using simple RMI to communicate between two JVMs. Is it a ja...
3
Solved
I've built a simple item class;
class itemInfo{
int auctionID;
int startPrice;
int buyoutPrice;
}
I've created an ArrayList;
ArrayList<itemInfo> itemSet = new ArrayList<itemInfo&...
2
I have problem with growing memory consuming on Tomcat.
Just after start nothing happens,but if some user login, after this memory usage start growing in Edem. PermGen does not grow, but anyway, it...
Inflation asked 31/10, 2014 at 12:35
© 2022 - 2024 — McMap. All rights reserved.