Code Monkey home page Code Monkey logo

openddr-csharp's People

Contributors

keilw avatar

Stargazers

 avatar

Watchers

 avatar  avatar

openddr-csharp's Issues

TwoStepDeviceBuilder Init exception

Hello
I ve got this exception "collection was modified; enumeration operation may not execute" during service initialisation.

It is thrown in Oddr.Builders.Devices.TwoStepDeviceBuilder.AfterOrderingCompleteInit after the first call of SortElement(step1Token);

foreach (String step1Token in orderedRules.Keys)
{
            SortElement(step1Token);
}

This exception was thrown because SortElement modifies orderedRules.Keys collection.

To solve the issue, I changed the code by :

String[] stringKeys = new String[orderedRules.Keys.Count];
orderedRules.Keys.CopyTo(stringKeys, 0);
foreach (String step1Token in stringKeys)
{ 
            SortElement(step1Token);
}

InitializationException with ODDR Data release 1.32

Running the console application of the OpenDDR-Simple solution hits an exception when running againt the 1.32 release file-set, it works fine with the 1.31 release though.
I'm super new to this project and am not yet capable of giving a more qualified answer or even issue a PR. So here's the exception I get:

W3c.Ddr.Exceptions.InitializationException
  HResult=0x80131500
  Message=
  Source=<Cannot evaluate the exception source>
  StackTrace:
<Cannot evaluate the exception stack trace>

Inner Exception 1:
Exception: Can not parse oddr.ua.device.builder.path: C:\devicedetection\devicedata\BuilderDataSource.xml

As said, replacing all the files in the devicedata directory with the 1.31 release package works.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.