I am trying to use optaplanner rostering solution as part of my app but I don't know java so I'm trying to use IKVM to convert classes to dlls and call their methods from my c# application but there are so many files and classes and I don't even know where to start from? which classes/dlls I need to get rostering work? what methods I should call to start rosting app? has anybody successfully done that before managed to use their java code from c# application? thanks heaps!
Call optaplanner dlls in c#
596 Views Asked by Ella At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in OPTAPLANNER
- Optaplanner Logger should also show customer id for each move
- How do you create a Collection of GenuineVariableDescriptors?
- Optaplanner finds unnecessary conflict for Custom dataset for curriculum example
- Returning multiple solutions to a scheduling issue with optaplanner
- How to get multiple depots in the Optaplanner cvrptw example?
- JsonMappingException Infinite recursion When Trying To Convert Vehicle Routing Solution to Json
- Optaplanner VRP ChainedGraph Value Range on PlanningEntity
- Construction Heuristic in KIE Project
- How to pass multiple Time Matrix (N*N) to optaplanner
- Optaplanner passing a variable through planning solution
- OptaPlanner Scalability
- Solver is too slow
- does OptaPlanner take care of TSPTW (or VRPTW ) with optional nodes?
- Optaplanner: Extend vehiclerouting example to include secure transport
- Using Optaplanner to solve VRPTWPD
Related Questions in IKVM
- Gephi's java default method not implemented in C# with an ikvm-from dll library
- Not able to override PDFTextStripper.writeString(String text, List<TextPosition> textPositions) method using c#?
- IKVM jar to dll issues
- Callback/Delegate to Java for handling some C# event
- java.io.FileInputStream -The type initializer for 'java.io.File' threw an exception
- How to use jar to dll converting result?
- TypeLoadException in C# form app with IKVM
- FOP with IKVM: No Images
- IKVM java.util.List error in remapping to properties!
- IKVM:Failed to initialize JAXP 1.3 DatatypeFactory class.in IKVM.OpenJDK.XML.Bind error
- Can a Java library compiled to a DLL be used in developing a WP7 application?
- produce non dependent ikvm dll from jar
- IKVM 7.0 - how to successfully create a DLL file from JAR
- HtmlUnit not waiting for AJAX to execute
- Trying To Extract Embedded File Attachments From Existing PDF Using C# .NET And PDFBox 1.7.0
Related Questions in ROSTERING
- Check Online/Offline User of Openfire and auto accept friend request Using Android
- Adjustments to Shift Rostering in pyworkforce/OR Tools - Non sequential Shifts
- How can anonymous users exchange presence information with valid users on Jabber (Ejabberd)
- Database model for a 24/7 Staff roster at a casino
- Neo4j - 24/7 Casino roster
- ejabberd: Tracking Roster and Presence cause error
- Quota script for a roster
- Is it an overconstrained rostering problem not addressed properly?
- Maximizing a combination of a series of values
- Openfire contact list sharing
- Minizinc. Count number of shifts in a cycle
- Automatic rostering in Google Sheets
- Nurse rostering implementation with very "hard" hard constraints
- Optaplanner ConstraintStream doesn't work
- Not able to make calls to mod_roster_odbc functions
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Before you dive into the complexities, try looking at the KIE Server, which allows you to run OptaPlanner projects outside of your app and communicate with them using REST API the server exposes.
A typical workflow would look like the following:
See OptaPlanner REST API documentation for more details. KIE Server Integration chapter of the OptaPlanner Workbench quickstart provides an example of optimizing a CloudBalancing dataset.