var wsProperty=function() {
wsProperty.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
wsProperty.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return wsProperty._staticInstance.get_path();},
getCount:function(xmlPacket,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'getCount',false,{xmlPacket:xmlPacket},succeededCallback,failedCallback,userContext); },
propertySearch:function(xmlPacket,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'propertySearch',false,{xmlPacket:xmlPacket},succeededCallback,failedCallback,userContext); },
propertySearch_AreaMap:function(xmlPacket,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'propertySearch_AreaMap',false,{xmlPacket:xmlPacket},succeededCallback,failedCallback,userContext); }}
wsProperty.registerClass('wsProperty',Sys.Net.WebServiceProxy);
wsProperty._staticInstance = new wsProperty();
wsProperty.set_path = function(value) { wsProperty._staticInstance.set_path(value); }
wsProperty.get_path = function() { return wsProperty._staticInstance.get_path(); }
wsProperty.set_timeout = function(value) { wsProperty._staticInstance.set_timeout(value); }
wsProperty.get_timeout = function() { return wsProperty._staticInstance.get_timeout(); }
wsProperty.set_defaultUserContext = function(value) { wsProperty._staticInstance.set_defaultUserContext(value); }
wsProperty.get_defaultUserContext = function() { return wsProperty._staticInstance.get_defaultUserContext(); }
wsProperty.set_defaultSucceededCallback = function(value) { wsProperty._staticInstance.set_defaultSucceededCallback(value); }
wsProperty.get_defaultSucceededCallback = function() { return wsProperty._staticInstance.get_defaultSucceededCallback(); }
wsProperty.set_defaultFailedCallback = function(value) { wsProperty._staticInstance.set_defaultFailedCallback(value); }
wsProperty.get_defaultFailedCallback = function() { return wsProperty._staticInstance.get_defaultFailedCallback(); }
wsProperty.set_path("/Webservices/wsProperty.asmx");
wsProperty.getCount= function(xmlPacket,onSuccess,onFailed,userContext) {wsProperty._staticInstance.getCount(xmlPacket,onSuccess,onFailed,userContext); }
wsProperty.propertySearch= function(xmlPacket,onSuccess,onFailed,userContext) {wsProperty._staticInstance.propertySearch(xmlPacket,onSuccess,onFailed,userContext); }
wsProperty.propertySearch_AreaMap= function(xmlPacket,onSuccess,onFailed,userContext) {wsProperty._staticInstance.propertySearch_AreaMap(xmlPacket,onSuccess,onFailed,userContext); }

