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

