<?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"
	>
<channel>
	<title>Comments for Common Navigator and Other Things</title>
	<atom:link href="http://dev.eclipse.org/blogs/francis/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://dev.eclipse.org/blogs/francis</link>
	<description>Francis Upton's Eclipse Blog</description>
	<pubDate>Thu, 05 Nov 2009 03:06:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>Comment on Magic Required to use the Common Navigator in an RCP Application that uses Resources by Francis Upton</title>
		<link>http://dev.eclipse.org/blogs/francis/2008/05/27/magic-required-to-use-the-common-navigator-in-an-rcp-application/#comment-113</link>
		<dc:creator>Francis Upton</dc:creator>
		<pubDate>Tue, 30 Jun 2009 19:15:42 +0000</pubDate>
		<guid isPermaLink="false">http://dev.eclipse.org/blogs/francis/2008/05/27/magic-required-to-use-the-common-navigator-in-an-rcp-application/#comment-113</guid>
		<description>@Will, yes this has changed in 3.5 and the instructions were revised in 3.5 to reflect this.  The new instructions refer to the new API.  See this page: http://help.eclipse.org/galileo/topic/org.eclipse.platform.doc.isv/guide/cnf_steps_content.htm.</description>
		<content:encoded><![CDATA[<p>@Will, yes this has changed in 3.5 and the instructions were revised in 3.5 to reflect this.  The new instructions refer to the new API.  See this page: <a href="http://help.eclipse.org/galileo/topic/org.eclipse.platform.doc.isv/guide/cnf_steps_content.htm" rel="nofollow">http://help.eclipse.org/galileo/topic/org.eclipse.platform.doc.isv/guide/cnf_steps_content.htm</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Magic Required to use the Common Navigator in an RCP Application that uses Resources by Will</title>
		<link>http://dev.eclipse.org/blogs/francis/2008/05/27/magic-required-to-use-the-common-navigator-in-an-rcp-application/#comment-112</link>
		<dc:creator>Will</dc:creator>
		<pubDate>Tue, 30 Jun 2009 18:25:59 +0000</pubDate>
		<guid isPermaLink="false">http://dev.eclipse.org/blogs/francis/2008/05/27/magic-required-to-use-the-common-navigator-in-an-rcp-application/#comment-112</guid>
		<description>Has this changed with Eclipse 3.5?

For one, you can call org.eclipse.ui.ide.IDE.registerAdapters() instead of org.eclipse.ui.internal.ide.model.WorkbenchAdapterBuilder.registerAdapters() to avoid using the internal (and now deprecated) class.

At least in Ganymede help there was a section about RCP with essentially these instructions: http://help.eclipse.org/ganymede/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/cnf_rcp.htm

I don't see similar instructions in the Galileo help.</description>
		<content:encoded><![CDATA[<p>Has this changed with Eclipse 3.5?</p>
<p>For one, you can call org.eclipse.ui.ide.IDE.registerAdapters() instead of org.eclipse.ui.internal.ide.model.WorkbenchAdapterBuilder.registerAdapters() to avoid using the internal (and now deprecated) class.</p>
<p>At least in Ganymede help there was a section about RCP with essentially these instructions: <a href="http://help.eclipse.org/ganymede/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/cnf_rcp.htm" rel="nofollow">http://help.eclipse.org/ganymede/index.jsp?topic=/org.eclipse.platform.doc.isv/guide/cnf_rcp.htm</a></p>
<p>I don&#8217;t see similar instructions in the Galileo help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Application &#8220;&#8230;&#8221; could not be found in the registry. by Kurt</title>
		<link>http://dev.eclipse.org/blogs/francis/2009/05/19/application-could-not-be-found-in-the-registry/#comment-94</link>
		<dc:creator>Kurt</dc:creator>
		<pubDate>Wed, 17 Jun 2009 16:06:28 +0000</pubDate>
		<guid isPermaLink="false">http://dev.eclipse.org/blogs/francis/?p=45#comment-94</guid>
		<description>I believe that I have found the problem; the missing bundle (plugin) needed to be selected in the Launch Configuration... select project, right-click, , select Plug-ins tab, check the missing plugin.

Kurt</description>
		<content:encoded><![CDATA[<p>I believe that I have found the problem; the missing bundle (plugin) needed to be selected in the Launch Configuration&#8230; select project, right-click, , select Plug-ins tab, check the missing plugin.</p>
<p>Kurt</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Application &#8220;&#8230;&#8221; could not be found in the registry. by Kurt</title>
		<link>http://dev.eclipse.org/blogs/francis/2009/05/19/application-could-not-be-found-in-the-registry/#comment-93</link>
		<dc:creator>Kurt</dc:creator>
		<pubDate>Wed, 17 Jun 2009 15:37:39 +0000</pubDate>
		<guid isPermaLink="false">http://dev.eclipse.org/blogs/francis/?p=45#comment-93</guid>
		<description>I'm encountering the same problem while attempting to use JFreeChart in a simple RCP (Eclipse 3.3.0).  The RCP is the simple "RCP application with a view" template found in Eclipse.  The JFreeChart jars are bundled into a seperate plugin per the example at http://www.vogella.de/articles/EclipseJFreeChart/article.html.

I've found the simply adding the JFreeChart project as a dependency will cause the problem (Application not found in the registry).  The log indicates that the JFreeChart bundle is missing... and I'm not sure what to do to get the app to find it (I'm new to RCP).

Finally, I've found that I can avoid the problem and get the app to run with the JFreeChart example code simply by changing the ID of my RCP application.  Does anyone know why this would seem to solve the problem?

Thanks</description>
		<content:encoded><![CDATA[<p>I&#8217;m encountering the same problem while attempting to use JFreeChart in a simple RCP (Eclipse 3.3.0).  The RCP is the simple &#8220;RCP application with a view&#8221; template found in Eclipse.  The JFreeChart jars are bundled into a seperate plugin per the example at <a href="http://www.vogella.de/articles/EclipseJFreeChart/article.html" rel="nofollow">http://www.vogella.de/articles/EclipseJFreeChart/article.html</a>.</p>
<p>I&#8217;ve found the simply adding the JFreeChart project as a dependency will cause the problem (Application not found in the registry).  The log indicates that the JFreeChart bundle is missing&#8230; and I&#8217;m not sure what to do to get the app to find it (I&#8217;m new to RCP).</p>
<p>Finally, I&#8217;ve found that I can avoid the problem and get the app to run with the JFreeChart example code simply by changing the ID of my RCP application.  Does anyone know why this would seem to solve the problem?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RCP, p2, Vista and VirtualStore by Francis Upton</title>
		<link>http://dev.eclipse.org/blogs/francis/2009/05/24/rcp-p2-vista-and-virtualstore/#comment-89</link>
		<dc:creator>Francis Upton</dc:creator>
		<pubDate>Mon, 25 May 2009 17:54:22 +0000</pubDate>
		<guid isPermaLink="false">http://dev.eclipse.org/blogs/francis/?p=48#comment-89</guid>
		<description>@john I think the issue is that I provided a configuration folder when I installed in the Program Files directory, so part of this checking must assume that if there is already a configuration folder in the Program Files directory then it should just use that.  Of course that was my mistake, I should not have provided it there since it was not writable.</description>
		<content:encoded><![CDATA[<p>@john I think the issue is that I provided a configuration folder when I installed in the Program Files directory, so part of this checking must assume that if there is already a configuration folder in the Program Files directory then it should just use that.  Of course that was my mistake, I should not have provided it there since it was not writable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RCP, p2, Vista and VirtualStore by John Arthorne</title>
		<link>http://dev.eclipse.org/blogs/francis/2009/05/24/rcp-p2-vista-and-virtualstore/#comment-88</link>
		<dc:creator>John Arthorne</dc:creator>
		<pubDate>Mon, 25 May 2009 16:09:44 +0000</pubDate>
		<guid isPermaLink="false">http://dev.eclipse.org/blogs/francis/?p=48#comment-88</guid>
		<description>Yes, this has been true since 3.2.2:

https://bugs.eclipse.org/bugs/show_bug.cgi?id=209192</description>
		<content:encoded><![CDATA[<p>Yes, this has been true since 3.2.2:</p>
<p><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=209192" rel="nofollow">https://bugs.eclipse.org/bugs/show_bug.cgi?id=209192</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RCP, p2, Vista and VirtualStore by Francis Upton</title>
		<link>http://dev.eclipse.org/blogs/francis/2009/05/24/rcp-p2-vista-and-virtualstore/#comment-87</link>
		<dc:creator>Francis Upton</dc:creator>
		<pubDate>Mon, 25 May 2009 15:22:32 +0000</pubDate>
		<guid isPermaLink="false">http://dev.eclipse.org/blogs/francis/?p=48#comment-87</guid>
		<description>@John, is this true for 3.4.2 as well?  I'm pretty sure I did not specify the osgi.configuration.area property anywhere, nor did I pass the corresponding flag to the launcher?  I do need to know ahead of time where it's going to go, as I have stuff in the config.ini (and stuff for p2 due to the pre-installation that's done when building the kit) that needs to go in the configuration folder.</description>
		<content:encoded><![CDATA[<p>@John, is this true for 3.4.2 as well?  I&#8217;m pretty sure I did not specify the osgi.configuration.area property anywhere, nor did I pass the corresponding flag to the launcher?  I do need to know ahead of time where it&#8217;s going to go, as I have stuff in the config.ini (and stuff for p2 due to the pre-installation that&#8217;s done when building the kit) that needs to go in the configuration folder.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RCP, p2, Vista and VirtualStore by John Arthorne</title>
		<link>http://dev.eclipse.org/blogs/francis/2009/05/24/rcp-p2-vista-and-virtualstore/#comment-86</link>
		<dc:creator>John Arthorne</dc:creator>
		<pubDate>Mon, 25 May 2009 14:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://dev.eclipse.org/blogs/francis/?p=48#comment-86</guid>
		<description>When the framework starts, it tries to find an appropriate writeable location for the configuration folder. When the install directory is not writeable, or when running on Vista and the install directory is under "Program Files", the framework will default to putting the configuration folder under user-home. This works perfectly in the Eclipse platform and Eclipse SDK itself. I suspect you had somewhere explicitly set the configuration directory to be under the install directory to encounter this problem.</description>
		<content:encoded><![CDATA[<p>When the framework starts, it tries to find an appropriate writeable location for the configuration folder. When the install directory is not writeable, or when running on Vista and the install directory is under &#8220;Program Files&#8221;, the framework will default to putting the configuration folder under user-home. This works perfectly in the Eclipse platform and Eclipse SDK itself. I suspect you had somewhere explicitly set the configuration directory to be under the install directory to encounter this problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RCP, p2, Vista and VirtualStore by Francis Upton</title>
		<link>http://dev.eclipse.org/blogs/francis/2009/05/24/rcp-p2-vista-and-virtualstore/#comment-85</link>
		<dc:creator>Francis Upton</dc:creator>
		<pubDate>Sun, 24 May 2009 22:09:23 +0000</pubDate>
		<guid isPermaLink="false">http://dev.eclipse.org/blogs/francis/?p=48#comment-85</guid>
		<description>@alex I agree, however it's actually completely modular in how you can decompose the osgi stuff (and p2) into different places.  The problem is that it's not a habit to set it up correctly.  It's really just a matter of configuration and documentation.  And well learning the hard way.</description>
		<content:encoded><![CDATA[<p>@alex I agree, however it&#8217;s actually completely modular in how you can decompose the osgi stuff (and p2) into different places.  The problem is that it&#8217;s not a habit to set it up correctly.  It&#8217;s really just a matter of configuration and documentation.  And well learning the hard way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RCP, p2, Vista and VirtualStore by Alex Blewitt</title>
		<link>http://dev.eclipse.org/blogs/francis/2009/05/24/rcp-p2-vista-and-virtualstore/#comment-84</link>
		<dc:creator>Alex Blewitt</dc:creator>
		<pubDate>Sun, 24 May 2009 21:58:49 +0000</pubDate>
		<guid isPermaLink="false">http://dev.eclipse.org/blogs/francis/?p=48#comment-84</guid>
		<description>It's always been crap that Eclipse writes to the program install area. It's a problem with the Mac installs too. It really should be absolutely unnecessary to write there but sadly Eclipse is designed with poor Windows standards as it's main focus and pays lip service to standard Unix or Mac standards.</description>
		<content:encoded><![CDATA[<p>It&#8217;s always been crap that Eclipse writes to the program install area. It&#8217;s a problem with the Mac installs too. It really should be absolutely unnecessary to write there but sadly Eclipse is designed with poor Windows standards as it&#8217;s main focus and pays lip service to standard Unix or Mac standards.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
