I created a test project with tables, data/service contract classes and service and service group as following:

After deploying, I am even able to access and view the GetEntityList data using a .Net console application
ServiceReference1.
EntityServiceClient _Client = new ServiceReference1.EntityServiceClient();
ServiceReference1.
CallContext _CallContext = new ServiceReference1.CallContext();
_CallContext.Company =
"dat";
ServiceReference1.
CustomEntityDataContract[] _entityList = _Client.GetEntityList(_CallContext);
// ColorServiceGroup.ColorDC _Dc ;
foreach (ServiceReference1.CustomEntityDataContract _Dc in _entityList)
{
Console.WriteLine(_Dc.EntityName);
}
Console.ReadKey();
The problem is that I need to access it using a SOAP Client, tried creating lots of SOAP envelope messages but unable to view the service data. What I think I could be missing is the proper authentication tags in SOAP header, which I have no idea of, plz specify.
The header I have tried so far is like:
Any help would be highly appreciated.
*This post is locked for comments
I have the same question (0)