<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Thanks Xavier, in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003513#M31126</link>
    <description>&lt;P&gt;Thanks Xavier,&lt;/P&gt;

&lt;P&gt;I loaded the project libpxcclr.jni_vs2010 and i have edited the pxcmspeechrecognition.cpp&lt;/P&gt;

&lt;P&gt;I have change the line&amp;nbsp;&lt;/P&gt;

&lt;P&gt;AsyncCallback &lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;OnRecognizedCb&lt;/SPAN&gt;(true, "OnRecognized", "(Lintel/rssdk/PXCMSpeechRecognition$RecognitionData;)V");&lt;/P&gt;

&lt;P&gt;with&amp;nbsp;&lt;/P&gt;

&lt;P&gt;AsyncCallback &lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;OnRecognizedCb&lt;/SPAN&gt;(true, "OnRecognition", "(Lintel/rssdk/PXCMSpeechRecognition$RecognitionData;)V");&lt;/P&gt;

&lt;P&gt;And i have recompiled the DLL&lt;/P&gt;

&lt;P&gt;Now, there isn't any exception on StartRec but the OnRecognition callback is never invoked.&lt;/P&gt;

&lt;P&gt;I have seen that in StartRec function on cpp file use an SRHandler wrapper. This handler call invoke on&amp;nbsp;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;OnRecognizedCb when an OnRecognition occurs from the recognition engine.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;Alessio&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 06 Oct 2015 15:29:48 GMT</pubDate>
    <dc:creator>Alessio_Vinerbi</dc:creator>
    <dc:date>2015-10-06T15:29:48Z</dc:date>
    <item>
      <title>JNI Exception with Java PXCMSpeechRecognition.StartRec</title>
      <link>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003509#M31122</link>
      <description>&lt;P style="word-wrap: break-word; font-size: 12px; -webkit-text-size-adjust: 100%;"&gt;Hello to all,&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px; -webkit-text-size-adjust: 100%;"&gt;I have a problem with speech recognition in Java.&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px; -webkit-text-size-adjust: 100%;"&gt;I have successfully created a AudioSource and implementation of PXCMSpeechRecognition but when I try to call the function&amp;nbsp;&lt;SPAN style="font-weight: 700;"&gt;PXCMSpeechRecognition.StartRec&lt;/SPAN&gt;, an exception occurs&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px; -webkit-text-size-adjust: 100%;"&gt;&lt;EM&gt;&lt;SPAN style="font-weight: 700;"&gt;java.lang.NoSuchMethodError: OnRecognized&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px; -webkit-text-size-adjust: 100%;"&gt;&amp;nbsp;&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px; -webkit-text-size-adjust: 100%;"&gt;If I try to add a function OnRecognized within my handler works but the callback is invoked only OnAlert&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px; -webkit-text-size-adjust: 100%;"&gt;&amp;nbsp;&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px; -webkit-text-size-adjust: 100%;"&gt;Can someone please help me ?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 05:04:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003509#M31122</guid>
      <dc:creator>Alessio_Vinerbi</dc:creator>
      <dc:date>2015-10-05T05:04:38Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003510#M31123</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Can you give us details about your handler?&lt;/P&gt;

&lt;P&gt;Did you get the prototypes like in this example ?&lt;/P&gt;

&lt;PRE class="brush:java;"&gt;class MyHandler implements PXCMSpeechRecognition::Handler {

   public void OnRecognition(PXCMSpeechRecognition.RecognitionData data) {
       //process data
   }

};&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 13:41:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003510#M31123</guid>
      <dc:creator>Xavier_H_Intel</dc:creator>
      <dc:date>2015-10-05T13:41:10Z</dc:date>
    </item>
    <item>
      <title>Thanks Xavier,</title>
      <link>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003511#M31124</link>
      <description>&lt;P&gt;Thanks Xavier,&lt;/P&gt;

&lt;P&gt;Yes, but there is also OnAlert function.&lt;/P&gt;

&lt;P&gt;My Handler is&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:java;"&gt;class MyHandler implements PXCMSpeechRecognition::Handler
{
     public void OnRecognition(PXCMSpeechRecognition.RecognitionData data)
     {
     }

     public void OnAlert(PXCMSpeechRecognition.AlertData data) 
     {
     }
}


/////////////////// and i call StartRec

recognitionEngine.StartRect(source, new MyHandler());&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;When i call StartRec, i have an exception "&lt;STRONG&gt;&lt;EM style="font-size: 12px; line-height: 18px;"&gt;java.lang.NoSuchMethodError: OnRecognized&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;"&lt;/P&gt;

&lt;P&gt;I had a look at the C ++ code, and actually he looks for a function called OnRecognized.&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Indeed, if added, only for testing purposes, the function inside my handler:&lt;/SPAN&gt;&lt;/P&gt;

&lt;PRE class="brush:java;" style="font-size: 13.008px; line-height: 19.512px;"&gt;public void OnRecognized(PXCMSpeechRecognition.RecognitionData data)
{
}&lt;/PRE&gt;

&lt;P&gt;Works but i received only OnAlert callbacks....&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Obviously the test I did was just to figure out what the problem was...&lt;/P&gt;

&lt;P&gt;I hope I was clear and sorry for my English :)&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Alessio&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 14:02:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003511#M31124</guid>
      <dc:creator>Alessio_Vinerbi</dc:creator>
      <dc:date>2015-10-05T14:02:26Z</dc:date>
    </item>
    <item>
      <title>Thanks for the additional</title>
      <link>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003512#M31125</link>
      <description>&lt;P&gt;Thanks for the additional info.&lt;/P&gt;

&lt;P&gt;Indeed it seems there is a typo in the c++ wrapper for Java (C:\Program Files (x86)\Intel\RSSDK\framework\common\pxcclr.java\)&lt;/P&gt;

&lt;P&gt;While we're fixing it, you can search and replace all occurences of "nRecognized" by "nRecognition" inside pxcmspeechrecognition.cpp, recompile the project and replace&amp;nbsp;libpxcclr.*.dll for your project.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 12:03:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003512#M31125</guid>
      <dc:creator>Xavier_H_Intel</dc:creator>
      <dc:date>2015-10-06T12:03:50Z</dc:date>
    </item>
    <item>
      <title>Thanks Xavier,</title>
      <link>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003513#M31126</link>
      <description>&lt;P&gt;Thanks Xavier,&lt;/P&gt;

&lt;P&gt;I loaded the project libpxcclr.jni_vs2010 and i have edited the pxcmspeechrecognition.cpp&lt;/P&gt;

&lt;P&gt;I have change the line&amp;nbsp;&lt;/P&gt;

&lt;P&gt;AsyncCallback &lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;OnRecognizedCb&lt;/SPAN&gt;(true, "OnRecognized", "(Lintel/rssdk/PXCMSpeechRecognition$RecognitionData;)V");&lt;/P&gt;

&lt;P&gt;with&amp;nbsp;&lt;/P&gt;

&lt;P&gt;AsyncCallback &lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;OnRecognizedCb&lt;/SPAN&gt;(true, "OnRecognition", "(Lintel/rssdk/PXCMSpeechRecognition$RecognitionData;)V");&lt;/P&gt;

&lt;P&gt;And i have recompiled the DLL&lt;/P&gt;

&lt;P&gt;Now, there isn't any exception on StartRec but the OnRecognition callback is never invoked.&lt;/P&gt;

&lt;P&gt;I have seen that in StartRec function on cpp file use an SRHandler wrapper. This handler call invoke on&amp;nbsp;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;OnRecognizedCb when an OnRecognition occurs from the recognition engine.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;Alessio&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 15:29:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003513#M31126</guid>
      <dc:creator>Alessio_Vinerbi</dc:creator>
      <dc:date>2015-10-06T15:29:48Z</dc:date>
    </item>
    <item>
      <title>Inside pxcmspeechrecognition</title>
      <link>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003514#M31127</link>
      <description>&lt;P&gt;Inside &lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;pxcmspeechrecognition.cpp, yo&lt;/SPAN&gt;u need to change the other occurences of nRecognized too, more specifically to rename &lt;EM&gt;SRHandler::OnRecognized&lt;/EM&gt; in&amp;nbsp;&lt;EM&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;SRHandler::&lt;/SPAN&gt;OnRecognition&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2015 07:29:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003514#M31127</guid>
      <dc:creator>Xavier_H_Intel</dc:creator>
      <dc:date>2015-10-07T07:29:09Z</dc:date>
    </item>
    <item>
      <title> </title>
      <link>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003515#M31128</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Xavier thanks for your patience.&lt;BR /&gt;
	I did all the substitutions and no exceptions occur when i call the StartRec&lt;/P&gt;

&lt;P&gt;But now, when the in the moment to invoke the OnRecognition, it takes a crash of the virtual machine&lt;/P&gt;

&lt;P&gt;I have recompiled the DLL with x64 in release mode.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Also, I give you another clue, when the ALERT_SPEECH_END alert occurs,&amp;nbsp;application crash with JVM exception&lt;/P&gt;

&lt;P&gt;#&lt;BR /&gt;
	# A fatal error has been detected by the Java Runtime Environment:&lt;BR /&gt;
	#&lt;BR /&gt;
	# &amp;nbsp;EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000007fef7e868d4, pid=3828, tid=5896&lt;BR /&gt;
	#&lt;BR /&gt;
	# JRE version: Java(TM) SE Runtime Environment (8.0_60-b27) (build 1.8.0_60-b27)&lt;BR /&gt;
	# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.60-b23 mixed mode windows-amd64 compressed oops)&lt;BR /&gt;
	# Problematic frame:&lt;BR /&gt;
	# C &amp;nbsp;[libpxcclr.jni64.dll+0x68d4] &amp;nbsp;Registration::~Registration+0x84&lt;BR /&gt;
	#&lt;BR /&gt;
	# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows&lt;BR /&gt;
	#&lt;BR /&gt;
	# If you would like to submit a bug report, please visit:&lt;BR /&gt;
	# &amp;nbsp; &lt;A href="http://bugreport.java.com/bugreport/crash.jsp" target="_blank"&gt;http://bugreport.java.com/bugreport/crash.jsp&lt;/A&gt;&lt;BR /&gt;
	#&lt;/P&gt;

&lt;P&gt;--------------- &amp;nbsp;T H R E A D &amp;nbsp;---------------&lt;/P&gt;

&lt;P&gt;Current thread (0x0000000055e8b000): &amp;nbsp;VMThread [stack: 0x0000000056ee0000,0x0000000056fe0000] [id=5896]&lt;/P&gt;

&lt;P&gt;siginfo: ExceptionCode=0xc0000005, reading address 0x00000000000000b0&lt;/P&gt;

&lt;P&gt;Registers:&lt;BR /&gt;
	RAX=0x0000000000000000, RBX=0x000000005b265690, RCX=0x0000000055e8b1f8, RDX=0x0000000058158f08&lt;BR /&gt;
	RSP=0x0000000056fdf260, RBP=0x0000000055d75400, RSI=0x0000000000000000, RDI=0x00000000ffffff01&lt;BR /&gt;
	R8 =0x0000000000000000, R9 =0x0000000000000000, R10=0x0000000056fdf2a8, R11=0x0000000056fdf378&lt;BR /&gt;
	R12=0x00000000003cc5e0, R13=0x0000000000000040, R14=0x00000000003cc650, R15=0x0000000056fdf360&lt;BR /&gt;
	RIP=0x000007fef7e868d4, EFLAGS=0x0000000000010202&lt;/P&gt;

&lt;P&gt;Top of Stack: (sp=0x0000000056fdf260)&lt;BR /&gt;
	0x0000000056fdf260: &amp;nbsp; 0000000055d75400 000007fef7f02200&lt;BR /&gt;
	0x0000000056fdf270: &amp;nbsp; 000000005b265690 000000003d00003d&lt;BR /&gt;
	0x0000000056fdf280: &amp;nbsp; fffffffffffffffe 00000000003cff00&lt;BR /&gt;
	0x0000000056fdf290: &amp;nbsp; 000000005b265690 000007fef7e86790&lt;BR /&gt;
	0x0000000056fdf2a0: &amp;nbsp; 000000005b230640 0000000055e8b1f8&lt;BR /&gt;
	0x0000000056fdf2b0: &amp;nbsp; 000007fef7f02200 00000000003d0dd0&lt;BR /&gt;
	0x0000000056fdf2c0: &amp;nbsp; 000007fef7ed38a0 000007fef7eb7993&lt;BR /&gt;
	0x0000000056fdf2d0: &amp;nbsp; 00000000003cc648 00000000003cc5e0&lt;BR /&gt;
	0x0000000056fdf2e0: &amp;nbsp; 0000000000000200 0000000000000001&lt;BR /&gt;
	0x0000000056fdf2f0: &amp;nbsp; 00000000003cc648 00000000003cc5e0&lt;BR /&gt;
	0x0000000056fdf300: &amp;nbsp; 00000000003cc5e0 00000000003cc650&lt;BR /&gt;
	0x0000000056fdf310: &amp;nbsp; 0000000000000001 0000000000000000&lt;BR /&gt;
	0x0000000056fdf320: &amp;nbsp; 000007fffffae000 000007fffffd7000&lt;BR /&gt;
	0x0000000056fdf330: &amp;nbsp; 0000d4a3df016b4c 000007fef7eb7ea5&lt;BR /&gt;
	0x0000000056fdf340: &amp;nbsp; 0000000000000000 0000000000000001&lt;BR /&gt;
	0x0000000056fdf350: &amp;nbsp; 0000000000000000 0000000056fdf390&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Instructions: (pc=0x000007fef7e868d4)&lt;BR /&gt;
	0x000007fef7e868b4: &amp;nbsp; 24 48 eb 05 48 8b 4c 24 48 83 ff fe 40 0f 94 c7&lt;BR /&gt;
	0x000007fef7e868c4: &amp;nbsp; 48 85 c9 74 31 48 8b 13 48 85 d2 74 12 48 8b 01&lt;BR /&gt;
	0x000007fef7e868d4: &amp;nbsp; ff 90 b0 00 00 00 90 48 89 33 48 8b 4c 24 48 48&lt;BR /&gt;
	0x000007fef7e868e4: &amp;nbsp; 8b 53 08 48 85 d2 74 0e 48 8b 01 ff 90 b0 00 00&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	Register to memory mapping:&lt;/P&gt;

&lt;P&gt;RAX=0x0000000000000000 is an unknown value&lt;BR /&gt;
	RBX=0x000000005b265690 is an unknown value&lt;BR /&gt;
	RCX=0x0000000055e8b1f8 is an unknown value&lt;BR /&gt;
	RDX=0x0000000058158f08 is a global jni handle&lt;BR /&gt;
	RSP=0x0000000056fdf260 is an unknown value&lt;BR /&gt;
	RBP=0x0000000055d75400 is an unknown value&lt;BR /&gt;
	RSI=0x0000000000000000 is an unknown value&lt;BR /&gt;
	RDI=0x00000000ffffff01 is an unallocated location in the heap&lt;BR /&gt;
	R8 =0x0000000000000000 is an unknown value&lt;BR /&gt;
	R9 =0x0000000000000000 is an unknown value&lt;BR /&gt;
	R10=0x0000000056fdf2a8 is an unknown value&lt;BR /&gt;
	R11=0x0000000056fdf378 is an unknown value&lt;BR /&gt;
	R12=0x00000000003cc5e0 is an unknown value&lt;BR /&gt;
	R13=0x0000000000000040 is an unknown value&lt;BR /&gt;
	R14=0x00000000003cc650 is an unknown value&lt;BR /&gt;
	R15=0x0000000056fdf360 is an unknown value&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	Stack: [0x0000000056ee0000,0x0000000056fe0000], &amp;nbsp;sp=0x0000000056fdf260, &amp;nbsp;free space=1020k&lt;BR /&gt;
	Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)&lt;BR /&gt;
	C &amp;nbsp;[libpxcclr.jni64.dll+0x68d4] &amp;nbsp;Registration::~Registration+0x84&lt;BR /&gt;
	C &amp;nbsp;[libpxcclr.jni64.dll+0x6790] &amp;nbsp;AsyncCallback::~AsyncCallback+0x30&lt;BR /&gt;
	C &amp;nbsp;[libpxcclr.jni64.dll+0x37993] &amp;nbsp;__crt_seh_guarded_call&amp;lt;int&amp;gt;::operator()&amp;lt;&amp;lt;lambda_e24bbb7b643b32fcea6fa61b31d4c984&amp;gt;,&amp;lt;lambda_275893d493268fdec8709772e3fcec0e&amp;gt; &amp;amp; __ptr64,&amp;lt;lambda_9d71df4d7cf3f480f8d633942495c3b0&amp;gt; &amp;gt;+0x11b&lt;BR /&gt;
	C &amp;nbsp;[libpxcclr.jni64.dll+0x37ea5] &amp;nbsp;_execute_onexit_table+0x35&lt;BR /&gt;
	C &amp;nbsp;[libpxcclr.jni64.dll+0x36aec] &amp;nbsp;common_exit+0xf4&lt;BR /&gt;
	C &amp;nbsp;[libpxcclr.jni64.dll+0xfbff] &amp;nbsp;__scrt_dllmain_uninitialize_c+0x2b&lt;BR /&gt;
	C &amp;nbsp;[libpxcclr.jni64.dll+0x1015e] &amp;nbsp;dllmain_crt_process_detach+0x4e&lt;BR /&gt;
	C &amp;nbsp;[libpxcclr.jni64.dll+0x10267] &amp;nbsp;dllmain_dispatch+0xd3&lt;BR /&gt;
	C &amp;nbsp;[ntdll.dll+0x23a81]&lt;BR /&gt;
	C &amp;nbsp;[ntdll.dll+0x23890]&lt;BR /&gt;
	C &amp;nbsp;[msvcr100.dll+0x20ccd]&lt;BR /&gt;
	V &amp;nbsp;[jvm.dll+0x210a25]&lt;BR /&gt;
	V &amp;nbsp;[jvm.dll+0x249747]&lt;BR /&gt;
	V &amp;nbsp;[jvm.dll+0x2489e6]&lt;BR /&gt;
	V &amp;nbsp;[jvm.dll+0x248e81]&lt;BR /&gt;
	V &amp;nbsp;[jvm.dll+0x24909e]&lt;BR /&gt;
	V &amp;nbsp;[jvm.dll+0x299f6a]&lt;BR /&gt;
	C &amp;nbsp;[msvcr100.dll+0x21d9f]&lt;BR /&gt;
	C &amp;nbsp;[msvcr100.dll+0x21e3b]&lt;BR /&gt;
	C &amp;nbsp;[kernel32.dll+0x15a4d]&lt;BR /&gt;
	C &amp;nbsp;[ntdll.dll+0x2b831]&lt;/P&gt;

&lt;P&gt;VM_Operation (0x00000000589acbd0): Exit, mode: safepoint, requested by thread 0x0000000058117800&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	--------------- &amp;nbsp;P R O C E S S &amp;nbsp;---------------&lt;/P&gt;

&lt;P&gt;Java Threads: ( =&amp;gt; current thread )&lt;BR /&gt;
	&amp;nbsp; 0x0000000001fbd800 JavaThread "DestroyJavaVM" [_thread_blocked, id=220, stack(0x0000000002100000,0x0000000002200000)]&lt;BR /&gt;
	&amp;nbsp; 0x0000000058117800 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=4340, stack(0x00000000588b0000,0x00000000589b0000)]&lt;BR /&gt;
	&amp;nbsp; 0x00000000580b8000 JavaThread "AWT-Shutdown" [_thread_blocked, id=2232, stack(0x0000000058bf0000,0x0000000058cf0000)]&lt;BR /&gt;
	&amp;nbsp; 0x00000000580b7800 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=2096, stack(0x0000000058a80000,0x0000000058b80000)]&lt;BR /&gt;
	&amp;nbsp; 0x0000000057984000 JavaThread "Service Thread" daemon [_thread_blocked, id=5544, stack(0x0000000057d80000,0x0000000057e80000)]&lt;BR /&gt;
	&amp;nbsp; 0x000000005790b000 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=5492, stack(0x0000000057700000,0x0000000057800000)]&lt;BR /&gt;
	&amp;nbsp; 0x0000000055ef7800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=5880, stack(0x0000000057480000,0x0000000057580000)]&lt;BR /&gt;
	&amp;nbsp; 0x0000000055eef800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=968, stack(0x0000000057800000,0x0000000057900000)]&lt;BR /&gt;
	&amp;nbsp; 0x0000000055efe000 JavaThread "Attach Listener" daemon [_thread_blocked, id=3368, stack(0x00000000575b0000,0x00000000576b0000)]&lt;BR /&gt;
	&amp;nbsp; 0x0000000055efc800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=5488, stack(0x0000000057330000,0x0000000057430000)]&lt;BR /&gt;
	&amp;nbsp; 0x0000000055e97800 JavaThread "Finalizer" daemon [_thread_blocked, id=3728, stack(0x0000000057060000,0x0000000057160000)]&lt;BR /&gt;
	&amp;nbsp; 0x0000000055e90800 JavaThread "Reference Handler" daemon [_thread_blocked, id=964, stack(0x0000000057190000,0x0000000057290000)]&lt;/P&gt;

&lt;P&gt;Other Threads:&lt;BR /&gt;
	=&amp;gt;0x0000000055e8b000 VMThread [stack: 0x0000000056ee0000,0x0000000056fe0000] [id=5896]&lt;/P&gt;

&lt;P&gt;VM state:at safepoint (shutting down)&lt;/P&gt;

&lt;P&gt;VM Mutex/Monitor currently owned by a thread: &amp;nbsp;([mutex/lock_event])&lt;BR /&gt;
	[0x0000000001fbbfa0] Threads_lock - owner thread: 0x0000000055e8b000&lt;/P&gt;

&lt;P&gt;Heap:&lt;BR /&gt;
	&amp;nbsp;PSYoungGen &amp;nbsp; &amp;nbsp; &amp;nbsp;total 28672K, used 8860K [0x00000000e0180000, 0x00000000e2180000, 0x0000000100000000)&lt;BR /&gt;
	&amp;nbsp; eden space 24576K, 36% used [0x00000000e0180000,0x00000000e0a271a0,0x00000000e1980000)&lt;BR /&gt;
	&amp;nbsp; from space 4096K, 0% used [0x00000000e1d80000,0x00000000e1d80000,0x00000000e2180000)&lt;BR /&gt;
	&amp;nbsp; to &amp;nbsp; space 4096K, 0% used [0x00000000e1980000,0x00000000e1980000,0x00000000e1d80000)&lt;BR /&gt;
	&amp;nbsp;ParOldGen &amp;nbsp; &amp;nbsp; &amp;nbsp; total 65536K, used 0K [0x00000000a0400000, 0x00000000a4400000, 0x00000000e0180000)&lt;BR /&gt;
	&amp;nbsp; object space 65536K, 0% used [0x00000000a0400000,0x00000000a0400000,0x00000000a4400000)&lt;BR /&gt;
	&amp;nbsp;Metaspace &amp;nbsp; &amp;nbsp; &amp;nbsp; used 11180K, capacity 11354K, committed 11648K, reserved 1058816K&lt;BR /&gt;
	&amp;nbsp; class space &amp;nbsp; &amp;nbsp;used 1443K, capacity 1541K, committed 1664K, reserved 1048576K&lt;/P&gt;

&lt;P&gt;Card table byte_map: [0x0000000011890000,0x0000000011b90000] byte_map_base: 0x000000001138e000&lt;/P&gt;

&lt;P&gt;Marking Bits: (ParMarkBitMap*) 0x000000006516a5b0&lt;BR /&gt;
	&amp;nbsp;Begin Bits: [0x0000000012220000, 0x0000000013a10000)&lt;BR /&gt;
	&amp;nbsp;End Bits: &amp;nbsp; [0x0000000013a10000, 0x0000000015200000)&lt;/P&gt;

&lt;P&gt;Polling page: 0x0000000000110000&lt;/P&gt;

&lt;P&gt;CodeCache: size=245760Kb used=2373Kb max_used=2373Kb free=243386Kb&lt;BR /&gt;
	&amp;nbsp;bounds [0x00000000024d0000, 0x0000000002740000, 0x00000000114d0000]&lt;BR /&gt;
	&amp;nbsp;total_blobs=1098 nmethods=604 adapters=408&lt;BR /&gt;
	&amp;nbsp;compilation: enabled&lt;/P&gt;

&lt;P&gt;Compilation events (10 events):&lt;BR /&gt;
	Event: 8.073 Thread 0x000000005790b000 &amp;nbsp;599 &amp;nbsp; &amp;nbsp; &amp;nbsp; 3 &amp;nbsp; &amp;nbsp; &amp;nbsp; sun.java2d.loops.RenderCache$Entry::matches (30 bytes)&lt;BR /&gt;
	Event: 8.073 Thread 0x000000005790b000 nmethod 599 0x000000000271ff50 code [0x00000000027200c0, 0x00000000027202f0]&lt;BR /&gt;
	Event: 8.074 Thread 0x000000005790b000 &amp;nbsp;600 &amp;nbsp; &amp;nbsp; &amp;nbsp; 3 &amp;nbsp; &amp;nbsp; &amp;nbsp; java.awt.geom.AffineTransform::&amp;lt;init&amp;gt; (69 bytes)&lt;BR /&gt;
	Event: 8.074 Thread 0x000000005790b000 nmethod 600 0x000000000271fb10 code [0x000000000271fc80, 0x000000000271fe90]&lt;BR /&gt;
	Event: 8.074 Thread 0x000000005790b000 &amp;nbsp;601 &amp;nbsp; &amp;nbsp; &amp;nbsp; 3 &amp;nbsp; &amp;nbsp; &amp;nbsp; sun.java2d.SurfaceData::getTransparency (8 bytes)&lt;BR /&gt;
	Event: 8.074 Thread 0x000000005790b000 nmethod 601 0x000000000271f650 code [0x000000000271f7c0, 0x000000000271fa68]&lt;BR /&gt;
	Event: 8.190 Thread 0x000000005790b000 &amp;nbsp;602 &amp;nbsp; &amp;nbsp; &amp;nbsp; 3 &amp;nbsp; &amp;nbsp; &amp;nbsp; java.lang.Thread::interrupted (8 bytes)&lt;BR /&gt;
	Event: 8.190 Thread 0x000000005790b000 nmethod 602 0x000000000271f290 code [0x000000000271f400, 0x000000000271f588]&lt;BR /&gt;
	Event: 8.208 Thread 0x000000005790b000 &amp;nbsp;603 &amp;nbsp; ! &amp;nbsp; 3 &amp;nbsp; &amp;nbsp; &amp;nbsp; java.awt.EventQueue::postEventPrivate (104 bytes)&lt;BR /&gt;
	Event: 8.209 Thread 0x000000005790b000 nmethod 603 0x000000000271e450 code [0x000000000271e660, 0x000000000271eee8]&lt;/P&gt;

&lt;P&gt;GC Heap History (0 events):&lt;BR /&gt;
	No events&lt;/P&gt;

&lt;P&gt;Deoptimization events (5 events):&lt;BR /&gt;
	Event: 0.410 Thread 0x0000000058117800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x000000000269fc4c method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; @ 56&lt;BR /&gt;
	Event: 0.415 Thread 0x0000000058117800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x000000000269fc4c method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; @ 56&lt;BR /&gt;
	Event: 0.419 Thread 0x0000000058117800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x000000000269fc4c method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; @ 56&lt;BR /&gt;
	Event: 0.445 Thread 0x0000000058117800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x000000000269fc4c method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; @ 56&lt;BR /&gt;
	Event: 0.445 Thread 0x0000000058117800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x000000000269eb00 method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; @ 56&lt;/P&gt;

&lt;P&gt;Internal exceptions (10 events):&lt;BR /&gt;
	Event: 0.295 Thread 0x0000000001fbd800 Exception &amp;lt;a 'java/lang/ClassNotFoundException': ToolBar&amp;gt; (0x00000000e05b2bd0) thrown at &lt;C&gt;&lt;BR /&gt;
	Event: 0.295 Thread 0x0000000001fbd800 Exception &amp;lt;a 'java/lang/ClassNotFoundException': ToggleButton&amp;gt; (0x00000000e05b3180) thrown at &lt;C&gt;&lt;BR /&gt;
	Event: 0.295 Thread 0x0000000001fbd800 Exception &amp;lt;a 'java/lang/ClassNotFoundException': javax/swing/JToolBarSeparator&amp;gt; (0x00000000e05b35e0) thrown at &lt;C&gt;&lt;BR /&gt;
	Event: 0.295 Thread 0x0000000001fbd800 Exception &amp;lt;a 'java/lang/ClassNotFoundException': ToolBarSeparator&amp;gt; (0x00000000e05b3a78) thrown at &lt;C&gt;&lt;BR /&gt;
	Event: 0.296 Thread 0x0000000001fbd800 Exception &amp;lt;a 'java/lang/ClassNotFoundException': ToolTip&amp;gt; (0x00000000e05b41b8) thrown at &lt;C&gt;&lt;BR /&gt;
	Event: 0.296 Thread 0x0000000001fbd800 Exception &amp;lt;a 'java/lang/ClassNotFoundException': Tree&amp;gt; (0x00000000e05b4dd8) thrown at &lt;C&gt;&lt;BR /&gt;
	Event: 0.296 Thread 0x0000000001fbd800 Exception &amp;lt;a 'java/lang/ClassNotFoundException': Tree&amp;gt; (0x00000000e05b5518) thrown at &lt;C&gt;&lt;BR /&gt;
	Event: 0.296 Thread 0x0000000001fbd800 Exception &amp;lt;a 'java/lang/ClassNotFoundException': javax/swing/JTreeCell&amp;gt; (0x00000000e05b5898) thrown at &lt;C&gt;&lt;BR /&gt;
	Event: 0.297 Thread 0x0000000001fbd800 Exception &amp;lt;a 'java/lang/ClassNotFoundException': TreeCell&amp;gt; (0x00000000e05b5d20) thrown at &lt;C&gt;&lt;BR /&gt;
	Event: 0.297 Thread 0x0000000001fbd800 Exception &amp;lt;a 'java/lang/ClassNotFoundException': RootPane&amp;gt; (0x00000000e05b6780) thrown at &lt;C&gt;&lt;/C&gt;&lt;/C&gt;&lt;/C&gt;&lt;/C&gt;&lt;/C&gt;&lt;/C&gt;&lt;/C&gt;&lt;/C&gt;&lt;/C&gt;&lt;/C&gt;&lt;/P&gt;

&lt;P&gt;Events (10 events):&lt;BR /&gt;
	Event: 8.226 loading class java/awt/LightweightDispatcher$2 done&lt;BR /&gt;
	Event: 9.217 Thread 0x0000000057ce0000 Thread added: 0x0000000057ce0000&lt;BR /&gt;
	Event: 9.217 Thread 0x0000000058422000 Thread added: 0x0000000058422000&lt;BR /&gt;
	Event: 9.217 Thread 0x0000000058422000 Thread exited: 0x0000000058422000&lt;BR /&gt;
	Event: 9.217 Thread 0x00000000581cb800 Thread exited: 0x00000000581cb800&lt;BR /&gt;
	Event: 9.218 loading class sun/java2d/pipe/hw/AccelDeviceEventNotifier&lt;BR /&gt;
	Event: 9.225 loading class sun/java2d/pipe/hw/AccelDeviceEventNotifier done&lt;BR /&gt;
	Event: 9.256 Thread 0x00000000580b9800 Thread exited: 0x00000000580b9800&lt;BR /&gt;
	Event: 9.325 Thread 0x0000000057ce0000 Thread exited: 0x0000000057ce0000&lt;BR /&gt;
	Event: 9.325 Executing VM operation: Exit&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	Dynamic libraries:&lt;BR /&gt;
	0x000000013f860000 - 0x000000013f897000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Java\jdk1.8.0_60\bin\java.exe&lt;BR /&gt;
	0x00000000773d0000 - 0x0000000077579000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\SYSTEM32\ntdll.dll&lt;BR /&gt;
	0x00000000771b0000 - 0x00000000772cf000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\kernel32.dll&lt;BR /&gt;
	0x000007fefd4d0000 - 0x000007fefd53c000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\KERNELBASE.dll&lt;BR /&gt;
	0x000007fefda30000 - 0x000007fefdb0b000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\ADVAPI32.dll&lt;BR /&gt;
	0x000007fefd910000 - 0x000007fefd9af000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\msvcrt.dll&lt;BR /&gt;
	0x000007fefe170000 - 0x000007fefe18f000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\SYSTEM32\sechost.dll&lt;BR /&gt;
	0x000007fefd690000 - 0x000007fefd7bd000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\RPCRT4.dll&lt;BR /&gt;
	0x00000000772d0000 - 0x00000000773ca000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\USER32.dll&lt;BR /&gt;
	0x000007fefe7d0000 - 0x000007fefe837000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\GDI32.dll&lt;BR /&gt;
	0x000007fefdb30000 - 0x000007fefdb3e000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\LPK.dll&lt;BR /&gt;
	0x000007fefd540000 - 0x000007fefd609000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\USP10.dll&lt;BR /&gt;
	0x000007fefbc70000 - 0x000007fefbe64000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.18837_none_fa3b1e3d17594757\COMCTL32.dll&lt;BR /&gt;
	0x000007fefd9b0000 - 0x000007fefda21000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\SHLWAPI.dll&lt;BR /&gt;
	0x000007feff6b0000 - 0x000007feff6de000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\IMM32.DLL&lt;BR /&gt;
	0x000007fefe460000 - 0x000007fefe569000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\MSCTF.dll&lt;BR /&gt;
	0x0000000065630000 - 0x0000000065702000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Java\jdk1.8.0_60\jre\bin\msvcr100.dll&lt;BR /&gt;
	0x0000000064960000 - 0x00000000651e9000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Java\jdk1.8.0_60\jre\bin\server\jvm.dll&lt;BR /&gt;
	0x000007fef4f80000 - 0x000007fef4f89000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\WSOCK32.dll&lt;BR /&gt;
	0x000007fefd860000 - 0x000007fefd8ad000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\WS2_32.dll&lt;BR /&gt;
	0x000007fefdd20000 - 0x000007fefdd28000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\NSI.dll&lt;BR /&gt;
	0x000007fefa7f0000 - 0x000007fefa82b000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\WINMM.dll&lt;BR /&gt;
	0x000007fefc240000 - 0x000007fefc24c000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\VERSION.dll&lt;BR /&gt;
	0x00000000775a0000 - 0x00000000775a7000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\PSAPI.DLL&lt;BR /&gt;
	0x000000006e130000 - 0x000000006e13f000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Java\jdk1.8.0_60\jre\bin\verify.dll&lt;BR /&gt;
	0x0000000065cb0000 - 0x0000000065cd9000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Java\jdk1.8.0_60\jre\bin\java.dll&lt;BR /&gt;
	0x0000000065c90000 - 0x0000000065ca6000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Java\jdk1.8.0_60\jre\bin\zip.dll&lt;BR /&gt;
	0x000007fefe840000 - 0x000007feff5c9000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\SHELL32.dll&lt;BR /&gt;
	0x000007fefdec0000 - 0x000007fefe0c3000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\ole32.dll&lt;BR /&gt;
	0x000007fefd190000 - 0x000007fefd19f000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\profapi.dll&lt;BR /&gt;
	0x0000000065490000 - 0x0000000065628000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Java\jdk1.8.0_60\jre\bin\awt.dll&lt;BR /&gt;
	0x000007feff5d0000 - 0x000007feff6a7000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\OLEAUT32.dll&lt;BR /&gt;
	0x000007fef4530000 - 0x000007fef45af000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Common Files\microsoft shared\ink\tiptsf.dll&lt;BR /&gt;
	0x000007fefd020000 - 0x000007fefd02f000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\CRYPTBASE.dll&lt;BR /&gt;
	0x000007fefb160000 - 0x000007fefb178000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\DWMAPI.DLL&lt;BR /&gt;
	0x0000000064910000 - 0x0000000064957000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Java\jdk1.8.0_60\jre\bin\fontmanager.dll&lt;BR /&gt;
	0x000007fefdb40000 - 0x000007fefdd17000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\SETUPAPI.dll&lt;BR /&gt;
	0x000007fefd430000 - 0x000007fefd466000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\CFGMGR32.dll&lt;BR /&gt;
	0x000007fefd480000 - 0x000007fefd49a000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\DEVOBJ.dll&lt;BR /&gt;
	0x0000000180000000 - 0x000000018013a000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files (x86)\NVIDIA Corporation\3D Vision\nvSCPAPI64.dll&lt;BR /&gt;
	0x0000000065c70000 - 0x0000000065c8a000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Java\jdk1.8.0_60\jre\bin\net.dll&lt;BR /&gt;
	0x000007fefc900000 - 0x000007fefc955000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\mswsock.dll&lt;BR /&gt;
	0x000007fefcb50000 - 0x000007fefcb57000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\System32\wship6.dll&lt;BR /&gt;
	0x0000000065c50000 - 0x0000000065c61000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Java\jdk1.8.0_60\jre\bin\nio.dll&lt;BR /&gt;
	0x00000000648c0000 - 0x0000000064902000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Java\jdk1.8.0_60\jre\bin\t2k.dll&lt;BR /&gt;
	0x000007fef7e80000 - 0x000007fef7f0d000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Users\touch\Desktop\RealSenseSpeech\libpxcclr.jni64.dll&lt;BR /&gt;
	0x000007fef7190000 - 0x000007fef7193000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\api-ms-win-core-synch-l1-2-0.DLL&lt;BR /&gt;
	0x000007fef9c20000 - 0x000007fef9cd8000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Common Files\Intel\RSSDK\v6\bin\x64\libpxcsession.dll&lt;BR /&gt;
	0x000007fef7e20000 - 0x000007fef7e72000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Common Files\Intel\RSSDK\v6\bin\x64\tbb.dll&lt;BR /&gt;
	0x000007fef3dc0000 - 0x000007fef3e67000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\MSVCP110.dll&lt;BR /&gt;
	0x000007fef3e70000 - 0x000007fef3f44000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\MSVCR110.dll&lt;BR /&gt;
	0x000007fef0700000 - 0x000007fef08e2000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Common Files\Intel\RSSDK\v6\bin\x64\libpxccore.dll&lt;BR /&gt;
	0x000007fefcf90000 - 0x000007fefcfb5000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\SspiCli.dll&lt;BR /&gt;
	0x000007fef51e0000 - 0x000007fef52e1000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Common Files\Intel\RSSDK\v6\bin\x64\intel-ias2.dll&lt;BR /&gt;
	0x000007fef7dd0000 - 0x000007fef7e1a000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Common Files\Intel\RSSDK\v6\bin\x64\libpxclanternrock.dll&lt;BR /&gt;
	0x000007fef50f0000 - 0x000007fef51d4000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Common Files\Intel\RSSDK\v6\bin\x64\libpxcpipelineutils.dll&lt;BR /&gt;
	0x000007fef7b10000 - 0x000007fef7b67000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Common Files\Intel\RSSDK\v6\bin\x64\libpxcmfaudio.dll&lt;BR /&gt;
	0x000007feec180000 - 0x000007feec571000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\MF.dll&lt;BR /&gt;
	0x000007fefa650000 - 0x000007fefa669000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\ATL.DLL&lt;BR /&gt;
	0x000007fef5020000 - 0x000007fef508d000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\MFPlat.DLL&lt;BR /&gt;
	0x000007fefb060000 - 0x000007fefb069000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\AVRT.dll&lt;BR /&gt;
	0x00000000748a0000 - 0x00000000748a6000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\ksuser.dll&lt;BR /&gt;
	0x000007fef9b50000 - 0x000007fef9b92000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\MFReadWrite.dll&lt;BR /&gt;
	0x000007fefe0d0000 - 0x000007fefe169000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\CLBCatQ.DLL&lt;BR /&gt;
	0x000007fefb2b0000 - 0x000007fefb2fb000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\System32\MMDevApi.dll&lt;BR /&gt;
	0x000007fefb180000 - 0x000007fefb2ac000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\System32\PROPSYS.dll&lt;BR /&gt;
	0x000007fefa4d0000 - 0x000007fefa51f000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\AUDIOSES.DLL&lt;BR /&gt;
	0x000007feef9e0000 - 0x000007feefa63000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Common Files\Intel\RSSDK\v6\bin\x64\libpxcvoice_nuance.dll&lt;BR /&gt;
	0x000007fefcb70000 - 0x000007fefcb88000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\CRYPTSP.dll&lt;BR /&gt;
	0x000007fefc650000 - 0x000007fefc697000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\rsaenh.dll&lt;BR /&gt;
	0x000007fefd0d0000 - 0x000007fefd0e4000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\RpcRtRemote.dll&lt;BR /&gt;
	0x000007fefd030000 - 0x000007fefd0c1000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\SXS.DLL&lt;BR /&gt;
	0x000007fefaa20000 - 0x000007fefaa74000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\oleacc.dll&lt;BR /&gt;
	0x0000000064890000 - 0x00000000648ba000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Program Files\Java\jdk1.8.0_60\jre\bin\dcpr.dll&lt;BR /&gt;
	0x000007fef50b0000 - 0x000007fef50eb000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\System32\resampledmo.dll&lt;BR /&gt;
	0x000007feeee40000 - 0x000007feeee4d000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\System32\msdmo.dll&lt;BR /&gt;
	0x000007fefd270000 - 0x000007fefd2ab000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\WINTRUST.dll&lt;BR /&gt;
	0x000007fefd2b0000 - 0x000007fefd41d000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\CRYPT32.dll&lt;BR /&gt;
	0x000007fefd180000 - 0x000007fefd18f000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\MSASN1.dll&lt;BR /&gt;
	0x000007fefbaa0000 - 0x000007fefbbc5000 &amp;nbsp;&amp;nbsp; &amp;nbsp;C:\Windows\system32\dbghelp.dll&lt;/P&gt;

&lt;P&gt;VM Arguments:&lt;BR /&gt;
	jvm_args: -Dfile.encoding=UTF-8&amp;nbsp;&lt;BR /&gt;
	java_command: MainFrame&lt;BR /&gt;
	java_class_path (initial): C:\Users\touch\Desktop\RealSenseSpeech\libpxcclr.java.jar;C:\Users\touch\Desktop\RealSenseSpeech\build\classes&lt;BR /&gt;
	Launcher Type: SUN_STANDARD&lt;/P&gt;

&lt;P&gt;Environment Variables:&lt;BR /&gt;
	PATH=C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\TortoiseSVN\bin;C:\Program Files\ffmpeg\bin;C:\Windows\system32\config\systemprofile\.dnx\bin;C:\Program Files\Microsoft DNX\Dnvm\;C:\Program Files\Microsoft SQL Server\120\Tools\Binn\;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\&lt;BR /&gt;
	USERNAME=touch&lt;BR /&gt;
	OS=Windows_NT&lt;BR /&gt;
	PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 26 Stepping 5, GenuineIntel&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;--------------- &amp;nbsp;S Y S T E M &amp;nbsp;---------------&lt;/P&gt;

&lt;P&gt;OS: Windows 7 , 64 bit Build 7601 (6.1.7601.18939)&lt;/P&gt;

&lt;P&gt;CPU:total 4 (4 cores per cpu, 2 threads per core) family 6 model 26 stepping 5, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, ht, tsc, tscinvbit, tscinv&lt;/P&gt;

&lt;P&gt;Memory: 4k page, physical 6274276k(3083164k free), swap 12546712k(8511496k free)&lt;/P&gt;

&lt;P&gt;vm_info: Java HotSpot(TM) 64-Bit Server VM (25.60-b23) for windows-amd64 JRE (1.8.0_60-b27), built on Aug &amp;nbsp;4 2015 11:06:27 by "java_re" with MS VC++ 10.0 (VS2010)&lt;/P&gt;

&lt;P&gt;time: Wed Oct 07 17:38:55 2015&lt;BR /&gt;
	elapsed time: 10 seconds (0d 0h 0m 10s)&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Oct 2015 15:50:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003515#M31128</guid>
      <dc:creator>Alessio_Vinerbi</dc:creator>
      <dc:date>2015-10-07T15:50:49Z</dc:date>
    </item>
    <item>
      <title>Hello Xavier,</title>
      <link>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003516#M31129</link>
      <description>&lt;P&gt;Hello Xavier,&lt;BR /&gt;
	I went ahead in the debug and I think I've found the cause.&lt;BR /&gt;
	Once made all substitutions (OnRecognized -&amp;gt; OnRecognition) the JVM crashed during the call to the callback OnRecognition&lt;/P&gt;

&lt;P&gt;From my analysis it seems that the problem is the function Marshal :: initialize&lt;/P&gt;

&lt;P&gt;When the function analyzes the fields of RecognitionData struct,&amp;nbsp;tries to retrieve fieldID (fid) but &amp;nbsp;the JNI GetFieldID fails when it encounters the field "Results" why can not encode the type (&lt;STRONG&gt;[Lintel/rssdk/PXCMSpeechRecognition$NBest;&lt;/STRONG&gt;)&lt;/P&gt;

&lt;P&gt;The function returns a FID equals 0 and print&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;intel/rssdk/PXCMSpeechRecognition$RecognitionData.GetFieldID(results,[Lintel/rssdk/PXCMSpeechRecognition$NBest;) not found&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;The crash happens during the actual copy Marshal :: why can not retrieve the array without a valid FID&lt;/P&gt;

&lt;P&gt;In the Copy_s function of Marshal class at the end there is a switch :&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;&lt;STRONG&gt;jobject field=jni-&amp;gt;GetObjectField(jdata,st-&amp;gt;fields&lt;I&gt;.fid);  // FID = 0&lt;/I&gt;&lt;/STRONG&gt;&lt;I&gt;
...
...
case 'L':
                    for (int j=0;j&amp;lt;st-&amp;gt;fields&lt;I&gt;.e_num;j++,offset+=st-&amp;gt;fields&lt;I&gt;.e_size) {
                        jobject element=jni-&amp;gt;&lt;STRONG&gt;GetObjectArrayElement&lt;/STRONG&gt;((jobjectArray)field,j);
                        Copy_s(jni,st-&amp;gt;fields&lt;I&gt;.element,element,offset, csize - st-&amp;gt;fields&lt;I&gt;.offset);
                    }
                }
...
...&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/PRE&gt;

&lt;P&gt;the function GetObjectArrayElement crash with field named "Results" (Array of NBest[]) because &amp;nbsp;st-&amp;gt;fields&lt;I&gt;.fid = 0 and field object is&amp;nbsp;incorrect&lt;/I&gt;&lt;/P&gt;

&lt;P&gt;I hope it can be of help my little analysis.&lt;/P&gt;

&lt;P&gt;Anyway I will go on with the analysis&lt;/P&gt;

&lt;P&gt;Alessio&lt;/P&gt;</description>
      <pubDate>Sat, 10 Oct 2015 15:21:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003516#M31129</guid>
      <dc:creator>Alessio_Vinerbi</dc:creator>
      <dc:date>2015-10-10T15:21:54Z</dc:date>
    </item>
    <item>
      <title>Hello Xavier, I'm your</title>
      <link>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003517#M31130</link>
      <description>&lt;P&gt;Hello Xavier, I'm your nightmare :)&lt;/P&gt;

&lt;P&gt;I have some good news,&lt;/P&gt;

&lt;P&gt;In the previous post I told you that, during initialization of the function copy_s, was not recognized the variable "scores" &amp;nbsp;(NBest [4]) of RecognitionData struct&lt;/P&gt;

&lt;P&gt;The reason is that the field names of NBest array differ between the Marshal :: Struct and structure RecognitionData&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;
// Marshal::Field

static Marshal::Field PXCMSpeechRecognition_RecognitionData_fields[]={
	   {"timeStamp", offsetof(PXCSpeechRecognition::RecognitionData,timeStamp),"J"},
	   {"grammar", offsetof(PXCSpeechRecognition::RecognitionData,grammar),"I"},
	   {"duration", offsetof(PXCSpeechRecognition::RecognitionData,duration),"I"},
	   {"scores", offsetof(PXCSpeechRecognition::RecognitionData, scores), "[Lintel/rssdk/PXCMSpeechRecognition$NBest;", sizeof(PXCSpeechRecognition::NBest), 4, &amp;amp;PXCMSpeechRecognition_NBest},
	  {0},
};


// RecognitionData struct

    struct RecognitionData {
        pxcI64  timeStamp;               
        pxcUID  grammar;           
        pxcI32  duration;                
        NBest   results[NBEST_SIZE]; 
        pxcI32  reserved[16];         
    };&lt;/PRE&gt;

&lt;P&gt;What I did was to realign the names using "scores"&lt;/P&gt;

&lt;P&gt;Now I went over,&lt;/P&gt;

&lt;P&gt;Now it is properly recognized the array NBest but inside the function &lt;STRONG&gt;copy_s&lt;/STRONG&gt; fails to pull the single element from the array NBest&lt;/P&gt;

&lt;P&gt;In Marshal.cpp : 155&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;case '[':
            {   
                jobject field=jni-&amp;gt;GetObjectField(jdata,st-&amp;gt;fields&lt;I&gt;.fid);
				 
                switch (st-&amp;gt;fields&lt;I&gt;.sig[1]) {
                case 'I':
                case 'F':
                    Copy(jni,offset,st-&amp;gt;fields&lt;I&gt;.e_size,st-&amp;gt;fields&lt;I&gt;.e_num,(jarray)field);
                    break;
                case 'L':
                    for (int j=0;j&amp;lt;st-&amp;gt;fields&lt;I&gt;.e_num;j++,offset+=st-&amp;gt;fields&lt;I&gt;.e_size) {
                        jobject element=jni-&amp;gt;GetObjectArrayElement((jobjectArray)field,j);
                        Copy_s(jni,st-&amp;gt;fields&lt;I&gt;.element,offset,element, csize - st-&amp;gt;fields&lt;I&gt;.offset);
                    }
                }
            }
            break;
        }&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/PRE&gt;

&lt;P&gt;When he meets the array "scores" the loop executes but GetObjectArrayElement function returns a null value (0x0)&lt;BR /&gt;
	and the recursive call to &lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;copy_s&lt;/SPAN&gt;function is not executed&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Do you have any idea ?&lt;BR /&gt;
	Meanwhile, I try to solve it.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Alessio&lt;/P&gt;</description>
      <pubDate>Mon, 12 Oct 2015 13:57:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003517#M31130</guid>
      <dc:creator>Alessio_Vinerbi</dc:creator>
      <dc:date>2015-10-12T13:57:05Z</dc:date>
    </item>
    <item>
      <title>Thanks Alessio and Xavier!</title>
      <link>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003518#M31131</link>
      <description>&lt;P&gt;Thanks Alessio and Xavier!&lt;/P&gt;

&lt;P&gt;Initializing the "scores" array with NBest() objects in class intel.rssdk.PXCMSpeechRecognition finally works for me.&lt;/P&gt;

&lt;PRE class="brush:java;"&gt;    public static class RecognitionData {
        public long     timeStamp;	 /** The time stamp of the recognition, in 100ns. */
		public int      grammar;	 /** The grammar identifier for command and control, or zero for dictation. */
        public int      duration;	 /** The duration of the speech, in ms. */
		public NBest[] 	scores;      /** @size = NBEST_SIZE; The top-N recognition results for command and control. */        

        public RecognitionData()
        {
            scores = new NBest[NBEST_SIZE];   
            for(int i=0; i&amp;lt;scores.length; i++){
            	scores&lt;I&gt;=new NBest();
            }
        }
    };&lt;/I&gt;&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Best,&lt;/P&gt;

&lt;P&gt;Anton&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2016 13:37:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003518#M31131</guid>
      <dc:creator>anton_f_</dc:creator>
      <dc:date>2016-02-16T13:37:00Z</dc:date>
    </item>
    <item>
      <title>Hi All,</title>
      <link>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003519#M31132</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;

&lt;P&gt;I got this error today and so lucky, I fixed it.&lt;/P&gt;

&lt;P&gt;Error:&amp;nbsp;&lt;SPAN style="font-weight: 700; font-size: 12px;"&gt;intel/rssdk/PXCMSpeechRecognition$RecognitionData.GetFieldID(results,[Lintel/rssdk/PXCMSpeechRecognition$NBest;) not found&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;SDK:&amp;nbsp;&lt;SPAN style="color: rgb(102, 102, 102); font-family: Arial, Tahoma, Helvetica, sans-serif; font-size: 14px; background-color: rgb(240, 240, 240);"&gt;Build Number: 10.0.26.0396 (1.8GB)&lt;/SPAN&gt;&lt;BR style="box-sizing: border-box; color: rgb(102, 102, 102); font-family: Arial, Tahoma, Helvetica, sans-serif; font-size: 14px; background-color: rgb(240, 240, 240);" /&gt;
	&lt;SPAN style="color: rgb(102, 102, 102); font-family: Arial, Tahoma, Helvetica, sans-serif; font-size: 14px; background-color: rgb(240, 240, 240);"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Version: 2016 R2&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Solution:&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;PXCMSpeechRecognition.java, change this&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE class="brush:java;"&gt;    public static class RecognitionData {
        public long     timeStamp;	 /** The time stamp of the recognition, in 100ns. */
		public int      grammar;	 /** The grammar identifier for command and control, or zero for dictation. */
        public int      duration;	 /** The duration of the speech, in ms. */
		public NBest[] 	scores;      /** @size = NBEST_SIZE; The top-N recognition results for command and control. */        

        public RecognitionData()
        {
            scores = new NBest[NBEST_SIZE];            
        }
    };&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;to this:&lt;/P&gt;

&lt;PRE class="brush:java;"&gt;public static class RecognitionData {
    public long     timeStamp;   /** The time stamp of the recognition, in 100ns. */
    public int      grammar;     /** The grammar identifier for command and control, or zero for dictation. */
    public int      duration;    /** The duration of the speech, in ms. */
    public NBest[]  scores;      /** @size = NBEST_SIZE; The top-N recognition results for command and control. */       
    public RecognitionData()
    {
        scores = new NBest[NBEST_SIZE];  
        for(int i=0; i&amp;lt;scores.length; i++){
            scores&lt;I&gt;=new NBest();
        }
    }
};&lt;/I&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;pxcmspeechrecognition.cpp,&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;&lt;B&gt;from&amp;nbsp;&lt;/B&gt;&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;static Marshal::Field PXCMSpeechRecognition_RecognitionData_fields[]={
	{"timeStamp", offsetof(PXCSpeechRecognition::RecognitionData,timeStamp),"J"},
	{"grammar", offsetof(PXCSpeechRecognition::RecognitionData,grammar),"I"},
	{"duration", offsetof(PXCSpeechRecognition::RecognitionData,duration),"I"},
	{"results", offsetof(PXCSpeechRecognition::RecognitionData, scores), "[Lintel/rssdk/PXCMSpeechRecognition$NBest;", sizeof(PXCSpeechRecognition::NBest), 4, &amp;amp;PXCMSpeechRecognition_NBest},
	{0},
};&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;to&lt;/STRONG&gt;&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;static Marshal::Field PXCMSpeechRecognition_RecognitionData_fields[]={
	{"timeStamp", offsetof(PXCSpeechRecognition::RecognitionData,timeStamp),"J"},
	{"grammar", offsetof(PXCSpeechRecognition::RecognitionData,grammar),"I"},
	{"duration", offsetof(PXCSpeechRecognition::RecognitionData,duration),"I"},
	{"scores", offsetof(PXCSpeechRecognition::RecognitionData, scores), "[Lintel/rssdk/PXCMSpeechRecognition$NBest;", sizeof(PXCSpeechRecognition::NBest), 4, &amp;amp;PXCMSpeechRecognition_NBest},
	{0},
};
&lt;/PRE&gt;

&lt;P&gt;Thanks you,&lt;/P&gt;

&lt;P&gt;Dat Nguyen.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Oct 2016 10:34:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/JNI-Exception-with-Java-PXCMSpeechRecognition-StartRec/m-p/1003519#M31132</guid>
      <dc:creator>Dat_N_</dc:creator>
      <dc:date>2016-10-10T10:34:25Z</dc:date>
    </item>
  </channel>
</rss>

