Hello,
To troubleshoot an issue, I tried to use System.Diagnostics.EventLog.WriteEntry to dump the content out to the application event viewer but for some reason, the message did not get written out. I remember I did that in the past and were successful. Not sure what I have missed this time.
What I did was simple, I have a receive and send shapes to get a very simple xml and save the same xml to another location. Between the receive and send, I have a construct message shape with message assignment. In the message assignment, I assigned the message out with the message in then wrote out:
System.Diagnostics.EventLog.WriteEntry("Testing success!","Information");
I have deployed, put a test.xml in the in folder, the message got consumed and saved in the out folder. Clearly, the orchestration does not have any error but the "Testing Success!" was not written out in the event log. What have I possibly missed?