> I built a test web service project in VS2005 (vb) and I'm tring to
> find if web service can modify SOAP Header variables and return them
[quoted text clipped - 57 lines]
>
> Thanks a lot.
Hi Mojeza,
You have to understand to patterns for Web Service Security and then
it will be a piece of cake!!!
Here is the stuff...
In the code you are trying to implement Direct Authentication pattern
(kind of). Meaning, Client and Web Service both knows each other and
own the credentials as well as username and password. According to
your requirements you want to have SSO (Single Sign On) and so on,
which is not recommend for Direct Authentication pattern.
You should follow Brokered Authentication pattern, which specifically
developed for the requirements, like you have.
There are three Brokered Authentication patterns:
1) Kerberos
2) X.509
3) STS - Security Token Service
Now it looks very complicated, isn't? Well it will be very simple if
you just spend 4-5 hours of reading on this book, which is Free
downloadable from Microsoft site
http://www.microsoft.com/downloads/details.aspx?familyid=3e02a6c8-128a-47c2-9f39
-4082582f3fe1&displaylang=en
I would suggest reading at least chapter #1 and #3 and Part II,
depending on your interest.
Good luck!
Cheers,
Amer
mojeza - 07 Feb 2007 14:03 GMT
> Hi Mojeza,
>
[quoted text clipped - 27 lines]
> Cheers,
> Amer
Hi Amer,
I downloaded this pdf book and will read it.
Thank you very much.