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

