var CrewContents=function() {
CrewContents.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
CrewContents.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return CrewContents._staticInstance.get_path();},
getCrewFeeds:function(Cid,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'getCrewFeeds',false,{Cid:Cid},succeededCallback,failedCallback,userContext); },
getCrewAllFeeds:function(Cid,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'getCrewAllFeeds',false,{Cid:Cid},succeededCallback,failedCallback,userContext); },
getGroupwareList:function(crew_url,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'getGroupwareList',false,{crew_url:crew_url},succeededCallback,failedCallback,userContext); },
getCrewMembersInShort:function(crew_url,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'getCrewMembersInShort',false,{crew_url:crew_url},succeededCallback,failedCallback,userContext); },
getFriendsInCrewShort:function(crew_url,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'getFriendsInCrewShort',false,{crew_url:crew_url},succeededCallback,failedCallback,userContext); },
getLastestArticles:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'getLastestArticles',false,{},succeededCallback,failedCallback,userContext); },
getPopularArticles:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'getPopularArticles',false,{},succeededCallback,failedCallback,userContext); }}
CrewContents.registerClass('CrewContents',Sys.Net.WebServiceProxy);
CrewContents._staticInstance = new CrewContents();
CrewContents.set_path = function(value) { CrewContents._staticInstance.set_path(value); }
CrewContents.get_path = function() { return CrewContents._staticInstance.get_path(); }
CrewContents.set_timeout = function(value) { CrewContents._staticInstance.set_timeout(value); }
CrewContents.get_timeout = function() { return CrewContents._staticInstance.get_timeout(); }
CrewContents.set_defaultUserContext = function(value) { CrewContents._staticInstance.set_defaultUserContext(value); }
CrewContents.get_defaultUserContext = function() { return CrewContents._staticInstance.get_defaultUserContext(); }
CrewContents.set_defaultSucceededCallback = function(value) { CrewContents._staticInstance.set_defaultSucceededCallback(value); }
CrewContents.get_defaultSucceededCallback = function() { return CrewContents._staticInstance.get_defaultSucceededCallback(); }
CrewContents.set_defaultFailedCallback = function(value) { CrewContents._staticInstance.set_defaultFailedCallback(value); }
CrewContents.get_defaultFailedCallback = function() { return CrewContents._staticInstance.get_defaultFailedCallback(); }
CrewContents.set_path("/Services/CrewContents.asmx");
CrewContents.getCrewFeeds= function(Cid,onSuccess,onFailed,userContext) {CrewContents._staticInstance.getCrewFeeds(Cid,onSuccess,onFailed,userContext); }
CrewContents.getCrewAllFeeds= function(Cid,onSuccess,onFailed,userContext) {CrewContents._staticInstance.getCrewAllFeeds(Cid,onSuccess,onFailed,userContext); }
CrewContents.getGroupwareList= function(crew_url,onSuccess,onFailed,userContext) {CrewContents._staticInstance.getGroupwareList(crew_url,onSuccess,onFailed,userContext); }
CrewContents.getCrewMembersInShort= function(crew_url,onSuccess,onFailed,userContext) {CrewContents._staticInstance.getCrewMembersInShort(crew_url,onSuccess,onFailed,userContext); }
CrewContents.getFriendsInCrewShort= function(crew_url,onSuccess,onFailed,userContext) {CrewContents._staticInstance.getFriendsInCrewShort(crew_url,onSuccess,onFailed,userContext); }
CrewContents.getLastestArticles= function(onSuccess,onFailed,userContext) {CrewContents._staticInstance.getLastestArticles(onSuccess,onFailed,userContext); }
CrewContents.getPopularArticles= function(onSuccess,onFailed,userContext) {CrewContents._staticInstance.getPopularArticles(onSuccess,onFailed,userContext); }
