Background: We are currently looking at converting a piece of RTF text to a propriety format on a server. We currently have some spike code using the Richtextbox in the System.Windows.Controls namespace to convert the text to xaml and run it through a xslt transform to the required format.
This works fine in the spike but have concerns that running this code in a production windows service may cause some issues down the track.
(We had issues previously on another piece of code that was using the System.Drawing namespace in a windows service).
I was wondering if anyone here would be able to tell me if they have used System.Windows.Controls in anger within a Windows Service and did they find it safe to use. Or if you had any issues, what were they?