Interoperability : WCF Secured Service, .NET Client, SoapUI, Java Client
Hi Guys, I had a requirement to make a secured WCF service to be hosted in HTTPS and the credentials must be passed with the soap header within the username token tags. So this post is about that. 1) WCF Service public class MyService : IMyService { public ReturnMsg SaveTransaction(Transaction objTransaction, Patient objPatient) { System.Data.OracleClient.OracleConnection con = new System.Data.OracleClient.OracleConnection(); System.Data.OracleClient.OracleCommand cmd = new System.Data.OracleClient.OracleCommand(); ReturnMsg objReturnMsg = new ReturnMsg() { QaidNo = -1 }; //The Logics have been removed ...