Just got a request from a client because the Job Queue NAS is not working. Stopped working after a service restart. Looking through Event Viewer I see the following error.
'Já' is not an option. The existing options are: No, Yes
In the %APPDATA% folder for the service user I find a file called NaviBP.xml. This file includes a list of breakpoints from the last debugging session. It seems that the debugger writes this file and uses the Icelandic ‘Já’ instead of the required English ‘Yes’.
<?xml version="1.0" ?> <BreakpointList> <Object Type="Codeunit" ID="10010883" Name="E. Com Send-Receive Utilities"> <Breakpoint> <TriggerName>CreateSendInvoiceRequest</TriggerName> <CodeNo>8</CodeNo> <TriggerLine>32</TriggerLine> <Enabled>Já</Enabled> </Breakpoint> </Object> </BreakpointList>
After changing the <Enabled>Já</Enabled> to <Enabled>Yes</Enabled> the NAS should start normally. If those breakpoints are no longer needed it is fine to just remove the file.
I would even suggest using numbers “1” and “0” – that way you eliminate language completely.
That suggestion should be for Microsoft.