Hello,
I have configured Silverlight to log to a WCF service successfully via the LogReceiverWebServiceTarget class.
It works, but I have a big problem:
My production site is running over https and it seems, that NLog stops to send logging messages over to the WCF service.
In fiddler there is no sign that the logger is calling the service. Over http everything works fine.
The configuration is as follows:
SimpleConfigurator.ConfigureForTargetLogging(
new LogReceiverWebServiceTarget()
{
EndpointAddress = "../LoggingService.svc",
UseBinaryEncoding = false
});
and the LoggingService derives from ILogReceiveServer.
Tobias