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

