RE: Method authorization

2003-11-17 Thread chris
2003 11:27 PM To: [EMAIL PROTECTED] Subject: RE: Method authorization hi, I think you can do it by using the simple authorization handler provided by axis. (I think it is sufficient for your problems, it deals with wsdd and checks the authorization detail for a particular method, some time you may

RE: Method authorization

2003-11-14 Thread Chandrasegaram Jeyakumaran
November 14, 2003 7:27 AM > To: [EMAIL PROTECTED] > Subject: Method authorization > > Hi > > Suppose my web service has some methods: > > methodA > methodB > methodC > > How can I do authorization by methods? > > For instance: > > methodA and methodB

RE: Method authorization

2003-11-14 Thread chris
bject: Method authorization Hi Suppose my web service has some methods: methodA methodB methodC How can I do authorization by methods? For instance: methodA and methodB can be called just if the user is in an administrator role, methodC just for users with a manager role. Is it possible to

Re: Method authorization

2003-11-14 Thread Anne Thomas Manes
You need to write a handler to do this. At 07:27 AM 11/14/2003, you wrote: Hi Suppose my web service has some methods: methodA methodB methodC How can I do authorization by methods? For instance: methodA and methodB can be called just if the user is in an administrator role, methodC just for

Method authorization

2003-11-14 Thread Pablo
Hi Suppose my web service has some methods: methodA methodB methodC How can I do authorization by methods? For instance: methodA and methodB can be called just if the user is in an administrator role, methodC just for users with a manager role. Is it possible to do so? Authorization by method