hello there, thanks for checking this. I am trying to extend the WebServiceConenctor class to make a class that checks a web service at set intervals and has some other functionality. I want to set the properties of the object in the constructor but I cant get it to work, also I want to be able to trigger the webservice from methods within the Check class but I think I have the syntax wrong.
If anyone could let me know what I’m doing wrong I would be really grateful. Thanks 
[AS]
class Check extends WebServiceConnector {
var active:Boolean;
//interval vars
private var checkInterval:Number;
private var checkFreq:Number;
private var log:String;
//constructor:
public function Check(frequency:Number, url:String, theOp:String) {
trace(“url set:”+url);
trace(“operation set:”+theOp);
this.WSDLURL(url);
this.operation = theOp;
this.suppressInvalidCalls = true;
checkFreq = frequency;
}
// methods:
function sendLog():String {
trace(“sendLog called”);
this.trigger();
return log;
}[/AS]