var SMS=function() {
SMS.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
SMS.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return SMS._staticInstance.get_path();},
funSave:function(strCellNumber,strName,strEmailID,succeededCallback, failedCallback, userContext) {
/// <param name="strCellNumber" type="String">System.String</param>
/// <param name="strName" type="String">System.String</param>
/// <param name="strEmailID" type="String">System.String</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(), 'funSave',false,{strCellNumber:strCellNumber,strName:strName,strEmailID:strEmailID},succeededCallback,failedCallback,userContext); }}
SMS.registerClass('SMS',Sys.Net.WebServiceProxy);
SMS._staticInstance = new SMS();
SMS.set_path = function(value) {
SMS._staticInstance.set_path(value); }
SMS.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return SMS._staticInstance.get_path();}
SMS.set_timeout = function(value) {
SMS._staticInstance.set_timeout(value); }
SMS.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return SMS._staticInstance.get_timeout(); }
SMS.set_defaultUserContext = function(value) { 
SMS._staticInstance.set_defaultUserContext(value); }
SMS.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return SMS._staticInstance.get_defaultUserContext(); }
SMS.set_defaultSucceededCallback = function(value) { 
 SMS._staticInstance.set_defaultSucceededCallback(value); }
SMS.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return SMS._staticInstance.get_defaultSucceededCallback(); }
SMS.set_defaultFailedCallback = function(value) { 
SMS._staticInstance.set_defaultFailedCallback(value); }
SMS.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return SMS._staticInstance.get_defaultFailedCallback(); }
SMS.set_path("/Services/SMS.svc");
SMS.funSave= function(strCellNumber,strName,strEmailID,onSuccess,onFailed,userContext) {
/// <param name="strCellNumber" type="String">System.String</param>
/// <param name="strName" type="String">System.String</param>
/// <param name="strEmailID" type="String">System.String</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>
SMS._staticInstance.funSave(strCellNumber,strName,strEmailID,onSuccess,onFailed,userContext); }

