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

