>I'm trying to develop a proof of concept for my company using WSE. We
>actually have a relatively simple goal. We have a web application that uses
[quoted text clipped - 10 lines]
>
>Thanks.
So there's no way to set this up via policy? I was getting the impression
that I could just flip some switches to flow Windows authentication through.
I have done some initial research, but I was wanting to get experienced input
prior to going too far down the wrong path.

Signature
J. Ambrose Little
ASP.NET MVP/ASPInsider
-----
Non nobis Domine non nobis sed nomini Tuo da gloriam.
> Hi,
>
[quoted text clipped - 5 lines]
> "Username/Password" in Digest too, or roll out your own
> "UsertokenManager".
Julie Lerman - 24 Jun 2005 01:58 GMT
Hey Ambrose
I haven't done it this way yet (more focused on UsernameTokens for initial
authentication). However, I did notice that option in the WSE3 settings
tool - all windows authentication - no username, no digital cetificates -
but have no idea what the encryption/signature ramifications are. I can look
at this further.
Short of that, you could always use a UsernameToken, set it up for working
with Active Directory (i.e. sendPlainText) but have a Web Server certificate
on the webserver so that you can encrypt the UsernameToken on it's way over.
YOu could easily install the server's public key on the client machines
along with the client application.
Policy handles all of this except for actually constructing the username
token and adding it into the proxy.Credentials (the wse3 way) or the
context.security.tokens (the wse2 way). You can just do this part in code.
Make sense?
Julie
> So there's no way to set this up via policy? I was getting the impression
> that I could just flip some switches to flow Windows authentication
[quoted text clipped - 12 lines]
>> "Username/Password" in Digest too, or roll out your own
>> "UsertokenManager".
Julie Lerman - 24 Jun 2005 14:15 GMT
as I suspected, this is the method that uses Kerberos tokens. A topic that
I know very little about.
julie
> Hey Ambrose
>
[quoted text clipped - 35 lines]
>>> "Username/Password" in Digest too, or roll out your own
>>> "UsertokenManager".
serzsa - 24 Jun 2005 06:52 GMT
Take a look at this topic in WSE3.0 Docs:
ms-help://MS.WSE30.1033/WSE3.0/html/0246eb35-4599-4fec-beea-af0419fe8926.htm
One of the "turnkey" scenarios that might be close to what you're looking
for is <usernameOverCertificateSecurity>. It's totally configurable via
policy and it looks like UsernameToken in WSE3.0 scenarios is automatically
checked against windows accounts by service for authentication purposes. The
only thing to have is a server X509 installed on the client as well - this
way the server is authenticated.
The HOL-202 (security) that's available for download with WSE3.0 can be
helpful as well.
> So there's no way to set this up via policy? I was getting the impression
> that I could just flip some switches to flow Windows authentication through.
[quoted text clipped - 10 lines]
> > "Username/Password" in Digest too, or roll out your own
> > "UsertokenManager".
serzsa - 24 Jun 2005 07:01 GMT
And yes, if you're doing it over https, then it's even easier:
<usernameOverTransportSecurity> - no X509 worries at all.
> Take a look at this topic in WSE3.0 Docs:
> ms-help://MS.WSE30.1033/WSE3.0/html/0246eb35-4599-4fec-beea-af0419fe8926.htm
[quoted text clipped - 23 lines]
> > > "Username/Password" in Digest too, or roll out your own
> > > "UsertokenManager".
J. Ambrose Little - 24 Jun 2005 14:53 GMT
Thanks to everyone. I think I've now got an idea of what I'd like to do.

Signature
J. Ambrose Little
ASP.NET MVP/ASPInsider
-----
Non nobis Domine non nobis sed nomini Tuo da gloriam.