Type.registerNamespace('Hoozone.Web.WebService'); Hoozone.Web.WebService.Comment = { path: "/WebService/Comment.asmx", GetByCreator:function(prefix,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "GetByCreator",{prefix:prefix}, onMethodComplete, onMethodTimeout); }, GetByPortal:function(prefix,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "GetByPortal",{prefix:prefix}, onMethodComplete, onMethodTimeout); }, GetByCreatorAndType:function(prefix,type,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "GetByCreatorAndType",{prefix:prefix,type:type}, onMethodComplete, onMethodTimeout); }, GetByPortalAndType:function(prefix,type,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "GetByPortalAndType",{prefix:prefix,type:type}, onMethodComplete, onMethodTimeout); }, DeleteComment:function(prefix,commentIDs,ID,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "DeleteComment",{prefix:prefix,commentIDs:commentIDs,ID:ID}, onMethodComplete, onMethodTimeout); }, DeleteComment_PostData:function(prefix,commentIDs,ID,postData,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "DeleteComment_PostData",{prefix:prefix,commentIDs:commentIDs,ID:ID,postData:postData}, onMethodComplete, onMethodTimeout); }, GetCommentsByContent:function(extraID,contentType,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "GetCommentsByContent",{extraID:extraID,contentType:contentType}, onMethodComplete, onMethodTimeout); }, GetCommentsByContent_PostData:function(toExtraID,contentType,postData,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "GetCommentsByContent_PostData",{toExtraID:toExtraID,contentType:contentType,postData:postData}, onMethodComplete, onMethodTimeout); }, GetCommentsByContentAndCount:function(toExtraID,contentType,commentCount,postData,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "GetCommentsByContentAndCount",{toExtraID:toExtraID,contentType:contentType,commentCount:commentCount,postData:postData}, onMethodComplete, onMethodTimeout); }, SaveComment:function(userName,password,commentContent,extraID,contentType,prefix,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "SaveComment",{userName:userName,password:password,commentContent:commentContent,extraID:extraID,contentType:contentType,prefix:prefix}, onMethodComplete, onMethodTimeout); }, SaveComment_PostData:function(userName,password,commentContent,extraID,contentType,prefix,postData,onMethodComplete, onMethodTimeout) {return Web.Net.ServiceMethodRequest.callMethod(this.path, "SaveComment_PostData",{userName:userName,password:password,commentContent:commentContent,extraID:extraID,contentType:contentType,prefix:prefix,postData:postData}, onMethodComplete, onMethodTimeout); } }