Guest User

Untitled

a guest
Aug 15th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.51 KB | None | 0 0
  1. package javaarmclient;
  2.  
  3. /**
  4.  *
  5.  * @author cedric
  6.  */
  7. public class JavaARMClient {
  8.  
  9.     /**
  10.      * @param args the command line arguments
  11.      */
  12.     public static void main(String[] args) {
  13.         System.out.println(hello("test"));
  14.     }
  15.  
  16.     private static String hello(java.lang.String name) {
  17.         arm.mine.JavaARMService_Service service = new arm.mine.JavaARMService_Service();
  18.         arm.mine.JavaARMService port = service.getJavaARMServicePort();
  19.         return port.hello(name);
  20.     }
  21.  
  22. }
Add Comment
Please, Sign In to add comment