<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>Cycling 74  &#187;  Topic: Max 6 Java Standalone Error</title>
		<atom:link href="http://cycling74.com/forums/topic/max-6-java-standalone-error/feed" rel="self" type="application/rss+xml" />
		<link>http://cycling74.com/forums/topic/max-6-java-standalone-error/feed</link>
		<description></description>
		<pubDate>Wed, 19 Jun 2013 05:14:10 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.2.4</generator>
		<language></language>

		
														
					
				<item>
					<guid>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-60159</guid>
					<title><![CDATA[Max 6 Java Standalone Error]]></title>
					<link>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-60159</link>
					<pubDate>Tue, 14 Feb 2012 09:57:49 +0000</pubDate>
					<dc:creator>django</dc:creator>

					<description>
						<![CDATA[
						<p>Hi fellow Maxers,</p>
<p>I have a problem building a standalone with Max 6 on Windows 7 which includes a mxj object. I get the following error message, when opening the standalone:</p>
<p>(mxj) Unable to resolve path of max.jar!mjx is rendered powerless.<br />
•error: Unable to create JVM</p>
<p>I know this issue was mentioned bevore in this forum, for example here:</p>
<p><a href="http://cycling74.com/forums/topic.php?id=13080" rel="nofollow">http://cycling74.com/forums/topic.php?id=13080</a></p>
<p>But copying the &#8220;Cycling&#8217;74/Max6.0/Cycling&#8217;74/java&#8221; folder in the standalone support folder didn&#8217;t work for me.</p>
<p>Has anyone experienced the same or knows how to solve this?</p>
<p>Thanks a lot &#8211; d</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216566</guid>
					<title><![CDATA[Re: Max 6 Java Standalone Error]]></title>
					<link>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216566</link>
					<pubDate>Wed, 15 Feb 2012 11:43:21 +0000</pubDate>
					<dc:creator>django</dc:creator>

					<description>
						<![CDATA[
						<p>Anyone?</p>
<p>I tried every solution I could find in the forum, but no success.<br />
I&#8217;m working on a project for some time now which includes making a standalone with some java objects. So this is a real bummer.</p>
<p>Any help much appreciated!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216567</guid>
					<title><![CDATA[Re: Max 6 Java Standalone Error]]></title>
					<link>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216567</link>
					<pubDate>Wed, 15 Feb 2012 11:57:07 +0000</pubDate>
					<dc:creator>Jan</dc:creator>

					<description>
						<![CDATA[
						<p>This is out of the blue, and I am not in from of Max right now, but &#8230;:<br />
&#8230; have you checked if the java config file is included and if the pathes inside are correct?</p>
<p>&#8230; do the pathnames include space or other characters that need to be escaped?</p>
<p>Jan</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216568</guid>
					<title><![CDATA[Re: Max 6 Java Standalone Error]]></title>
					<link>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216568</link>
					<pubDate>Wed, 15 Feb 2012 14:37:26 +0000</pubDate>
					<dc:creator>django</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Jan,</p>
<p>thanks for your reply. I&#8217;m not shure what you mean. The max.java.config File is included in the support/java Folder. It looks like this:</p>
<p>; This is the config used by Max when instantiating the JVM ;<br />
; Comments are enclosed within 2 semicolons ;</p>
<p>; The file format is relatively fragile so pay attention ;<br />
; when editing this file !! ;</p>
<p>; some example options one may use ;</p>
<p>; add all jars in /Users/topher/java/lib to the system classpath i.e. immutable classpath ;<br />
; max.system.jar.dir /Users/topher/java/lib;</p>
<p>; add /Users/topher/foo to the system classpath i.e. immutable classpath ;<br />
; max.system.class.dir /Users/topher/foo      ;</p>
<p>; these next 2 are typically what you would want to use if you want additional directories ;<br />
; added to your classpath for max ;</p>
<p>; add /Users/topher/myclasses to the dynamic classpath of MXJClassLoader ;<br />
; max.dynamic.class.dir /Users/topher/myclasses ;</p>
<p>; add all jars in /Users/topher/myjars to the dynamic classpath of MXJClassLoader ;<br />
;max.dynamic.jar.dir /Users/topher/myjars     ;</p>
<p>; specify some jvm options ;<br />
max.jvm.option -Xincgc<br />
max.jvm.option -Xms64m<br />
max.jvm.option -Xmx256m</p>
<p>; uncomment these options(i.e. remove surrounding semi colons ;<br />
; to cause the JVM to be created ;<br />
; in debug mode and listening for remote debugger connections ;<br />
; on port 8074. This would enable you to interactively debug ;<br />
; your mxj code using JDB or some other debugger which supports ;<br />
; the JDI wire protocol ;</p>
<p>; max.jvm.option -Xdebug  ;<br />
; max.jvm.option -Xnoagent ;<br />
; max.jvm.option -Xrunjdwp:transport=dt_socket,address=8074,server=y,suspend=n ;<br />
; max.jvm.option -XX:-UseSharedSpaces ;</p>
<p>Do I have to edit it?</p>
<p>Thanks &#8211; D</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216569</guid>
					<title><![CDATA[Re: Max 6 Java Standalone Error]]></title>
					<link>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216569</link>
					<pubDate>Wed, 15 Feb 2012 20:40:18 +0000</pubDate>
					<dc:creator>Jan</dc:creator>

					<description>
						<![CDATA[
						<p>Sorry misread your text ist&#8217;s max.jar that couldn&#8217;t be found.<br />
No in that case you definitely should not edit this file&#8230;.</p>
<p>1.) did you copy the files like described here: <a href="http://www.cycling74.com/docs/max5/vignettes/core/standalone_platform_win.html" rel="nofollow">http://www.cycling74.com/docs/max5/vignettes/core/standalone_platform_win.html</a></p>
<p>2.) You are you on Max 6</p>
<p>I tried to build a standalone and a java class in max 6 on win XP and it fails as well. The same patch works fine on Max 5! </p>
<p>That&#8217;s a Bug I&#8217;d say!</p>
<p>Jan</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216570</guid>
					<title><![CDATA[Re: Max 6 Java Standalone Error]]></title>
					<link>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216570</link>
					<pubDate>Wed, 15 Feb 2012 20:45:29 +0000</pubDate>
					<dc:creator>Jan</dc:creator>

					<description>
						<![CDATA[
						<p>just saw that 6.0.4 is released &#8211; maybe it&#8217;s already fixed&#8230;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216571</guid>
					<title><![CDATA[Re: Max 6 Java Standalone Error]]></title>
					<link>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216571</link>
					<pubDate>Wed, 15 Feb 2012 20:48:43 +0000</pubDate>
					<dc:creator>Jan</dc:creator>

					<description>
						<![CDATA[
						<p>&#8230; one more: restarted the computer and now it works here also on 6.0.3 &#8230; so not a bug ;)</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216572</guid>
					<title><![CDATA[Re: Max 6 Java Standalone Error]]></title>
					<link>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216572</link>
					<pubDate>Thu, 16 Feb 2012 00:03:26 +0000</pubDate>
					<dc:creator>django</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Jan,</p>
<p>thanks again for your time. Yes I copied all the files mentioned in the link.<br />
I guess I&#8217;ll try contacting the support for this.</p>
<p>Cheers &#8211; D</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216573</guid>
					<title><![CDATA[Re: Max 6 Java Standalone Error]]></title>
					<link>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216573</link>
					<pubDate>Fri, 17 Feb 2012 10:49:39 +0000</pubDate>
					<dc:creator>django</dc:creator>

					<description>
						<![CDATA[
						<p>Ok, for anyone running into this problem as well.<br />
I solved it with the great support from cycling (thank you Andrew).</p>
<p>I was building the standalone on my boot drive. When I tried building it on my secondary drive the error message disappeared&#8230;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216574</guid>
					<title><![CDATA[Re: Max 6 Java Standalone Error]]></title>
					<link>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216574</link>
					<pubDate>Fri, 17 Feb 2012 11:49:59 +0000</pubDate>
					<dc:creator>Roth</dc:creator>

					<description>
						<![CDATA[
						<blockquote><p>I was building the standalone on my boot drive. When I tried building it on my secondary drive the error message disappeared&#8230;
</p>
</blockquote>
<p>That&#8217;s funny, I seem to remember the opposite being true of some version of Max5, except no error messages (standalones built anywhere but the boot volume just wouldn&#8217;t launch).</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216575</guid>
					<title><![CDATA[Re: Max 6 Java Standalone Error]]></title>
					<link>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216575</link>
					<pubDate>Fri, 17 Feb 2012 13:24:19 +0000</pubDate>
					<dc:creator>Roth</dc:creator>

					<description>
						<![CDATA[
						<p>Oops, just woke up when I posted and forgot this thread was about Java (stupid I know as it is in the title). My last post doesn&#8217;t exactly relate I suppose.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216576</guid>
					<title><![CDATA[Re: Max 6 Java Standalone Error]]></title>
					<link>http://cycling74.com/forums/topic/max-6-java-standalone-error/#post-216576</link>
					<pubDate>Fri, 17 Feb 2012 14:59:21 +0000</pubDate>
					<dc:creator>Patrick Delges</dc:creator>

					<description>
						<![CDATA[
						<p>Roth, you&#8217;re right. Years ago, building a standalone on another partition than the boot one didn&#8217;t work well, there were some permissions problems deep in the package and the app didn&#8217;t launch. So now I always build my standalone on my desktop and never checked wether this bug is finally corrected.</p>
<p>Not sure everybody has a second drive to build standalones&#8230;</p>
<p>p</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

