var WSLog=function() {
WSLog.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WSLog.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return WSLog._staticInstance.get_path();},
DoLog:function(fromid,fromref,toid,toref,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DoLog',true,{fromid:fromid,fromref:fromref,toid:toid,toref:toref},succeededCallback,failedCallback,userContext); },
GetHtmlstring:function(htmlkey,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetHtmlstring',false,{htmlkey:htmlkey},succeededCallback,failedCallback,userContext); },
GetItemReportInfo:function(style,color,fromobj,frommaster,refid,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetItemReportInfo',false,{style:style,color:color,fromobj:fromobj,frommaster:frommaster,refid:refid},succeededCallback,failedCallback,userContext); }}
WSLog.registerClass('WSLog',Sys.Net.WebServiceProxy);
WSLog._staticInstance = new WSLog();
WSLog.set_path = function(value) { WSLog._staticInstance.set_path(value); }
WSLog.get_path = function() { return WSLog._staticInstance.get_path(); }
WSLog.set_timeout = function(value) { WSLog._staticInstance.set_timeout(value); }
WSLog.get_timeout = function() { return WSLog._staticInstance.get_timeout(); }
WSLog.set_defaultUserContext = function(value) { WSLog._staticInstance.set_defaultUserContext(value); }
WSLog.get_defaultUserContext = function() { return WSLog._staticInstance.get_defaultUserContext(); }
WSLog.set_defaultSucceededCallback = function(value) { WSLog._staticInstance.set_defaultSucceededCallback(value); }
WSLog.get_defaultSucceededCallback = function() { return WSLog._staticInstance.get_defaultSucceededCallback(); }
WSLog.set_defaultFailedCallback = function(value) { WSLog._staticInstance.set_defaultFailedCallback(value); }
WSLog.get_defaultFailedCallback = function() { return WSLog._staticInstance.get_defaultFailedCallback(); }
WSLog.set_path("/WSLog.asmx");
WSLog.DoLog= function(fromid,fromref,toid,toref,onSuccess,onFailed,userContext) {WSLog._staticInstance.DoLog(fromid,fromref,toid,toref,onSuccess,onFailed,userContext); }
WSLog.GetHtmlstring= function(htmlkey,onSuccess,onFailed,userContext) {WSLog._staticInstance.GetHtmlstring(htmlkey,onSuccess,onFailed,userContext); }
WSLog.GetItemReportInfo= function(style,color,fromobj,frommaster,refid,onSuccess,onFailed,userContext) {WSLog._staticInstance.GetItemReportInfo(style,color,fromobj,frommaster,refid,onSuccess,onFailed,userContext); }
