|
|||
กก |
import java.rmi.Remote; import java.rmi.RemoteException; public interface Hello extends Remote{
public void Hello();
public class HelloImpl implements Hello{
public void Hello(){ After compile your source file, please use the following command in console mode rmic -iiop HelloImpl After generation, you will find two new files in your class folder 1: _Hello_stub.class 2: _HelloImpl_Tie.class //*file:service.xml <?xml version="1.0"?> Make a jar file include all class files and description file, then put the jar to Jmin deploy folder
|
||