1 57 58 package inout.wsiftypes; 59 60 64 65 import java.util.*; 66 import org.apache.soap.*; 67 import org.apache.soap.rpc.*; 68 import org.apache.soap.util.xml.*; 69 70 public class InoutDoc 71 { 72 public void addEntry(Envelope env, SOAPContext reqCtx, SOAPContext resCtx) 73 throws Exception 74 { 75 System.out.println("Inside doc-style addEntry"); 76 } 79 80 public void getAddressFromName(Envelope env, SOAPContext reqCtx, SOAPContext resCtx) 81 throws Exception 82 { 83 throw new IllegalArgumentException ("Huh?"); 84 } 85 86 public void addNumbers(Envelope env, SOAPContext reqCtx, SOAPContext resCtx) 87 throws Exception 88 { 89 throw new IllegalArgumentException ("Huh?"); 90 } 91 92 public void getDate(Envelope env, SOAPContext reqCtx, SOAPContext resCtx) 93 throws Exception 94 { 95 throw new IllegalArgumentException ("Huh?"); 96 } 97 } 98 | Popular Tags |