Secure Access to the .NET Web Service from Flex 3

We can successfully use the .NET 2.0 web service from the Flex / AS3 application. Besides SSL, how else can we make security more reliable (i.e., authentication)?

+3
source share
5 answers

You can use ASP.Net built-in to session management by decorating your web methods with

<EnableSession()>

Then, inside your method, you can verify that the user still has a valid session.

+2
source

, , - (WSE) , . , (.. ), https.

abut autentication, auth ( , ). - ( ) - IIS, NTLM . HTTPModule, , .

0
0

You can use asp.net authentication (e.g. forms authentication) without much effort. Protecting an asmx file is similar to protecting an aspx file. There's a ton of forms authentication information there, just search for “asp.net forms authentication”

0
source

If you use Microsoft technology, you can create a small Asp.Net/C# application that will ask for credentials before redirecting to the correct swf.

Thus, you can restrict access and have different SWF files depending on the user.

0
source

Source: https://habr.com/ru/post/1696837/


All Articles