WCF « security « Java Enterprise Q&A





1. How to make a Java client for a WCF service secured with X.509?    stackoverflow.com

I have a WCF service that uses X.509 certificates for authentication. What's the best method of creating a Java client that can use that service? I've heard of Axis, CXF, Tango, ...

2. Verifying caller/server in WCF    stackoverflow.com

My scenario:

  • Many WCF clients which are in environments outside of my control
  • Server will either be mine OR in an environment outside of my control
So worst case the client and the server ...

3. SOAP Security Negotiation Error in WCF Duplex service    stackoverflow.com

I'm working on a WCF service with duplex communications and having an issue getting it to work anywhere other than through localhost on my dev machine. No matter what I do, it ...

4. How to create Eclipse Java Client to call WCF services using NTLM security ?    coderanch.com

My friends, I need to create a Java Web Service client in Eclipse to call a .NET WCF service in IIS 6.0 using Integrated Windows Authentication? I searched online and wrote the code like this: package org.calcserviceclient.client; import java.io.IOException; import org.apache.commons.httpclient.Credentials; import org.apache.commons.httpclient.HttpClient; import org.apache.commons.httpclient.HttpException; import org.apache.commons.httpclient.HttpMethodBase; import org.apache.commons.httpclient.NTCredentials; import org.apache.commons.httpclient.auth.AuthScope; import org.apache.commons.httpclient.methods.GetMethod; public class CalcServiceClientTest { /** * @param args ...