Hi All,
My application pool server is configured with SSO (net.tcp Endpoint Binding: windows), We want to use WCF to develop an external program and use SSO to log in to Epicor for some features, but We are unsure how to create a new session to login with SSO turned on, any help would be greatly appreciated.
If you want to use pure WCF without Epicor Session and ServiceModel client libraries, you will have to create new binding for server and client that supports Windows authentication and use it instead of https binding we show in WCF integration examples.
You cannot just reuse same net.tcp binding in external WCF progam, because it also uses special serialization approach.
1 Like
OK, thanks for your information.