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