Basic HTTP Binding isn't configured properly
i have configured a WCF service with wsHTTPBinding but even then i get the error Contract requires Session, but Binding 'BasicHttpBinding' doesn't support it or isn't configured properly to support it. here is the service contract definition <ServiceContract(SessionMode:=SessionMode.Required)> Public Interface IPrivateService Here is the service implementation definition <ServiceBehavior(InstanceContextMode:=InstanceContextMode.PerSession)> Public Class PrivateService Implements IPrivateService Here is the config settings <services> <service behaviorConfiguration="behaviorAction" name="Viking