I am writing an application in which application errors are logged and posted to a listening HTTP port on our server. We decided against email since many of the clients running the server "would not be able to send anything through SMTP" (according to boss dude)
I was just going to send the data as-is using log4net and a custom-written HTTPAppender.
I'm wondering about possible security implications of using this approach, or whether there's a better one out there. The listening port would of course be protected against SQL injections and the like.