Type.registerNamespace('Mmunicator');
Mmunicator.MmunicatorWebService=function() {
Mmunicator.MmunicatorWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Mmunicator.MmunicatorWebService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Mmunicator.MmunicatorWebService._staticInstance.get_path();},
CreateMessage:function(text,lastCall,succeededCallback, failedCallback, userContext) {
/// <param name="text" type="String">System.String</param>
/// <param name="lastCall" type="Number">System.Int64</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'CreateMessage',false,{text:text,lastCall:lastCall},succeededCallback,failedCallback,userContext); },
GetDescriptor:function(lastCall,succeededCallback, failedCallback, userContext) {
/// <param name="lastCall" type="Number">System.Int64</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'GetDescriptor',false,{lastCall:lastCall},succeededCallback,failedCallback,userContext); }}
Mmunicator.MmunicatorWebService.registerClass('Mmunicator.MmunicatorWebService',Sys.Net.WebServiceProxy);
Mmunicator.MmunicatorWebService._staticInstance = new Mmunicator.MmunicatorWebService();
Mmunicator.MmunicatorWebService.set_path = function(value) {
Mmunicator.MmunicatorWebService._staticInstance.set_path(value); }
Mmunicator.MmunicatorWebService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return Mmunicator.MmunicatorWebService._staticInstance.get_path();}
Mmunicator.MmunicatorWebService.set_timeout = function(value) {
Mmunicator.MmunicatorWebService._staticInstance.set_timeout(value); }
Mmunicator.MmunicatorWebService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return Mmunicator.MmunicatorWebService._staticInstance.get_timeout(); }
Mmunicator.MmunicatorWebService.set_defaultUserContext = function(value) { 
Mmunicator.MmunicatorWebService._staticInstance.set_defaultUserContext(value); }
Mmunicator.MmunicatorWebService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return Mmunicator.MmunicatorWebService._staticInstance.get_defaultUserContext(); }
Mmunicator.MmunicatorWebService.set_defaultSucceededCallback = function(value) { 
 Mmunicator.MmunicatorWebService._staticInstance.set_defaultSucceededCallback(value); }
Mmunicator.MmunicatorWebService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return Mmunicator.MmunicatorWebService._staticInstance.get_defaultSucceededCallback(); }
Mmunicator.MmunicatorWebService.set_defaultFailedCallback = function(value) { 
Mmunicator.MmunicatorWebService._staticInstance.set_defaultFailedCallback(value); }
Mmunicator.MmunicatorWebService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return Mmunicator.MmunicatorWebService._staticInstance.get_defaultFailedCallback(); }
Mmunicator.MmunicatorWebService.set_enableJsonp = function(value) { Mmunicator.MmunicatorWebService._staticInstance.set_enableJsonp(value); }
Mmunicator.MmunicatorWebService.get_enableJsonp = function() { 
/// <value type="Boolean">Specifies whether the service supports JSONP for cross domain calling.</value>
return Mmunicator.MmunicatorWebService._staticInstance.get_enableJsonp(); }
Mmunicator.MmunicatorWebService.set_jsonpCallbackParameter = function(value) { Mmunicator.MmunicatorWebService._staticInstance.set_jsonpCallbackParameter(value); }
Mmunicator.MmunicatorWebService.get_jsonpCallbackParameter = function() { 
/// <value type="String">Specifies the parameter name that contains the callback function name for a JSONP request.</value>
return Mmunicator.MmunicatorWebService._staticInstance.get_jsonpCallbackParameter(); }
Mmunicator.MmunicatorWebService.set_path("/Services/MmunicatorWebService.asmx");
Mmunicator.MmunicatorWebService.CreateMessage= function(text,lastCall,onSuccess,onFailed,userContext) {
/// <param name="text" type="String">System.String</param>
/// <param name="lastCall" type="Number">System.Int64</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Mmunicator.MmunicatorWebService._staticInstance.CreateMessage(text,lastCall,onSuccess,onFailed,userContext); }
Mmunicator.MmunicatorWebService.GetDescriptor= function(lastCall,onSuccess,onFailed,userContext) {
/// <param name="lastCall" type="Number">System.Int64</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
Mmunicator.MmunicatorWebService._staticInstance.GetDescriptor(lastCall,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(Mmunicator.Descriptor) === 'undefined') {
Mmunicator.Descriptor=gtc("Mmunicator.Descriptor");
Mmunicator.Descriptor.registerClass('Mmunicator.Descriptor');
}

