Questions tagged [remoteexception]
27 questions
1
vote
1 answer
Handle remote exception in Asynctask
Here's the Asynctask method:
public class Read extends AsyncTask {
ProgressDialog dialog;
@Override
protected void onPreExecute() {
// TODO Auto-generated method stub
}
@Override
protected…

Paritosh
- 367
- 5
- 20
1
vote
2 answers
The type java.rmi.RemoteException cannot be resolved. It is indirectly referenced from required .class files error in java
I'm really new to Java and trying to call web-service. I have taken a code from net
String message = "";
static Map output;
public static void main(String args[]) {
try {
String inputparam = "10000";
Service service = new…

Shirish Herwade
- 11,461
- 20
- 72
- 111
0
votes
1 answer
Java RMI RemoteException after sending last message
So I've made a client/server pair in Java using RMI. The point is to send messages from the client to the server and print out how many messages we've received and how many we've lost (im comparing it to UDP so dont ask why I'm expecting to lose…

Blue42
- 355
- 2
- 4
- 13
0
votes
1 answer
Power shell Invoke-Command NotSpecified: (The directory name is invalid.:String) [], RemoteException error
I am trying to run the following Invoke-Command that will run rabbitmq-service.bat on a remote computer with "remove" parameter. The command is executing perfectly with removing the rabbmitmq-service but with the following error "The directory name…

Amir Hussain
- 1
- 1
0
votes
0 answers
JavaFX RemoteException on ListView?
I have a JFXListView of JFXButtons. The code used to work correctly. I don't know what happened, but I am get the following exception when click a JFXButton of that JFXListView :
java.rmi.ServerException: RemoteException occurred in server thread;…

Sami
- 165
- 4
- 19
0
votes
1 answer
Getting java.rmi.RemoteException: EJB Exception Eventhough classpath, XMLs, Beans are correctly defined and deployed
I am having bad time debugging with this problem. I am migrating my codes from Java 1.4 to JDK 6 and Weblogic 8.1.5 to Weblogic 10.3. I have converted the deployment descriptors of EJBs using DDConverver utility of weblogic. Beans consists of…

Mitesh
- 1
- 1
- 1
0
votes
0 answers
500 remote exception while Process A try to access remote object from Process B connected via .NET remoting.(Client/server in the same machine)
I have a product with architecture that there are two processes . say Process A and Process B.
Process A is the main process calling Process B to provide some specific values.
Process B is running on port xxxx.
Process A makes a call to Process B…

Pawan Kumar
- 247
- 6
- 21
0
votes
0 answers
what may be the root cause of QueryParameterException in java?
yesterday i have run my application and it was throwing the below error.
[7/2/14 3:39:37:228 CDT] 0000002e SystemErr R Caused by: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
…

Saravanan
- 11,372
- 43
- 143
- 213
0
votes
0 answers
Exception creating connection to... When not in local
I know the question have already been asked but i tried all the solutions on this website and others with no result...
My problem :
I developp an application based in part on RMI, on localhost all is OK but when I start my application on my OVH…

user3394487
- 35
- 1
- 5
0
votes
2 answers
Hadoop demo Code not working
Hadoop word count example not working throwing Access Control Exception when executing command hadoop jar /home/meghna/Desktop/hadoop-1.1.2/hadoop-examples-1.1.2.jar wordcount /word.txt /out
following are the details of the exception.
13/06/30…

Mani
- 508
- 1
- 7
- 18
0
votes
1 answer
Java RMI simple Hello World program throwing RemoteException
I have this strange problem.
I'm trying to write a simple Hello World java program using RMI.
Here are my files, all belonging to the same package:
Hello.java:
package com.something;
import java.rmi.Remote;
import java.rmi.RemoteException;
public…

Natalia Zoń
- 980
- 2
- 12
- 22
0
votes
1 answer
the UnsupportedOperationException in RMI
I worked a simple program
But when you run the client at the command
This error appears
HelloClient exception: java.lang.UnsupportedOperationException: Not supported yet.
this my coded
Interface class
import java.rmi.*;
public…

Seetah
- 61
- 1
- 1
- 4