Skip to content
DataMiner DoJo

More results...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages
Search in posts
Search in pages
Log in
Menu
  • Updates & Insights
  • Questions
  • Learning
    • E-learning Courses
    • Empower Replay: Limited Edition
    • Tutorials
    • Open Classroom Training
    • Certification
      • DataMiner Fundamentals
      • DataMiner Configurator
      • DataMiner Automation
      • Scripts & Connectors Developer: HTTP Basics
      • Scripts & Connectors Developer: SNMP Basics
      • Visual Overview – Level 1
      • Verify a certificate
    • Video Library
    • Books We Like
    • >> Go to DataMiner Docs
  • Expert Center
    • Solutions & Use Cases
      • Solutions
      • Use Case Library
    • Markets & Industries
      • Media production
      • Government & defense
      • Content distribution
      • Service providers
      • Partners
      • OSS/BSS
    • DataMiner Insights
      • Security
      • System Architecture
      • DataMiner Releases & Updates
    • Agile
      • Agile Webspace
      • Everything Agile
        • The Agile Manifesto
        • Best Practices
        • Retro Recipes
      • Methodologies
        • The Scrum Framework
        • Kanban
        • Extreme Programming
      • Roles
        • The Product Owner
        • The Agile Coach
        • The Quality & UX Coach (QX)
    • DataMiner DevOps Professional Program
  • Downloads
  • More
    • Feature Suggestions
    • Climb the leaderboard!
    • Swag Shop
    • Contact
      • General Inquiries
      • DataMiner DevOps Support
      • Commercial Requests
    • Global Feedback Survey
  • PARTNERS
    • All Partners
    • Technology Partners
    • Strategic Partner Program
    • Deal Registration
  • >> Go to dataminer.services

Method not found: Microsoft.Extensions.Logging.ILoggerFactory

Solved1.26K views5th June 2024
2
Aditiben Desai [DevOps Member]372 19th March 2024 0 Comments

Hello,

I am adding QAction for  a protocol and have added Dlls: Newtonsoft.Json.dll;ff-netF48-server-sdk.dll;Microsoft.Extensions.Logging.Abstractions.dll;Microsoft.Extensions.Logging.Configuration.dll;Microsoft.Extensions.Logging.Console.dll;Microsoft.Extensions.Logging.dll;Microsoft.IdentityModel.Logging.dll.
The error I am getting is:

System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.MissingMethodException: Method not found: 'Microsoft.Extensions.Logging.ILoggerFactory Microsoft.Extensions.Logging.LoggerFactory.Create(System.Action`1<Microsoft.Extensions.Logging.ILoggingBuilder>)'.
   at io.harness.cfsdk.client.api.CfClient.SetUpDefaultLogging(Config config)
   at io.harness.cfsdk.client.api.CfClient..ctor()
   at io.harness.cfsdk.client.api.CfClient.<>c.<.cctor>b__29_0()
   at System.Lazy`1.CreateValue()
--- End of stack trace from previous location where exception was thrown ---
Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 5th June 2024

2 Answers

  • Active
  • Voted
  • Newest
  • Oldest
1
Michiel Saelen [SLC] [DevOps Enabler]5.63K Posted 20th March 2024 0 Comments

Hi Aditiben,

All QActions for all elements hosted on the DMA will run in the same SLScripting process. When a QAction triggers that uses certain DLLs that are not yet loaded it will search for that DLL on the DMA. DLL files stored in C:\Skyline DataMiner\Files\ will take precedence over DLL files in other folders if they are not strongly named (signed). This is standard Microsoft .NET assembly resolving behavior. If the files in C:\Skyline DataMiner\Files\ do not take precedence, DLL files stored in C:\Skyline DataMiner\ProtocolScripts\DllImport will take precedence over DLL files in other folders. This means if DM has in those folders an older DLL version you might end up with the missing method exception.

Conclusion: Make sure if you are using DLLs that exist in the C:\Skyline DataMiner\Files\ folder or in the C:\Skyline DataMiner\ProtocolScripts\DllImport folder, that you load the same version in your solution. This way you will see from your solution that these methods do not exist in those DLL versions.

More info can be found here:
dllImport attribute | DataMiner Docs

Marieke Goethals [SLC] [DevOps Catalyst] Selected answer as best 5th June 2024
0
Aditiben Desai [DevOps Member]372 Posted 20th March 2024 4 Comments

Hello,

I am trying to run Harness SDK file through QActions in a protocol. I ahve also added Serilog and Serilog.Extensions.Logging dll’s but its still showing an error as below:

System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.MissingMethodException: Method not found: 'io.harness.cfsdk.client.api.ConfigBuilder io.harness.cfsdk.client.api.ConfigBuilder.LoggerFactory(Microsoft.Extensions.Logging.ILoggerFactory)'.
   at QAction.Run(SLProtocol protocol)
   --- End of inner exception stack trace ---
   at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
   at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
   at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
   at System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)
   at CManagedScript.Run(CManagedScript* , Int32 iDmaId, Int32 iEid, Int32 trigger, Int32 iCookie, IUnknown* pILog, IUnknown* pProtocol, tagVARIANT* varParameters, tagVARIANT* varRowInfo, tagVARIANT* pvarReturn)
InnerException:
Michiel Saelen [SLC] [DevOps Enabler] Posted new comment 26th March 2024
Michiel Saelen [SLC] [DevOps Enabler] commented 25th March 2024

Did you check if the dll’s you’re using in your solution have the correct version as on the DM agent or if there are any other connectors using older versions of those dlls?

Michiel Saelen [SLC] [DevOps Enabler] commented 25th March 2024

FYI: You wrote an answer to your question. This will typically go unnoticed by the community that this is a follow-up question. Try to add comments to your question or comment on other people. Unless you solved your problem and you want to post the answer yourself.

Aditiben Desai [DevOps Member] commented 25th March 2024

Hi Michiel,

yes, I double checked and the DLL’s versions are aligned with DM versions.

Michiel Saelen [SLC] [DevOps Enabler] commented 26th March 2024

If you are sure that the method should be available in the DLL and you are still seeing this exception, then you can restart the SLScripting process in order (this is one of the processes that can be restarted without DM restart). This should ensure the DLLs are refreshed if there is any update to any of them. If you are still seeing the exception after that, then it means that the DDL loaded does not have the method.

Please login to be able to comment or post an answer.

My DevOps rank

DevOps Members get more insights on their profile page.

My user earnings

0 Dojo credits

Spend your credits in our swag shop.

0 Reputation points

Boost your reputation, climb the leaderboard.

Promo banner DataMiner DevOps Professiona Program
DataMiner Integration Studio (DIS)
Empower Katas
Privacy Policy • Terms & Conditions • Contact

© 2025 Skyline Communications. All rights reserved.

DOJO Q&A widget

Can't find what you need?

? Explore the Q&A DataMiner Docs