Ask a Question related to ASP.NET Web Services, Design and Development.
-
DraguVaso #1
set permissions on webmethods
Hi,
For my webservice I need the folowwing security:
- all the webmethods must be accesible inside the LAN (for our employees)
- by the internet only some of the methods should be accessible (by our
customers, basicly some read-methods)
Is there a way to easily implement this?
Thanks,
Pieter
DraguVaso Guest
-
Overloading WebMethods
I have webservice and I need to overload a method but when overloading the method as following i got error message written below: public int... -
how to call webmethods in a batch
>> Does WebService support calling methods in a batch. I have the following two scenarios: case1 : say i need to call two webservice methods that... -
Webmethods in sorted order
can some one please let me know how to list WebMethods in a sorted order(or in a custom order) when I browse to the .asmx page. for eg. i have a... -
Multiple WebMethods in a Web Service
Yep - you need to have that Web Method attribute above every method you want to expose in your web service... "JP" <jpatel3@hotmail.com> wrote... -
selectively exposing webmethods
We need to be able to selectively expose webmethods. In other words, we have many clients who use our application in many different ways. We have... -
Yunus Emre ALPÖZEN [MCSD.NET] #2
Re: set permissions on webmethods
Run your publicly exposed webservices on a different port on IIS. Define a
firewall rule to access this port on your modem/firewall...
This is the easiest way...
--
Thanks,
Yunus Emre ALPÖZEN
BSc, MCSD.NET
"DraguVaso" <pietercoucke@hotmail.com> wrote in message
news:OvdQt8gfFHA.1444@TK2MSFTNGP10.phx.gbl...> Hi,
>
> For my webservice I need the folowwing security:
> - all the webmethods must be accesible inside the LAN (for our employees)
> - by the internet only some of the methods should be accessible (by our
> customers, basicly some read-methods)
>
> Is there a way to easily implement this?
>
> Thanks,
>
> Pieter
>
>
Yunus Emre ALPÖZEN [MCSD.NET] Guest
-
Dm. [MCAD.Net] #3
Re: set permissions on webmethods
If do you require to segregate web-methods to public/private/roles,
the most usable way is to make SoapExtension and SoapExtensionAttribute,
which will allow something like this:
[WebMethod(MessageName="GetXML"), SessionSecurityAttribute(RoleGroup=2)]
Regards, Dm.
"Yunus Emre ALPÖZEN [MCSD.NET]" <yemre@msakademik.net> wrote in message
news:%23ImJ9anfFHA.1444@TK2MSFTNGP10.phx.gbl...> Run your publicly exposed webservices on a different port on IIS. Define a
> firewall rule to access this port on your modem/firewall...
>
> This is the easiest way...
>
> --
>
> Thanks,
> Yunus Emre ALPÖZEN
> BSc, MCSD.NET
>
> "DraguVaso" <pietercoucke@hotmail.com> wrote in message
> news:OvdQt8gfFHA.1444@TK2MSFTNGP10.phx.gbl...>>> Hi,
>>
>> For my webservice I need the folowwing security:
>> - all the webmethods must be accesible inside the LAN (for our employees)
>> - by the internet only some of the methods should be accessible (by our
>> customers, basicly some read-methods)
>>
>> Is there a way to easily implement this?
>>
>> Thanks,
>>
>> Pieter
>>
>>
>
Dm. [MCAD.Net] Guest



Reply With Quote

