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

