Hi,
If I connect to a WCF service using ChannelFactory:
IService1 service1 = ChannelFactory<IService1>.CreateChannel(tcpBinding,
endpointAddress);
How do i pass client credentials (e.g username, password)?
All examples i could find use generated proxy and class is inherited
from Client...
more >>
HI,
I'm trying to implement username authentication for a WCF service
(hosted in ServiceHost, not IIS) and once service starts it gets to
Faulted state if i specify:
tcpBinding.Security.Message.ClientCredentialType =
MessageCredentialType.UserName;
Here's the piece of code where servi...
more >>
Hi, all
I've got a windows service (server) application and a winforms (client)
application. What I need to do is to host a web service in the windows
service application so the client can request information about its current
state and request server's internal data to change on user's behalf, ...
more >>