Advertisement
Guest User

Untitled

a guest
Aug 29th, 2014
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. spring project -> Properties -> Java Class Path -> libraries -> External Jar -> Located my jar used to call the c# methods.
  2.  
  3. spring project -> Properties -> Java Class Path -> libraries -> Located external jar added -> expand -> highlight Native Library Locaton -> path to where my dll's are located
  4.  
  5. MyJavaCallingComObject testObj = new MyJavaCallingComObject ();
  6. testObj.GetDetails("John Doe");
  7.  
  8. GetDetails = supposed to return user information given the user name
  9.  
  10. #
  11. # A fatal error has been detected by the Java Runtime Environment:
  12. #
  13. # Internal Error (os_windows_x86.cpp:143), pid=8644, tid=10476
  14. # guarantee(result == EXCEPTION_CONTINUE_EXECUTION) failed: Unexpected result from topLevelExceptionFilter
  15. #
  16. # JRE version: Java(TM) SE Runtime Environment (7.0_51-b13) (build 1.7.0_51-b13)
  17. # Java VM: Java HotSpot(TM) 64-Bit Server VM (24.51-b03 mixed mode windows-amd64 compressed oops)
  18. # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
  19. #
  20. # If you would like to submit a bug report, please visit:
  21. # http://bugreport.sun.com/bugreport/crash.jsp
  22. # The crash happened outside the Java Virtual Machine in native code.
  23. # See problematic frame for where to report the bug.
  24. #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement