Hello all

,
I am trying to create a WebService object in my Flash document, but the WebService class does not do anything; meaning that the onLoad and onFault events don't fire. I have tried everying I could think of to include importing the WebServiceClasses and the DataBindingClasses into the projects library; but still nothing. Can someone tell me what I am doing wrong?
Below is a link to the working service:
Link to the Sample WebService

Code:
// CODE STARTS HERE
var log = new Log();
log.onLog = function(msg) { trace(msg); }
var wSrvc = null;
if (inited == null ) {
inited = true;
wSrvc = new WebService("http://www.omegusprime.com/webservice/Service1.asmx?WSDL", log);
wSrvc.onFault = function (f) {
trace("Fault: " + f.faultstring);
}
wSrvc.onLoad = function (wsdlDoc) {
trace("Loaded");
//wSrvc.getCall("EnterUser");
//wSrvc.EnterUser("Testee", "Testicle");
}
}