Re: how can only public some spring bean method as method!

2009-08-13 Thread sam wong
good, thanks Sagara 2009/8/13 Sagara Gunathunga : > Hi, > That's what i have mentioned in my last reply . Normally all the > public method on Spring bean will expose as  a web service operations. > If you don't want to  expose any particular method, you can define it > as a exclude operation

Re: how can only public some spring bean method as method!

2009-08-13 Thread Sagara Gunathunga
Hi, That's what i have mentioned in my last reply . Normally all the public method on Spring bean will expose as a web service operations. If you don't want to expose any particular method, you can define it as a exclude operation in service.xml file then that particular method will not expose a

Re: how can only public some spring bean method as method!

2009-08-13 Thread sam wong
Dear Sagara, how about I just only public some method as web server method? how to write services.xml? another question: where is the full structure services.xml ? Thanks Sam Wong 2009/8/13 Sagara Gunathunga : > Hi Sam, > > In the service.xml file you can exclude unwanted operations usin

Re: how can only public some spring bean method as method!

2009-08-13 Thread Sagara Gunathunga
Hi Sam, In the service.xml file you can exclude unwanted operations using using "excludeOperations" as follows. getUserAccountManager setUserAccountManager Thanks , On Thu, Aug 13, 2009 at 2:13 PM, sam wong wrote: > Hi,All > > I have a spring B

how can only public some spring bean method as method!

2009-08-13 Thread sam wong
Hi,All I have a spring Bean with many many method. but some method i don't want to public as WebService Method. like: public IUserAccountManager getUserAccountManager() { return userAccountManager; } public void setUserAccountManager(IUserAccountManager userAccountManager) {