Nikos Bouzoukis

Greenhorn
+ Follow
since Jul 30, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Nikos Bouzoukis

Hello, can I use listeners in a jsp page? If not, is there any command that makes a jsp wait for some time before proceeding to the next command?

The case is that I want my jsp to read a variable of another class which gathers data from a device. However, I can't know when the device has stopped sending data to the class. I know only what the last character will be(so I could use a listener here) or I can guess how much time it will take for the device to send the data (so I could use a sleep command).
19 years ago
JSP
I found the problem. I mast be at the parent directory and enter there:

rmic [PackageName].[ClassName]
19 years ago
Moreover, with RMI you can distribute objects. Clients are allowed to use objects which lie at some remote server as if they existed locally.
19 years ago
Hello. I am trying to create the stub file of a class which is included in a package. The class is called client.java and the package Box. The class appears in a directory called Box along with the rest classes of the package. But when I am giving the command

rmic client.java

I get an error which says: "client.java doesn't contain type client as expected but Box.client. Please remove the file or make sure it appears in the correct subdirectory of the classpath"
Why am I getting this? It is the first time that I am using rmic with packages though.
19 years ago
I saw your reply just yesterday 'cause I was away on holidays. It helped me a lot, especially the link. Thanks!
19 years ago
okkkkkk, sorry
19 years ago
Hello,

I am building an RMI app and I need the client to be able to listen events that take place at the server. In other words I need a sort of a remote listener. Do you have any ideas how I can manage to do it?
19 years ago