I wrote a WCF Service, when I test the service it is working in simple windows form application that I created in .net for testing the service. But as I am not sure what language our client use to connect to this service I used SoapUI to test it and
it fails. (like even for Authentication that is working with .net app). What might be missing here? This is my wsdl:
http://104.130.90.244:8090/AcquisitionService.svc?wsdl
and this is my Authentication method:
public bool Authentication(CommonLibrary.Model.AuthHeader Authentication)
{
Model.Login login = null;
DAL.DataManager dal = new DAL.DataManager();
login = dal.GetUsernameandPasswordByPartnerID(Authentication.partnerID);
if (Authentication.Username == login.username && Authentication.Password == login.password)
{
Authenticated = true;
...
Go to the complete details ...