1 /** 2 * com.sekati.services.ISOAPClient 3 * @version 1.0.3 4 * @author jason m horwitz | sekati.com 5 * Copyright (C) 2007 jason m horwitz, Sekat LLC. All Rights Reserved. 6 * Released under the MIT License: http://www.opensource.org/licenses/mit-license.php 7 */ 8 9 import com.sekati.core.CoreInterface; 10 11 /** 12 * Interface describing {@link SOAPClient}. 13 */ 14 interface com.sekati.services.ISOAPClient extends CoreInterface { 15 16 function connect(wsdl:String, port:String):Void; 17 18 function call(method:String, args:Array):Void; 19 }