var PhotoService=function() {
PhotoService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PhotoService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return PhotoService._staticInstance.get_path();},
getPhotoSlideNode:function(targetNode,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'getPhotoSlideNode',false,{targetNode:targetNode},succeededCallback,failedCallback,userContext); }}
PhotoService.registerClass('PhotoService',Sys.Net.WebServiceProxy);
PhotoService._staticInstance = new PhotoService();
PhotoService.set_path = function(value) { PhotoService._staticInstance.set_path(value); }
PhotoService.get_path = function() { return PhotoService._staticInstance.get_path(); }
PhotoService.set_timeout = function(value) { PhotoService._staticInstance.set_timeout(value); }
PhotoService.get_timeout = function() { return PhotoService._staticInstance.get_timeout(); }
PhotoService.set_defaultUserContext = function(value) { PhotoService._staticInstance.set_defaultUserContext(value); }
PhotoService.get_defaultUserContext = function() { return PhotoService._staticInstance.get_defaultUserContext(); }
PhotoService.set_defaultSucceededCallback = function(value) { PhotoService._staticInstance.set_defaultSucceededCallback(value); }
PhotoService.get_defaultSucceededCallback = function() { return PhotoService._staticInstance.get_defaultSucceededCallback(); }
PhotoService.set_defaultFailedCallback = function(value) { PhotoService._staticInstance.set_defaultFailedCallback(value); }
PhotoService.get_defaultFailedCallback = function() { return PhotoService._staticInstance.get_defaultFailedCallback(); }
PhotoService.set_path("/PhotoService.asmx");
PhotoService.getPhotoSlideNode= function(targetNode,onSuccess,onFailed,userContext) {PhotoService._staticInstance.getPhotoSlideNode(targetNode,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(nodeInformation) === 'undefined') {
var nodeInformation=gtc("nodeInformation");
nodeInformation.registerClass('nodeInformation');
}
