<?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 on: Bleeding Edge reprap software.</title>
	<atom:link href="http://www.gilesbathgate.com/2010/02/bleeding-edge-reprap-software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gilesbathgate.com/2010/02/bleeding-edge-reprap-software/</link>
	<description>Things I want to tell the world</description>
	<lastBuildDate>Thu, 03 Nov 2011 20:55:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Giles</title>
		<link>http://www.gilesbathgate.com/2010/02/bleeding-edge-reprap-software/comment-page-1/#comment-1009</link>
		<dc:creator>Giles</dc:creator>
		<pubDate>Mon, 22 Feb 2010 13:36:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.gilesbathgate.com/2010/02/bleeding-edge-reprap-software/#comment-1009</guid>
		<description>I understand that most people probably use Eclipse IDE to compile this source. I just wanted a neat way of doing it wihtout needing  the IDE. As I understand, by adding the attributes to the build-user.xml file the said manifest file is automatically generated by ant. My solution works, but no doubt there are many ways to achieve the same thing.</description>
		<content:encoded><![CDATA[<p>I understand that most people probably use Eclipse IDE to compile this source. I just wanted a neat way of doing it wihtout needing  the IDE. As I understand, by adding the attributes to the build-user.xml file the said manifest file is automatically generated by ant. My solution works, but no doubt there are many ways to achieve the same thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paulo Faria</title>
		<link>http://www.gilesbathgate.com/2010/02/bleeding-edge-reprap-software/comment-page-1/#comment-1008</link>
		<dc:creator>Paulo Faria</dc:creator>
		<pubDate>Sun, 21 Feb 2010 23:12:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.gilesbathgate.com/2010/02/bleeding-edge-reprap-software/#comment-1008</guid>
		<description>You normally use http://en.wikipedia.org/wiki/Manifest_file to declare classpath in jars.&lt;br /&gt;&lt;br /&gt;Your ide should do that automatically if you use it.&lt;br /&gt;&lt;br /&gt;I don&#039;t remember how to do it from the command line. IF you need to do it manually the look here http://en.wikipedia.org/wiki/Classpath_%28Java%29#Setting_the_path_in_a_Manifest_file</description>
		<content:encoded><![CDATA[<p>You normally use <a href="http://en.wikipedia.org/wiki/Manifest_file" rel="nofollow">http://en.wikipedia.org/wiki/Manifest_file</a> to declare classpath in jars.</p>
<p>Your ide should do that automatically if you use it.</p>
<p>I don&#39;t remember how to do it from the command line. IF you need to do it manually the look here <a href="http://en.wikipedia.org/wiki/Classpath_%28Java%29#Setting_the_path_in_a_Manifest_file" rel="nofollow">http://en.wikipedia.org/wiki/Classpath_%28Java%29#Setting_the_path_in_a_Manifest_file</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Giles</title>
		<link>http://www.gilesbathgate.com/2010/02/bleeding-edge-reprap-software/comment-page-1/#comment-1007</link>
		<dc:creator>Giles</dc:creator>
		<pubDate>Sat, 20 Feb 2010 12:18:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.gilesbathgate.com/2010/02/bleeding-edge-reprap-software/#comment-1007</guid>
		<description>Just remembered that the reason I wanted to post this was because I kept getting runtime errors, it turns out that when you run java with the -jar commandline option it ignores CLASSPATH environment variable aswell as ignoring the -classpath command line argument, so the only way to get it to work was to include the class path in the manifest of reprap.jar&lt;br /&gt;&lt;br /&gt;The error I kept getting was:&lt;br /&gt;&lt;br /&gt;Exception in thread &quot;RepRap&quot; java.lang.NoClassDefFoundError: javax/vecmath/Color3f&lt;br /&gt; at org.reprap.Preferences.(Unknown Source)&lt;br /&gt; at org.reprap.machines.MachineFactory.create(Unknown Source)&lt;br /&gt; at org.reprap.Main.(Unknown Source)&lt;br /&gt; at org.reprap.Main$10.run(Unknown Source)&lt;br /&gt; at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:226)&lt;br /&gt; at java.awt.EventQueue.dispatchEvent(EventQueue.java:602)&lt;br /&gt; at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:275)&lt;br /&gt; at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:200)&lt;br /&gt; at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:190)&lt;br /&gt; at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:185)&lt;br /&gt; at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:177)&lt;br /&gt; at java.awt.EventDispatchThread.run(EventDispatchThread.java:138)&lt;br /&gt;Caused by: java.lang.ClassNotFoundException: javax.vecmath.Color3f&lt;br /&gt; at java.net.URLClassLoader$1.run(URLClassLoader.java:217)&lt;br /&gt; at java.security.AccessController.doPrivileged(Native Method)&lt;br /&gt; at java.net.URLClassLoader.findClass(URLClassLoader.java:205)&lt;br /&gt; at java.lang.ClassLoader.loadClass(ClassLoader.java:319)&lt;br /&gt; at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)&lt;br /&gt; at java.lang.ClassLoader.loadClass(ClassLoader.java:264)&lt;br /&gt; at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:332)&lt;br /&gt; ... 12 more&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Hopefully google will pick this up, and if anyone has the same problem then this post will be of use.</description>
		<content:encoded><![CDATA[<p>Just remembered that the reason I wanted to post this was because I kept getting runtime errors, it turns out that when you run java with the -jar commandline option it ignores CLASSPATH environment variable aswell as ignoring the -classpath command line argument, so the only way to get it to work was to include the class path in the manifest of reprap.jar</p>
<p>The error I kept getting was:</p>
<p>Exception in thread &quot;RepRap&quot; java.lang.NoClassDefFoundError: javax/vecmath/Color3f<br /> at org.reprap.Preferences.(Unknown Source)<br /> at org.reprap.machines.MachineFactory.create(Unknown Source)<br /> at org.reprap.Main.(Unknown Source)<br /> at org.reprap.Main$10.run(Unknown Source)<br /> at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:226)<br /> at java.awt.EventQueue.dispatchEvent(EventQueue.java:602)<br /> at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:275)<br /> at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:200)<br /> at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:190)<br /> at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:185)<br /> at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:177)<br /> at java.awt.EventDispatchThread.run(EventDispatchThread.java:138)<br />Caused by: java.lang.ClassNotFoundException: javax.vecmath.Color3f<br /> at java.net.URLClassLoader$1.run(URLClassLoader.java:217)<br /> at java.security.AccessController.doPrivileged(Native Method)<br /> at java.net.URLClassLoader.findClass(URLClassLoader.java:205)<br /> at java.lang.ClassLoader.loadClass(ClassLoader.java:319)<br /> at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)<br /> at java.lang.ClassLoader.loadClass(ClassLoader.java:264)<br /> at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:332)<br /> &#8230; 12 more</p>
<p>Hopefully google will pick this up, and if anyone has the same problem then this post will be of use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BodgeIt</title>
		<link>http://www.gilesbathgate.com/2010/02/bleeding-edge-reprap-software/comment-page-1/#comment-1006</link>
		<dc:creator>BodgeIt</dc:creator>
		<pubDate>Sat, 20 Feb 2010 03:18:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.gilesbathgate.com/2010/02/bleeding-edge-reprap-software/#comment-1006</guid>
		<description>Just catching up on your posts its looking good.. &lt;br /&gt;&lt;br /&gt;I need to decide on which OS to use next Windas or Ubuntu.. Just download Ubuntu 9.1 &lt;br /&gt;&lt;br /&gt;Oh and I got 4 of those Thermistors you found at Farnell thank they look good.. nice long leads too</description>
		<content:encoded><![CDATA[<p>Just catching up on your posts its looking good.. </p>
<p>I need to decide on which OS to use next Windas or Ubuntu.. Just download Ubuntu 9.1 </p>
<p>Oh and I got 4 of those Thermistors you found at Farnell thank they look good.. nice long leads too</p>
]]></content:encoded>
	</item>
</channel>
</rss>

