users@jax-rpc.java.net

RE: package javax.xml.rpc.Stub does not exist

From: Rajeswari <lgraji_at_yahoo.co.uk>
Date: Tue, 4 Jul 2006 02:31:12 -0700 (PDT)

Hi,
Code for Math Face

package math;

import java.rmi.Remote;
import java.rmi.RemoteException;

public interface MathFace extends Remote {
  public int add(int a, int b) throws RemoteException;
}

Code for MathImpl

package math;

import java.rmi.RemoteException;

public class MathImpl implements MathFace {
  public int add(int a, int b) throws RemoteException {
    return a + b;
  }
}
Thanks,
Rajeswari.
-- 
View this message in context: http://www.nabble.com/RE%3A-package-javax.xml.rpc.Stub-does-not-exist-tf1888886.html#a5164529
Sent from the JAX-RPC - User forum at Nabble.com.