1. How to make a Java client for a WCF service secured with X.509? stackoverflow.comI 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.comMy scenario:
|
3. SOAP Security Negotiation Error in WCF Duplex service stackoverflow.comI'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.comMy 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 ... |