1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
package classes.check
{
import classes.responder.MyResponder;
import mx.controls.Alert;
import mx.rpc.AsyncToken;
import mx.rpc.soap.WebService;
import services.wsiglooverifimpl.WSIglooVerifImpl;
public class CheckRegistration
{
private var myService:WebService;
public function CheckRegistration()
{
myService = new WebService();
myService.wsdl = "http://localhost:8080/Proj_verif_WS/services/WSProjVerifImpl?wsdl";
myService.loadWSDL();
}
public function about():String {
return myService.aboutWS().toString();
}
}
} |