var GrayRoundPostViewWebService=function() {
GrayRoundPostViewWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
GrayRoundPostViewWebService.prototype={
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(GrayRoundPostViewWebService.get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
DeleteCommentWebService:function(strPostID,strSeqID,strCommentType,succeededCallback, failedCallback, userContext) {
return this._invoke(GrayRoundPostViewWebService.get_path(), 'DeleteCommentWebService',false,{strPostID:strPostID,strSeqID:strSeqID,strCommentType:strCommentType},succeededCallback,failedCallback,userContext); },
DeleteGuestBookWebService:function(guestType,seqID,succeededCallback, failedCallback, userContext) {
return this._invoke(GrayRoundPostViewWebService.get_path(), 'DeleteGuestBookWebService',false,{guestType:guestType,seqID:seqID},succeededCallback,failedCallback,userContext); }}
GrayRoundPostViewWebService.registerClass('GrayRoundPostViewWebService',Sys.Net.WebServiceProxy);
GrayRoundPostViewWebService._staticInstance = new GrayRoundPostViewWebService();
GrayRoundPostViewWebService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; GrayRoundPostViewWebService._staticInstance._path = value; }
GrayRoundPostViewWebService.get_path = function() { return GrayRoundPostViewWebService._staticInstance._path; }
GrayRoundPostViewWebService.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
GrayRoundPostViewWebService._staticInstance._timeout = value; }
GrayRoundPostViewWebService.get_timeout = function() { 
return GrayRoundPostViewWebService._staticInstance._timeout; }
GrayRoundPostViewWebService.set_defaultUserContext = function(value) { 
GrayRoundPostViewWebService._staticInstance._userContext = value; }
GrayRoundPostViewWebService.get_defaultUserContext = function() { 
return GrayRoundPostViewWebService._staticInstance._userContext; }
GrayRoundPostViewWebService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; GrayRoundPostViewWebService._staticInstance._succeeded = value; }
GrayRoundPostViewWebService.get_defaultSucceededCallback = function() { 
return GrayRoundPostViewWebService._staticInstance._succeeded; }
GrayRoundPostViewWebService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; GrayRoundPostViewWebService._staticInstance._failed = value; }
GrayRoundPostViewWebService.get_defaultFailedCallback = function() { 
return GrayRoundPostViewWebService._staticInstance._failed; }
GrayRoundPostViewWebService.set_path("/GrayRound/GrayRoundPostViewWebService.asmx");
GrayRoundPostViewWebService.HelloWorld= function(onSuccess,onFailed,userContext) {GrayRoundPostViewWebService._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
GrayRoundPostViewWebService.DeleteCommentWebService= function(strPostID,strSeqID,strCommentType,onSuccess,onFailed,userContext) {GrayRoundPostViewWebService._staticInstance.DeleteCommentWebService(strPostID,strSeqID,strCommentType,onSuccess,onFailed,userContext); }
GrayRoundPostViewWebService.DeleteGuestBookWebService= function(guestType,seqID,onSuccess,onFailed,userContext) {GrayRoundPostViewWebService._staticInstance.DeleteGuestBookWebService(guestType,seqID,onSuccess,onFailed,userContext); }
