<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Kai Witte's Blog</title>
	<atom:link href="http://witte-consulting.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://witte-consulting.com/blog</link>
	<description>Brief articles by Kai Witte</description>
	<lastBuildDate>Tue, 10 Jan 2012 17:42:24 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on uCertify review by Munim</title>
		<link>http://witte-consulting.com/blog/ucertify-review/comment-page-1/#comment-770</link>
		<dc:creator>Munim</dc:creator>
		<pubDate>Tue, 10 Jan 2012 17:42:24 +0000</pubDate>
		<guid isPermaLink="false">http://witte-consulting.com/blog/?p=36#comment-770</guid>
		<description>Hi,

I am trying to take A+ 220-701 &amp; 702 exams and looking for an reliable prepkit. I was using Google to search for a prepkit and I ended up in the ucertify website. Their prepkit software seems nice and helpful but all the comments here, kinda put me in an undecided condition. Has anyone tried their full version A+ prepkit? Does that also contain wrong answers? Please let me know. 

Munim</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am trying to take A+ 220-701 &amp; 702 exams and looking for an reliable prepkit. I was using Google to search for a prepkit and I ended up in the ucertify website. Their prepkit software seems nice and helpful but all the comments here, kinda put me in an undecided condition. Has anyone tried their full version A+ prepkit? Does that also contain wrong answers? Please let me know. </p>
<p>Munim</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on uCertify review by Justin</title>
		<link>http://witte-consulting.com/blog/ucertify-review/comment-page-1/#comment-720</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Mon, 06 Jun 2011 18:23:26 +0000</pubDate>
		<guid isPermaLink="false">http://witte-consulting.com/blog/?p=36#comment-720</guid>
		<description>I bought a Exam Prep for the MS 070-448 exam and found a large number of questions that are incorrect.  So much that I have little confidence in the content.  How can a company charge $120 for material that is wrong.  I would not recommend any exam preps by this company and if I don&#039;t get my money back from them, I am going to sue.  If anyone is interested in a class action, please contact me at justins704@live.com.</description>
		<content:encoded><![CDATA[<p>I bought a Exam Prep for the MS 070-448 exam and found a large number of questions that are incorrect.  So much that I have little confidence in the content.  How can a company charge $120 for material that is wrong.  I would not recommend any exam preps by this company and if I don&#8217;t get my money back from them, I am going to sue.  If anyone is interested in a class action, please contact me at <a href="mailto:justins704@live.com">justins704@live.com</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JNI (Java Native Interface): Exception in thread &#8220;main&#8221; java.lang.UnsatisfiedLinkError: Can&#8217;t find dependent libraries by Mark M</title>
		<link>http://witte-consulting.com/blog/jni-java-native-interface-exception-in-thread-main-javalangunsatisfiedlinkerror-can-t-find-dependent-libraries/comment-page-1/#comment-718</link>
		<dc:creator>Mark M</dc:creator>
		<pubDate>Fri, 27 May 2011 04:56:28 +0000</pubDate>
		<guid isPermaLink="false">http://witte-consulting.com/blog/?p=141#comment-718</guid>
		<description>I have a probable solution for anyone getting this error when working with Eclipse! If you are loading your dll file as a resource into your system classloader, then you absolutely must do a project--&gt;clean every single time you update your dll!! Even restarting eclipse or your computer won&#039;t clear the old dll resource from your classloader. Tracking that one down was incredibly painful!</description>
		<content:encoded><![CDATA[<p>I have a probable solution for anyone getting this error when working with Eclipse! If you are loading your dll file as a resource into your system classloader, then you absolutely must do a project&#8211;&gt;clean every single time you update your dll!! Even restarting eclipse or your computer won&#8217;t clear the old dll resource from your classloader. Tracking that one down was incredibly painful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JNI (Java Native Interface): Exception in thread &#8220;main&#8221; java.lang.UnsatisfiedLinkError: Can&#8217;t find dependent libraries by Daniel</title>
		<link>http://witte-consulting.com/blog/jni-java-native-interface-exception-in-thread-main-javalangunsatisfiedlinkerror-can-t-find-dependent-libraries/comment-page-1/#comment-717</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Mon, 16 May 2011 18:25:12 +0000</pubDate>
		<guid isPermaLink="false">http://witte-consulting.com/blog/?p=141#comment-717</guid>
		<description>Idk if this will help anyone, but I&#039;m using C++ compiling with VS win64 2010 command prompt.
I used the -MD option suggested fix and it did not affect my link problem.
I since my code was written in C++ I had modified my JNI header file code and removed this code:
&quot;#ifdef __cplusplus
extern &quot;C&quot; {
#endif

//Method prototypes

#ifdef __cplusplus
}
#endif&quot;
Obviously I&#039;m not very clever. Once I put this code back in and ran the dumpbin tool (thanks to whoever mentioned that first) I got a perfect looking signatures.
This solved my linking issue.</description>
		<content:encoded><![CDATA[<p>Idk if this will help anyone, but I&#8217;m using C++ compiling with VS win64 2010 command prompt.<br />
I used the -MD option suggested fix and it did not affect my link problem.<br />
I since my code was written in C++ I had modified my JNI header file code and removed this code:<br />
&#8220;#ifdef __cplusplus<br />
extern &#8220;C&#8221; {<br />
#endif</p>
<p>//Method prototypes</p>
<p>#ifdef __cplusplus<br />
}<br />
#endif&#8221;<br />
Obviously I&#8217;m not very clever. Once I put this code back in and ran the dumpbin tool (thanks to whoever mentioned that first) I got a perfect looking signatures.<br />
This solved my linking issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JNI (Java Native Interface): Exception in thread &#8220;main&#8221; java.lang.UnsatisfiedLinkError: Can&#8217;t find dependent libraries by anandhrds</title>
		<link>http://witte-consulting.com/blog/jni-java-native-interface-exception-in-thread-main-javalangunsatisfiedlinkerror-can-t-find-dependent-libraries/comment-page-1/#comment-716</link>
		<dc:creator>anandhrds</dc:creator>
		<pubDate>Thu, 05 May 2011 08:07:12 +0000</pubDate>
		<guid isPermaLink="false">http://witte-consulting.com/blog/?p=141#comment-716</guid>
		<description>Thanks for all the members in this post.... 
If you are using gcc complier, then add &quot;-Wl,-kill-at&quot; as one of the argument to gcc, This will solve the problem.
So, for example, in my case the command looks like this
&quot;-Wl,-kill-at&quot; -shared HelloWorld.c  &quot;-Ic:\Program Files\Java\jdk1.6.0_02\include&quot; &quot;-Ic:\Program Files\Java\jdk1.6.0_02\include\win32&quot; -o ${workspace_loc:/JNISampleJava/bin}\HelloWorld.dll</description>
		<content:encoded><![CDATA[<p>Thanks for all the members in this post&#8230;.<br />
If you are using gcc complier, then add &#8220;-Wl,-kill-at&#8221; as one of the argument to gcc, This will solve the problem.<br />
So, for example, in my case the command looks like this<br />
&#8220;-Wl,-kill-at&#8221; -shared HelloWorld.c  &#8220;-Ic:\Program Files\Java\jdk1.6.0_02\include&#8221; &#8220;-Ic:\Program Files\Java\jdk1.6.0_02\include\win32&#8243; -o ${workspace_loc:/JNISampleJava/bin}\HelloWorld.dll</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on uCertify review by Kai Witte</title>
		<link>http://witte-consulting.com/blog/ucertify-review/comment-page-1/#comment-712</link>
		<dc:creator>Kai Witte</dc:creator>
		<pubDate>Thu, 14 Apr 2011 17:46:33 +0000</pubDate>
		<guid isPermaLink="false">http://witte-consulting.com/blog/?p=36#comment-712</guid>
		<description>Hello Kamesh,

I do not know that particular prep kit, but given the poor reviews on other uCertify products I would advise against it unless you find a positive review.

The cert is now called &quot;Oracle Certified Professional, Java EE 5 Web Services Developer&quot;, and I know how hard it is to find a simulator for it.

One source of quality questions is this: http://java.boot.by/scdjws5-quiz/ It&#039;s only 108 questions and it costs something, but I believe it&#039;s a good start.

It&#039;s really hard to get study material for OCPJWS 5.

Kai</description>
		<content:encoded><![CDATA[<p>Hello Kamesh,</p>
<p>I do not know that particular prep kit, but given the poor reviews on other uCertify products I would advise against it unless you find a positive review.</p>
<p>The cert is now called &#8220;Oracle Certified Professional, Java EE 5 Web Services Developer&#8221;, and I know how hard it is to find a simulator for it.</p>
<p>One source of quality questions is this: <a href="http://java.boot.by/scdjws5-quiz/" rel="nofollow">http://java.boot.by/scdjws5-quiz/</a> It&#8217;s only 108 questions and it costs something, but I believe it&#8217;s a good start.</p>
<p>It&#8217;s really hard to get study material for OCPJWS 5.</p>
<p>Kai</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on uCertify review by Kamesh</title>
		<link>http://witte-consulting.com/blog/ucertify-review/comment-page-1/#comment-711</link>
		<dc:creator>Kamesh</dc:creator>
		<pubDate>Thu, 14 Apr 2011 11:55:27 +0000</pubDate>
		<guid isPermaLink="false">http://witte-consulting.com/blog/?p=36#comment-711</guid>
		<description>Hi, 
I am planning to buy the kit for SCX-310-230 Sun certified webservice developer. I could not find any user reviews on the quality of the ucertify about this prep kit. Please advice.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I am planning to buy the kit for SCX-310-230 Sun certified webservice developer. I could not find any user reviews on the quality of the ucertify about this prep kit. Please advice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JNI (Java Native Interface): Exception in thread &#8220;main&#8221; java.lang.UnsatisfiedLinkError: Can&#8217;t find dependent libraries by Oyoqui</title>
		<link>http://witte-consulting.com/blog/jni-java-native-interface-exception-in-thread-main-javalangunsatisfiedlinkerror-can-t-find-dependent-libraries/comment-page-1/#comment-707</link>
		<dc:creator>Oyoqui</dc:creator>
		<pubDate>Wed, 23 Mar 2011 15:56:44 +0000</pubDate>
		<guid isPermaLink="false">http://witte-consulting.com/blog/?p=141#comment-707</guid>
		<description>I have the same error and can fix it.

I make an JNI example and everithing works fine then I add that code (the same code and the same DLL) to my project and it don&#039;t work it send me the same error that yours.

Then I check that the only modification was that I add the package instruction in my java code. I google it and see that I need to change the name of all my C methods to contain the new path of mi java files. You can use:

javah -jni MiJavaClass

and  compare the generated .h file with your actual C code and if it is differente change it and create the new DLL and try to access it.</description>
		<content:encoded><![CDATA[<p>I have the same error and can fix it.</p>
<p>I make an JNI example and everithing works fine then I add that code (the same code and the same DLL) to my project and it don&#8217;t work it send me the same error that yours.</p>
<p>Then I check that the only modification was that I add the package instruction in my java code. I google it and see that I need to change the name of all my C methods to contain the new path of mi java files. You can use:</p>
<p>javah -jni MiJavaClass</p>
<p>and  compare the generated .h file with your actual C code and if it is differente change it and create the new DLL and try to access it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JNI (Java Native Interface): Exception in thread &#8220;main&#8221; java.lang.UnsatisfiedLinkError: Can&#8217;t find dependent libraries by Adil</title>
		<link>http://witte-consulting.com/blog/jni-java-native-interface-exception-in-thread-main-javalangunsatisfiedlinkerror-can-t-find-dependent-libraries/comment-page-1/#comment-706</link>
		<dc:creator>Adil</dc:creator>
		<pubDate>Fri, 18 Mar 2011 02:11:11 +0000</pubDate>
		<guid isPermaLink="false">http://witte-consulting.com/blog/?p=141#comment-706</guid>
		<description>Hey gotqn - I got the Solution.

Right Click Project Folder - Go to Properties -&gt; Click C Compiler -&gt; Tool Option and edit as follows: gcc-3.exe -Wl,--add-stdcall-alias, if you are using gcc-3.exe as compiler or just gcc.exe. You need to append &quot;-Wl,--add-stdcall-alias&quot; to the Compiler Tool Option and it wroked. 

Then Clean and Build the Project and use the resultant .dll or .so in the Main.java program. Let me know if it helped:

This resolves the error:
Exception in thread “main” java.lang.UnsatisfiedLinkError: jnidemojava.Main.nativePrint()V
at jnidemojava.Main.nativePrint(Native Method)
at jnidemojava.Main.main(Main.java:22)</description>
		<content:encoded><![CDATA[<p>Hey gotqn &#8211; I got the Solution.</p>
<p>Right Click Project Folder &#8211; Go to Properties -&gt; Click C Compiler -&gt; Tool Option and edit as follows: gcc-3.exe -Wl,&#8211;add-stdcall-alias, if you are using gcc-3.exe as compiler or just gcc.exe. You need to append &#8220;-Wl,&#8211;add-stdcall-alias&#8221; to the Compiler Tool Option and it wroked. </p>
<p>Then Clean and Build the Project and use the resultant .dll or .so in the Main.java program. Let me know if it helped:</p>
<p>This resolves the error:<br />
Exception in thread “main” java.lang.UnsatisfiedLinkError: jnidemojava.Main.nativePrint()V<br />
at jnidemojava.Main.nativePrint(Native Method)<br />
at jnidemojava.Main.main(Main.java:22)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JNI (Java Native Interface): Exception in thread &#8220;main&#8221; java.lang.UnsatisfiedLinkError: Can&#8217;t find dependent libraries by Adil</title>
		<link>http://witte-consulting.com/blog/jni-java-native-interface-exception-in-thread-main-javalangunsatisfiedlinkerror-can-t-find-dependent-libraries/comment-page-1/#comment-705</link>
		<dc:creator>Adil</dc:creator>
		<pubDate>Fri, 18 Mar 2011 00:57:01 +0000</pubDate>
		<guid isPermaLink="false">http://witte-consulting.com/blog/?p=141#comment-705</guid>
		<description>My Case is same as gotqn case. I am using the example - &quot;http://netbeans.org/kb/docs/cnd/beginning-jni-linux.html&quot;. I reached till the end but stuck with the exception : 

run:
Exception in thread &quot;main&quot; java.lang.UnsatisfiedLinkError: jnidemojava.Main.nativePrint()V
        at jnidemojava.Main.nativePrint(Native Method)
        at jnidemojava.Main.main(Main.java:22)
Java Result: 1
BUILD SUCCESSFUL (total time: 0 seconds)

Any help is highly appreciated.</description>
		<content:encoded><![CDATA[<p>My Case is same as gotqn case. I am using the example &#8211; &#8220;http://netbeans.org/kb/docs/cnd/beginning-jni-linux.html&#8221;. I reached till the end but stuck with the exception : </p>
<p>run:<br />
Exception in thread &#8220;main&#8221; java.lang.UnsatisfiedLinkError: jnidemojava.Main.nativePrint()V<br />
        at jnidemojava.Main.nativePrint(Native Method)<br />
        at jnidemojava.Main.main(Main.java:22)<br />
Java Result: 1<br />
BUILD SUCCESSFUL (total time: 0 seconds)</p>
<p>Any help is highly appreciated.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

