MISSING LABEL LblDomeReconnect

Issue #774 resolved
Nuno Gameiro created an issue

I've developed an ASCOM Dome Driver, but every time i tried to connect the driver, NINA throws the error "MISSING LABEL LblDomereconnect". I never had such Label on my project. It's a NINA error ?

Using Nightly Version #046

Comments (6)

  1. George Hilios

    Looks like a NullReferenceException is being thrown, possibly by your driver. The error message you see if because we don’t have a localization string for that error, which I’ll add.

    Can you share your logs so we can figure out if it is NINA or your driver?

  2. George Hilios

    Yeah, this looks like an exception in your driver, thrown when we set Connected = true

    [2021-02-14T20:08:37.6014] [ERROR] [Message] CheckDotNetExceptions ASCOM.AOSR.Dome ConnectedSet System.NullReferenceException: Object reference not set to an instance of an object.
    at ASCOM.AOSR.Dome.set_Connected(Boolean value) (See Inner Exception for details) at ASCOM.DriverAccess.MemberFactory.CheckDotNetExceptions(String memberName, Exception e) in C:\ASCOM Build\Export\ASCOM.DriverAccess\MemberFactory.cs:line 629
    at ASCOM.DriverAccess.MemberFactory.SetTargetInvocationExceptionHandler(String memberName, Exception e) in C:\ASCOM Build\Export\ASCOM.DriverAccess\MemberFactory.cs:line 647
    at ASCOM.DriverAccess.MemberFactory.CallMember(Int32 memberCode, String memberName, Type[] parameterTypes, Object[] parms) in C:\ASCOM Build\Export\ASCOM.DriverAccess\MemberFactory.cs:line 314
    at ASCOM.DriverAccess.AscomDriver.set_Connected(Boolean value) in C:\ASCOM Build\Export\ASCOM.DriverAccess\AscomDriver.cs:line 172
    at NINA.Model.MyDome.AscomDome.set_Connected(Boolean value)

  3. Log in to comment