views:

305

answers:

2

So I created a web-service for a co-worker to consume, but his department is using Java where everything my department is in .NET. On top of that we have Windows Integrated Authentication turned on in our IIS server. Is there some type of Java library/framework that provides windows integrated authentication credentials to Java clients?

I've found out more. They're using Java 1.3, and they're on a different domain.

+1  A: 
Tuzo
Well i think java.net.authenticator is out. I might have to use Basic auth on the web service.
Dave
A: 

Here's another free open source library, http://spnego.sourceforge.net/protected_soap_service.html, that can do integrated windows authentication.

Pat Gonzalez