I am creating a workflow on a develop machine and publishing it to a development crm system on s different machine
When the entry in the log gets generated all I get in the error log is ;
The description for Event ID 1 from source Dynamics cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
Import Legacy transactions - Create Transactions An unexpected error occurred.
Public Shared Function WriteToEventLog(strEvent As String, strLicence As String, strFileSerial As String) As Boolean Dim eventlog As EventLog Dim LogSource As String = "Dynamics" Dim LogName As String = "Application" Try If Not System.Diagnostics.EventLog.SourceExists(LogSource) Then System.Diagnostics.EventLog.CreateEventSource(LogSource, LogName) End If eventlog = New System.Diagnostics.EventLog() eventlog.Source = LogSource eventlog.WriteEntry("Licence " & strLicence & " Serial Number " & strFileSerial & vbCrLf & strEvent, EventLogEntryType.Warning, 1) Return True Catch ex As Exception Return False End Try Return False End Function
*This post is locked for comments