<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0" xml:base="http://www.nwiresoftware.com">
<channel>
 <title>nWire's blog</title>
 <link>http://www.nwiresoftware.com/blogs/nwire</link>
 <description />
 <language>en</language>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/nWireBlog" /><feedburner:info uri="nwireblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>nWireBlog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
 <title>Five tips for speeding up Eclipse PDT and nWire</title>
 <link>http://feedproxy.google.com/~r/nWireBlog/~3/Rf6RAblml6s/five-tips-speeding-eclipse-pdt-and-nwire</link>
 <description>&lt;div style="float:right; padding-right: 11px; padding-bottom: 7px;"&gt;
&lt;script type="text/javascript"&gt;var dzone_url = 'http://www.nwiresoftware.com/blogs/nwire/2010/09/five-tips-speeding-eclipse-pdt-and-nwire';&lt;/script&gt;
&lt;script type="text/javascript"&gt;var dzone_title = 'Five tips for speeding up Eclipse PDT';&lt;/script&gt;
&lt;script type="text/javascript"&gt;var dzone_style = '1';&lt;/script&gt;
&lt;script src="http://widgets.dzone.com/links/widgets/zoneit.js"&gt;&lt;/script&gt; 
&lt;/div&gt;


	&lt;p&gt;
		&lt;a href="http://eclipse.org/helios/"&gt;Eclipse Helios (3.6)&lt;/a&gt;&amp;nbsp;includes an improved version of&amp;nbsp;&lt;a href="http://eclipse.org/pdt/"&gt;Eclipse PDT&lt;/a&gt;, labeled 2.2. It is also included in the current&amp;nbsp;&lt;a href="http://www.zend.com/en/products/studio/"&gt;Zend Studio&lt;/a&gt;&amp;nbsp;(7.1 and above). Among other enhancements, it dramatically improved the performance of code lookup-related tasks like searching references, creating a type hierarchy and even code completion. This is due to a new design, inspired by&amp;nbsp;&lt;a href="http://www.nwiresoftware.com/"&gt;nWire&lt;/a&gt;, which uses the&amp;nbsp;&lt;a href="http://h2database.com/"&gt;h2 database engine&lt;/a&gt;&amp;nbsp;as a persistent storage for this data.&amp;nbsp;
	&lt;/p&gt;
        
	&lt;p&gt;
		The h2 database is a high-performance, low profile, Java native database engine, created as a successor to the widely used&amp;nbsp;&lt;a href="http://hsqldb.org/"&gt;HSQLDB&lt;/a&gt;. It is open source and free to use. nWire uses h2 since its' early days. We gathered a lot of experience on how to optimize h2 and improve its' performance. There's a lot that can be done from the software developer side, however, even as an end user, there's still some simple techniques you can follow to improve the performance on your machine.
	&lt;/p&gt;
	
	&lt;h3&gt;
		The database files
	&lt;/h3&gt;
	&lt;p&gt;
		The h2 engine, as it is used in PDT and nWire, is running from within the Eclipse main process (in embedded mode and not as a server) and keeps the information in local storage, i.e. disk files. As a simple analogy, it is a bit like Microsoft Jet database engine used in MS Access. The database files are kept inside the workspace folder. The location of the workspace folder appears in the title of the main Eclipse window.
	&lt;/p&gt;
	&lt;p&gt;
		Under the workspace, there's a special folder called &lt;code&gt;.metadata&lt;/code&gt; (beginning with a dot). It may be hidden on your machine. This folder contains settings and temporary files for the workspace. The database files are located in:
	&lt;/p&gt;
	&lt;ul&gt;
		&lt;li&gt;For PDT: &lt;code&gt;&amp;lt;workspace folder&amp;gt;/.metadata/.plugins/org.eclipse.dltk.core.index.sql.h2/&lt;/code&gt;
		&lt;/li&gt;
		&lt;li&gt;For nWire: &lt;code&gt;&amp;lt;workspace folder&amp;gt;/.metadata/.plugins/com.nwiresoftware.nwire.core/ndb/&lt;/code&gt;
		&lt;/li&gt;
	&lt;/ul&gt;
	&lt;p&gt;
		The database files end with &lt;code&gt;.db&lt;/code&gt; suffix. When you work with PDT or nWire, the IO activity around these files is intensive. Keeping the IO smooth is the key to improving your performance. These files can get pretty big. For example, I have a workspace containing the &lt;a href="http://www.magentocommerce.com/"&gt;Magento&lt;/a&gt; code base with over 5600 PHP files and almost 450K line of code. The PDT repository occupies about 84 MB and the nWire repository is about 1 GB.
	&lt;/p&gt;
	&lt;h3&gt;
		1. Disable virus scanners
	&lt;/h3&gt;
	&lt;p&gt;
		The first thing you should do is disable virus scanning on database files. This has a major performance impact. The database engine will never execute code stored within the database, so there's no danger of malicious code being executed.&amp;nbsp;Most virus scanners allow disabling the scan of a given folder (see the folders above) or a given suffix (the .db suffix). &amp;nbsp;
	&lt;/p&gt;
	&lt;h3&gt;
		2. Use a fast storage device
	&lt;/h3&gt;
	&lt;p&gt;
		Some people use a&amp;nbsp;USB flash drive to store their workspace. Some store their workspace on a network drive. The impact on your performance in these cases will be substantial. If you want to achieve optimal performance, store your workspace on a fast storage device with a fast interface. Use your internal HDD (or SSD) for that purpose. Make sure the drive is properly maintained and has some free space available for the database to grow. If the file system requires it (FAT and NTFS), make sure to defragment your disk periodically.
	&lt;/p&gt;
	&lt;h3&gt;
		3. Keep your JVM up to date
	&lt;/h3&gt;
	&lt;p&gt;
		Keeping an updated JVM can improve the performance of h2. Especially if your are using an "ancient" version.&amp;nbsp;
	&lt;/p&gt;
	&lt;h3&gt;
		4. Delete the database if your experience problems
	&lt;/h3&gt;
	&lt;p&gt;
		In some cases, the database may get corrupted. This can happen, for example, in case of a power failure or a crash. When h2 loads the database, it will try to fix the corrupted data, which may take some time, depending on the database size. In case of PDT and nWire, the data is not really worth saving: it can be recreated by analyzing your source code. This means, you can safely delete the database files. Use this technique if Eclipse hangs when starting up or loading nWire. Make sure you close Eclipse first. The database will be recreated when you restart Eclipse.
	&lt;/p&gt;
	&lt;h3&gt;
		5. Do not backup the database
	&lt;/h3&gt;
	&lt;p&gt;
		If you are using an automated backup solution (e.g. TimeMachine, or a remote backup software), make sure to exclude the database folders from the backup. &amp;nbsp;These files are big and they will change frequently, which means it is a lot of data to back up. As I mentioned above, it is really unnecessary, since the data can be recreated. Needless to say, running the backup while working in Eclipse will seriously affect the IO performance.
	&lt;/p&gt;
	&lt;h3&gt;
		Conclusion
	&lt;/h3&gt;
	&lt;p&gt;
		Use the above tips to keep PDT and nWire running smoothly. If you have more tips or questions, let us know in the comments.&amp;nbsp;For more information on h2 performance see&amp;nbsp;&lt;a href="http://h2database.com/html/performance.html"&gt;this page&lt;/a&gt;.&amp;nbsp;
	&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/nWireBlog/~4/Rf6RAblml6s" height="1" width="1"/&gt;</description>
 <comments>http://www.nwiresoftware.com/blogs/nwire/2010/09/five-tips-speeding-eclipse-pdt-and-nwire#comments</comments>
 <category domain="http://www.nwiresoftware.com/blogs/category/eclipse">Eclipse</category>
 <category domain="http://www.nwiresoftware.com/blogs/tag/nwire">nWire</category>
 <category domain="http://www.nwiresoftware.com/blogs/tag/php">PHP</category>
 <pubDate>Wed, 01 Sep 2010 13:52:45 +0000</pubDate>
 <dc:creator>nWire</dc:creator>
 <guid isPermaLink="false">170 at http://www.nwiresoftware.com</guid>
<feedburner:origLink>http://www.nwiresoftware.com/blogs/nwire/2010/09/five-tips-speeding-eclipse-pdt-and-nwire</feedburner:origLink></item>
<item>
 <title>nWire Software joins the Eclipse foundation</title>
 <link>http://feedproxy.google.com/~r/nWireBlog/~3/EhH0ws2h33E/nwire-software-joins-eclipse-foundation</link>
 <description>&lt;p&gt;
			Today we have a big announcement: &lt;strong&gt;nWire Software joins the Eclipse foundation&lt;/strong&gt;. You can read the full press release &lt;a href="http://www.prweb.com/releases/eclipse/nwire/prweb4292694.htm"&gt;here&lt;/a&gt;. This is our way of showing commitment and support to the Eclipse community. We have been active members of the community for a long time and we are very pleased to finally make this step.
		&lt;/p&gt;
		
		&lt;div style="float:right; padding-left: 20px; padding-right: 10px;"&gt;
			&lt;a href="/sites/nwiresoftware.com/files/blog/eclipse-marketplace-client.png" rel="lightbox" title="Eclipse Marketplace Client"&gt;&lt;img style="width: 200px" src="/sites/nwiresoftware.com/files/blog/eclipse-marketplace-client.png" alt="eclipse-marketplace-client.png" /&gt;&lt;/a&gt;&lt;br /&gt;
		&lt;/div&gt;
		
		&lt;p&gt;
			There are benefits for our users as well. First, we will be mirroring full Eclipse downloads on our site. The downloads are served using a very fast CDN based on Limelight infrastructure. &lt;a href="http://www.nwiresoftware.com/download/eclipse"&gt;Try it yourself&lt;/a&gt;, it is FAST. We are hosting all the popular downloads for &lt;a href="http://www.nwiresoftware.com/download/eclipse/helios"&gt;Helios (Eclipse 3.6)&lt;/a&gt; and &lt;a href="http://www.nwiresoftware.com/download/eclipse/galileo"&gt;Galileo (Eclipse 3.5)&lt;/a&gt;. Plus, you can choose to add nWire to the prepackaged download. This will save you the trouble of installing nWire later.
		&lt;/p&gt;

		&lt;p&gt;
			But that’s not all. Helios has a new snazzy Eclipse Marketplace client. It makes finding plugins and installing them so much easier. Now that we are Eclipse members, you can find and install nWire directly from the Eclipse Market place dialog box. It is simple and works great. To get started, select &lt;strong&gt;Help → Eclipse Marketplace...&lt;/strong&gt;
		&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/nWireBlog/~4/EhH0ws2h33E" height="1" width="1"/&gt;</description>
 <comments>http://www.nwiresoftware.com/blogs/nwire/2010/07/nwire-software-joins-eclipse-foundation#comments</comments>
 <category domain="http://www.nwiresoftware.com/blogs/category/announcements">Announcements</category>
 <category domain="http://www.nwiresoftware.com/blogs/tag/eclipse">Eclipse</category>
 <category domain="http://www.nwiresoftware.com/blogs/tag/site-updates">Site Updates</category>
 <pubDate>Wed, 28 Jul 2010 06:04:51 +0000</pubDate>
 <dc:creator>nWire</dc:creator>
 <guid isPermaLink="false">164 at http://www.nwiresoftware.com</guid>
<feedburner:origLink>http://www.nwiresoftware.com/blogs/nwire/2010/07/nwire-software-joins-eclipse-foundation</feedburner:origLink></item>
<item>
 <title>nWire and Aptana Studio</title>
 <link>http://feedproxy.google.com/~r/nWireBlog/~3/ILqL0baO7lU/nwire-and-aptana-studio</link>
 <description>&lt;div style="float:right; padding-left: 20px; padding-right: 10px;"&gt;
			&lt;img src="/sites/nwiresoftware.com/files/blog/aptana-logo.png" alt="Aptana" /&gt;&lt;br /&gt;
		&lt;/div&gt;
		&lt;p&gt;
			&lt;a href="http://www.aptana.com/products/studio2"&gt;Aptana Studio&lt;/a&gt; is one of the most popular tools for web development. It is Eclipse based and includes support for PHP. Many developers ask: &lt;strong&gt;Does nWire support Aptana?&lt;/strong&gt; Well, I'm afraid the answer just got a bit more complex.
		&lt;/p&gt;
		&lt;p&gt;
			To understand the answer, one needs to be familiar with the state of PHP in Eclipse. Eclipse is an open source community. The Eclipse Platform houses many projects under its' roof. It endorses the development of external plugins and tools, some open source and some proprietary. As an example, Java development is supported by a very strong project called &lt;a href="http://eclipse.org/jdt/"&gt;JDT (Java Development Tools)&lt;/a&gt;. It is one of the first projects and a lot of person years were invested in it.
		&lt;/p&gt;
		&lt;p&gt;
			PHP development is supported by &lt;a href="http://eclipse.org/pdt/"&gt;PDT (PHP Development Tools)&lt;/a&gt;. However, unlike in the Java case, high quality PHP development tools arrived late to the Eclipse party. This opened the door for a number of PHP plugins which were developed outside the Eclipse foundation over the years. Once PDT proved to be a quality contender, most of these projects were abandoned. &lt;a href="http://www.nwiresoftware.com/products/nwire-php"&gt;nWire for PHP&lt;/a&gt; was developed for PDT 2.1 and above with support from the PDT team. Thus, it requires the use of the official Eclipse PHP support, which is PDT.
		&lt;/p&gt;
		&lt;p&gt;
			Aptana Studio is an open source IDE based on Eclipse. It borrows some plugins from Eclipse and adds some of its' own. Version 1 of Aptana did not include PDT, but rather a different plugin known as Aptana PHP. In version 2, Aptana Studio moved to PDT, abandoning the previously developed PHP support (see the &lt;a href="http://www.aptana.com/products/studio2/releasenotes"&gt;Aptana Studio 2 release notes&lt;/a&gt;). &lt;strong&gt;Users of Aptana Studio 2, which is based on PDT, can use nWire with Aptana Studio.&lt;/strong&gt;
		&lt;/p&gt;
		&lt;p&gt;
			A couple of weeks ago, a beta version of &lt;a href="http://aptana.org/products/studio3"&gt;Aptana Studio 3&lt;/a&gt; was released. In this version, PDT is no longer a part of the distribution and, instead, there's a newly developed PHP editor (see the &lt;a href="http://www.aptana.com/products/studio3/releasenotes"&gt;release notes&lt;/a&gt;). This means that the new release is incompatible with nWire for PHP, which requires PDT. &lt;strong&gt;Users of Aptana Studio 3 cannot use nWire at the moment.&lt;/strong&gt;
		&lt;/p&gt;
		&lt;p&gt;
			Is this the final verdict? Probably not. Users of Aptana might still be able to use nWire in the future. It should be possible to add PDT to Aptana Studio 3 and use it instead of the Aptana developed PHP support. This will re-enable nWire. However, at the time of this writing, early beta users are reporting issues with the installation of PDT with Aptana. We hope these issues are resolved before the final release.
		&lt;/p&gt;
		&lt;p&gt;
			Finally, we are considering support for Aptana PHP (and perhaps even Ruby) in future nWire releases. &lt;strong&gt;If this is something which you'd be interested to see, please chime in and &lt;a href="http://forum.nwiresoftware.com/viewtopic.php?f=5&amp;amp;t=52"&gt;vote in our poll&lt;/a&gt;.&lt;/strong&gt;
		&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/nWireBlog/~4/ILqL0baO7lU" height="1" width="1"/&gt;</description>
 <comments>http://www.nwiresoftware.com/blogs/nwire/2010/06/nwire-and-aptana-studio#comments</comments>
 <category domain="http://www.nwiresoftware.com/blogs/category/eclipse">Eclipse</category>
 <category domain="http://www.nwiresoftware.com/blogs/tag/php">PHP</category>
 <pubDate>Wed, 30 Jun 2010 06:48:28 +0000</pubDate>
 <dc:creator>nWire</dc:creator>
 <guid isPermaLink="false">146 at http://www.nwiresoftware.com</guid>
<feedburner:origLink>http://www.nwiresoftware.com/blogs/nwire/2010/06/nwire-and-aptana-studio</feedburner:origLink></item>
<item>
 <title>nWire Offers Educational Discounts</title>
 <link>http://feedproxy.google.com/~r/nWireBlog/~3/8y1_IMDC_tk/nwire-offers-educational-discounts</link>
 <description>&lt;div style="float:right; padding-left: 20px; padding-right: 10px;"&gt;
	&lt;a href="/buy/educational-discounts"&gt;&lt;img src="/sites/nwiresoftware.com/files/blog/nwire-edu-small.png" alt="Helios" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;

		&lt;p&gt;
			nWire is a very useful tool for diving into unfamiliar code. This means it is an excellent companion for students learning how to program. We received numerous requests from students and professors to provide a discount to educational institutions. Today, we are pleased to announce our &lt;strong&gt;Educational Discount Program&lt;/strong&gt;.
		&lt;/p&gt;
		&lt;p&gt;
			The offer is simple: &lt;strong&gt;students, faculty, staff and employees of accredited non-profit educational institutions can now purchase a fully functional 1 year nWire license for $19&lt;/strong&gt; (Java or PHP, $29 for both). That's more than 75% off the original price.
		&lt;/p&gt;
		&lt;p&gt;
			The educational discount licenses will expire after 1 year. We decided to provide a more substantial discount for a limited time license. Most students will need these tools in their more advanced years of study, so this should not be a problem. It is important to note that the licenses are intended for learning and teaching and should not be used for commercial purposes.
		&lt;/p&gt;
		&lt;p&gt;
			If you qualify for an educational discount license, you can buy yours today. Start from our &lt;a href="/buy/educational-discounts"&gt;Educational Discount Store&lt;/a&gt;. From there, follow the instructions. You will need to fill out an order form with your details. Make sure you correctly fill the institution details. The provided email address must belong to the domain of your institution. The details will go through our manual review and once the order is cleared (usually less than a day), you will receive an email with payment instructions.
		&lt;/p&gt;
		&lt;p&gt;
			We will also be offering site licenses to educational institutions who wish to install nWire in their labs. If you represent such an institution, please contact our &lt;a href="http://www.nwiresoftware.com/sales%40nwiresoftware.com"&gt;sales&lt;/a&gt; for more details.
		&lt;/p&gt;
		&lt;p&gt;
			Finally, if you have any feedback regarding the program, please do not hesitate to contact us. We are considering this program "an experiment", so your feedback is very important to us.
		&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/nWireBlog/~4/8y1_IMDC_tk" height="1" width="1"/&gt;</description>
 <comments>http://www.nwiresoftware.com/blogs/nwire/2010/06/nwire-offers-educational-discounts#comments</comments>
 <category domain="http://www.nwiresoftware.com/blogs/category/announcements">Announcements</category>
 <category domain="http://www.nwiresoftware.com/blogs/tag/license">License</category>
 <category domain="http://www.nwiresoftware.com/blogs/tag/site-updates">Site Updates</category>
 <pubDate>Mon, 21 Jun 2010 09:03:41 +0000</pubDate>
 <dc:creator>nWire</dc:creator>
 <guid isPermaLink="false">145 at http://www.nwiresoftware.com</guid>
<feedburner:origLink>http://www.nwiresoftware.com/blogs/nwire/2010/06/nwire-offers-educational-discounts</feedburner:origLink></item>
<item>
 <title>Getting Ready for Helios</title>
 <link>http://feedproxy.google.com/~r/nWireBlog/~3/Qggfm6Lphas/getting-ready-helios</link>
 <description>&lt;div style="float:right; padding-left: 20px; padding-right: 10px;"&gt;
	&lt;a href="http://www.eclipse.org/helios/"&gt;&lt;img src="/sites/nwiresoftware.com/files/blog/helios-small.gif" alt="Helios" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;
		&lt;p&gt;
			June is a festive month for the Eclipse community: the release of a new version. This year, the new version is called &lt;strong&gt;&lt;a href="http://www.eclipse.org/helios/"&gt;Eclipse Helios&lt;/a&gt;&lt;/strong&gt; or &lt;strong&gt;Eclipse 3.6&lt;/strong&gt;. nWire 1.3 does not officially support this new release, but we are already using it successfully in our labs. It should work just fine, so we invite you to try and report any issues you encounter. Official nWire supports Eclipse 3.6 will be released in the upcoming weeks.
		&lt;/p&gt;
		&lt;p&gt;
			For those not familiar with the Eclipse release cycles, here's a brief introduction. The Eclipse that you &lt;a href="http://www.eclipse.org/downloads/"&gt;download from Eclipse.org&lt;/a&gt; is actually a collection of &lt;a href="http://www.eclipse.org/helios/projects.php"&gt;many projects&lt;/a&gt;. These include the platform itself, JDT (Java Development Tools), PDT (PHP Development Tools), WebTools and many others. Each year, there's a single release for all these projects. It is called a "release train" because it leaves exactly on time. Everybody has to be ready and board the train, otherwise they miss it.
		&lt;/p&gt;
		&lt;p&gt;
			The Helios "Release Candidate" (RC) build can be &lt;a href="http://www.eclipse.org/downloads/index-helios.php"&gt;downloaded today&lt;/a&gt;. The final release will be available on &lt;strong&gt;June 23rd&lt;/strong&gt;. If you want to be among the first to download the new release, you might want to join the &lt;a href="http://www.eclipse.org/helios/friends.php"&gt;"Friends of Eclipse" program&lt;/a&gt;.
		&lt;/p&gt;
		&lt;p&gt;
			&lt;strong&gt;So what's new in this release?&lt;/strong&gt; Well, official release notes will be available with the release itself. We also recommend reading the articles which are released as part of the &lt;a href="http://www.eclipse.org/helios/blogathon/reviews.php"&gt;traditional Eclipse Blogathon&lt;/a&gt;. The changes may not be that obvious, for a number of reasons:
		&lt;/p&gt;
		&lt;ul&gt;
			&lt;li&gt;Most of the core Eclipse project are mature and fully featured, so the changes are minor.
			&lt;/li&gt;
			&lt;li&gt;Many changes and additions are behind the scenes, providing richer API for developers who use Eclipse as a base platform.
			&lt;/li&gt;
			&lt;li&gt;There are new and exciting projects which are now the focus of attention, mainly &lt;a href="http://wiki.eclipse.org/E4"&gt;e4&lt;/a&gt;, the next iteration of Eclipse which takes the platform into the browser.
			&lt;/li&gt;
		&lt;/ul&gt;
		&lt;p&gt;
			Nevertheless, there's a lot to look forward to. Like in previous releases, I will be posting my "Eclipse Hidden Treasures" article on my personal blog (&lt;a href="http://blog.zvikico.com/2009/07/eclipse-35-hidden-treasures.html"&gt;last year&lt;/a&gt;, &lt;a href="http://www.eclipse.org/helios/blogathon/2009reviews.php"&gt;it won the Blogathon&lt;/a&gt;). PHP developers are in for a real treat, as the new PDT 2.2 (part of the Helios release) offers much improved performance and &lt;a href="http://www.eclipse.org/pdt/release-notes/pdt2_2.html"&gt;many improvements&lt;/a&gt;. nWire for PHP uses PDT, and the performance boost is noticeable. Give it a try, you won't be disappointed.
		&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/nWireBlog/~4/Qggfm6Lphas" height="1" width="1"/&gt;</description>
 <comments>http://www.nwiresoftware.com/blogs/nwire/2010/06/getting-ready-helios#comments</comments>
 <category domain="http://www.nwiresoftware.com/blogs/category/eclipse">Eclipse</category>
 <category domain="http://www.nwiresoftware.com/blogs/tag/nwire">nWire</category>
 <pubDate>Tue, 15 Jun 2010 15:26:33 +0000</pubDate>
 <dc:creator>nWire</dc:creator>
 <guid isPermaLink="false">142 at http://www.nwiresoftware.com</guid>
<feedburner:origLink>http://www.nwiresoftware.com/blogs/nwire/2010/06/getting-ready-helios</feedburner:origLink></item>
<item>
 <title>More Payment Options</title>
 <link>http://feedproxy.google.com/~r/nWireBlog/~3/N_BmPy_YN_4/more-payment-options</link>
 <description>&lt;p&gt;Up until now, the only option to buy nWire was through PayPal. We chose PayPal in the first place because it is a nearly ubiquitous payment solution which provides strong security for the buyer. The payment process did go through the PayPal screens, but it did not require a PayPal account. Well, at least in most countries. It worked well for us, except for some isolated cases. Lately, we received more requests from larger business customers to provide an alternative payment method. Most noticeably, we were missing the ability to properly handle &lt;strong&gt;purchase orders&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;img style="float:right" src="/sites/nwiresoftware.com/files/images/buy-fastspring.png" /&gt;
	Today, we are adding another way to buy nWire: through our resellers &lt;a href="http://www.fastspring.com/"&gt;FastSpring&lt;/a&gt;. This means more flexible payment options and no dependency on PayPal (although PayPal can still be used). Buying through FastSpring means the invoice will be sent from them and the charges on your credit card bill will appear differently. Otherwise, you will be getting exactly the same license with the same level of support and commitment from us.&lt;/p&gt;

&lt;p&gt;We are still be keeping our current option. Mainly because of VAT. FastSpring is located in the US, hence, customers in the US or EU will be paying VAT, excluding EU companies with VAT ID. While this is not a problem, we still want the option for individuals to buy nWire through our direct channel and enjoy a VAT free transaction. &lt;/p&gt;

&lt;p&gt;Having two payment options could be confusing, so if you have a question, please &lt;a href="mailto:support@nwiresoftware.com"&gt;send us an email&lt;/a&gt; or use the online chat box which appears on our shopping pages when we are online.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/nWireBlog/~4/N_BmPy_YN_4" height="1" width="1"/&gt;</description>
 <comments>http://www.nwiresoftware.com/blogs/nwire/2010/05/more-payment-options#comments</comments>
 <category domain="http://www.nwiresoftware.com/blogs/category/announcements">Announcements</category>
 <category domain="http://www.nwiresoftware.com/blogs/tag/site-updates">Site Updates</category>
 <pubDate>Tue, 25 May 2010 09:56:11 +0000</pubDate>
 <dc:creator>nWire</dc:creator>
 <guid isPermaLink="false">134 at http://www.nwiresoftware.com</guid>
<feedburner:origLink>http://www.nwiresoftware.com/blogs/nwire/2010/05/more-payment-options</feedburner:origLink></item>
<item>
 <title>Installing Multiple Eclipse Plugins with Ease</title>
 <link>http://feedproxy.google.com/~r/nWireBlog/~3/cOnz-_g73Es/installing-multiple-eclipse-plugins-ease</link>
 <description>&lt;div style="float:left; padding-right: 11px; padding-bottom: 7px;"&gt;
&lt;script type="text/javascript"&gt;var dzone_url = 'http://eclipse.dzone.com/articles/installing-multiple-eclipse';&lt;/script&gt;
&lt;script type="text/javascript"&gt;var dzone_title = 'Installing Multiple Eclipse Plugins with Ease';&lt;/script&gt;
&lt;script type="text/javascript"&gt;var dzone_style = '1';&lt;/script&gt;
&lt;script language="javascript" src="http://widgets.dzone.com/links/widgets/zoneit.js"&gt;&lt;/script&gt; 
&lt;/div&gt;


		&lt;p&gt;
			Eclipse is a platform built for plugins. Personally I use over a dozen plugins on top of the vanilla Eclipse distribution. All these plugins greatly increase my productivity throughout the development cycle. However, there is a drawback: when setting up a new IDE, installing all those plugins can be very time consuming.
		&lt;/p&gt;
		&lt;p&gt;
			There are a number of solutions for that. Most of them include a custom Eclipse distribution or more plugins. Now, there's another option: using the new &lt;a href="http://marketplace.eclipse.org/"&gt;Eclipse Marketplace&lt;/a&gt;.
		&lt;/p&gt;
		&lt;p&gt;
			The process is simple: mark your favorite Eclipse plugins and the Marketplace will build a personalized update site containing your plugins. This update site can be used in all versions and distributions of Eclipse without the need to install any extra plugins. Moreover, this update site is public and can shared among teammates and colleagues. This process works great for installing &lt;a href="http://www.nwiresoftware.com/"&gt;nWire&lt;/a&gt; along with other plugins from different sites.
		&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.nwiresoftware.com/blogs/nwire/2010/05/installing-multiple-eclipse-plugins-ease" target="_blank"&gt;read more&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/nWireBlog/~4/cOnz-_g73Es" height="1" width="1"/&gt;</description>
 <comments>http://www.nwiresoftware.com/blogs/nwire/2010/05/installing-multiple-eclipse-plugins-ease#comments</comments>
 <category domain="http://www.nwiresoftware.com/blogs/category/eclipse">Eclipse</category>
 <category domain="http://www.nwiresoftware.com/blogs/tag/installation">Installation</category>
 <pubDate>Mon, 17 May 2010 15:14:02 +0000</pubDate>
 <dc:creator>nWire</dc:creator>
 <guid isPermaLink="false">132 at http://www.nwiresoftware.com</guid>
<feedburner:origLink>http://www.nwiresoftware.com/blogs/nwire/2010/05/installing-multiple-eclipse-plugins-ease</feedburner:origLink></item>
<item>
 <title>nWire 1.3.0 is Released!</title>
 <link>http://feedproxy.google.com/~r/nWireBlog/~3/SAVQq59f0Ws/nwire-130-released</link>
 <description>&lt;p&gt;
			We are very happy to announce that nWire 1.3 is released. This new release is a &lt;strong&gt;free upgrade&lt;/strong&gt; to all our existing customers. To upgrade an existing nWire installation, use the Eclipse &lt;em&gt;Check for Updates&lt;/em&gt; feature or simply reinstall nWire from our update site at &lt;strong&gt;http://update.nwiresoftware.com&lt;/strong&gt;. For more details on installing nWire see our &lt;a href="http://www.nwiresoftware.com/download"&gt;download page&lt;/a&gt;. We moved our update sites to Amazon CloudFront infrastructure, so the installation should be very quick.
		&lt;/p&gt;
		&lt;p&gt;
			This release is focused on performance and polishing the user experience. We believe the new nWire is more mature and delivers higher quality. Read the full &lt;a href="http://www.nwiresoftware.com/support/release-notes/nwire"&gt;release notes&lt;/a&gt;.
		&lt;/p&gt;
		&lt;h2&gt;
			Free Trials for Everyone!
		&lt;/h2&gt;
		&lt;p&gt;
			If you tried nWire before and wish to try it again, you are welcome to do so. Simply install nWire and start a new, free 30 day trial today. Even if your trial expired in previous versions.
		&lt;/p&gt;
		&lt;h2&gt;
			Important: Updated Pricing
		&lt;/h2&gt;
		&lt;p&gt;
			This new nWire release is the result of a significant development effort. In light of these efforts, the prices of nWire will be updated. From the beginning of June, the base price for nWire (PHP or Java) will be $79 and the price for both products will be $129. &lt;strong&gt;You can still take advantage of our current prices before the end of the month: get nWire for PHP or Java for $59 and both for $99.&lt;/strong&gt; For more pricing information and volume pricing, please visit our &lt;a href="http://www.nwiresoftware.com/buy"&gt;online shop&lt;/a&gt;.
		&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/nWireBlog/~4/SAVQq59f0Ws" height="1" width="1"/&gt;</description>
 <comments>http://www.nwiresoftware.com/blogs/nwire/2010/05/nwire-130-released#comments</comments>
 <category domain="http://www.nwiresoftware.com/blogs/category/announcements">Announcements</category>
 <category domain="http://www.nwiresoftware.com/blogs/category/product-updates">Product Updates</category>
 <category domain="http://www.nwiresoftware.com/blogs/tag/nwire">nWire</category>
 <pubDate>Mon, 10 May 2010 08:59:26 +0000</pubDate>
 <dc:creator>nWire</dc:creator>
 <guid isPermaLink="false">129 at http://www.nwiresoftware.com</guid>
<feedburner:origLink>http://www.nwiresoftware.com/blogs/nwire/2010/05/nwire-130-released</feedburner:origLink></item>
<item>
 <title>nWire 1.3.0 Nearing Production</title>
 <link>http://feedproxy.google.com/~r/nWireBlog/~3/jN113j2St-4/nwire-130-nearing-production</link>
 <description>&lt;p&gt;
			nWire 1.3.0 Beta is moving according to plan. Today, we are releasing the last update of the beta. The final product will be released shortly after. This release is focused on ironing out the final issues and it is feature complete. As always, please send your feedback and bug reports to &lt;a href="http://www.nwiresoftware.com/support%40nwiresoftware.com"&gt;support@nwiresoftware.com&lt;/a&gt;, or visit our &lt;a href="http://forum.nwiresoftware.com/index.php"&gt;forum&lt;/a&gt;.
		&lt;/p&gt;
		&lt;p&gt;
			What is new in the third beta of nWire 1.3.0?
		&lt;/p&gt;
		&lt;ul&gt;
			&lt;li style="margin-top: 5px;"&gt;nWire will now use the Eclipse defined content types in order to determine which files will be analyzed. This is especially important in PHP projects using different file extension which is non standard. To add more types, use the preferences, under General -&amp;gt; Content Types. This works for PHP files and Java files.
			&lt;/li&gt;
			&lt;li style="margin-top: 5px;"&gt;Removing the data from the repository when closing a project is now optional. The default is to keep the data, as it was in nWire 1.1 and unlike nWire 1.2. This can be changed in the preferences, under nWire -&amp;gt; Analysis.
			&lt;/li&gt;
			&lt;li style="margin-top: 5px;"&gt;The stability of the navigator focusing was improved.
			&lt;/li&gt;
			&lt;li style="margin-top: 5px;"&gt;More performance enhancements.
			&lt;/li&gt;
		&lt;/ul&gt;
		&lt;p&gt;
			Please use the following update site URL to install the new beta: &lt;strong&gt;http://update-beta.nwiresoftware.com&lt;/strong&gt;. Follow the installation instructions for the release version (&lt;a href="/download/update-manager"&gt;using the update manager&lt;/a&gt;), replacing the release URL with the one above. If you are already using the beta, you can use the Eclipse built in update mechanism to update nWire, selecting Help -&amp;gt; Check for Updates.
		&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/nWireBlog/~4/jN113j2St-4" height="1" width="1"/&gt;</description>
 <comments>http://www.nwiresoftware.com/blogs/nwire/2010/05/nwire-130-nearing-production#comments</comments>
 <category domain="http://www.nwiresoftware.com/blogs/category/product-updates">Product Updates</category>
 <category domain="http://www.nwiresoftware.com/blogs/tag/beta">Beta</category>
 <category domain="http://www.nwiresoftware.com/blogs/tag/nwire">nWire</category>
 <pubDate>Mon, 03 May 2010 05:21:40 +0000</pubDate>
 <dc:creator>nWire</dc:creator>
 <guid isPermaLink="false">127 at http://www.nwiresoftware.com</guid>
<feedburner:origLink>http://www.nwiresoftware.com/blogs/nwire/2010/05/nwire-130-nearing-production</feedburner:origLink></item>
<item>
 <title>nWire 1.3.0 Beta Updated</title>
 <link>http://feedproxy.google.com/~r/nWireBlog/~3/G-6JrtbZV-k/nwire-130-beta-updated</link>
 <description>&lt;p&gt;
			We launched the nWire 1.3.0 Beta about a month ago (read our &lt;a href="http://www.nwiresoftware.com/blogs/nwire/2010/03/nwire-130-beta-released"&gt;previous post&lt;/a&gt;) and got some good feedback. Today we are releasing the second beta, which is faster and more stable. It also further improves the usability, more details hereunder. This release is stable enough, so we recommend you try it out and let us know what your think. Please send your feedback and bug reports to &lt;a href="http://www.nwiresoftware.com/support%40nwiresoftware.com"&gt;support@nwiresoftware.com&lt;/a&gt;, visit our &lt;a href="http://forum.nwiresoftware.com/index.php"&gt;forum&lt;/a&gt;.
		&lt;/p&gt;
		&lt;p&gt;
			What is new in the second beta of nWire 1.3.0?
		&lt;/p&gt;
		&lt;ul&gt;
			&lt;li style="margin-top: 5px;"&gt;The search accuracy and sorting was improved. It works in a more "fuzzy" manner, trying to find the most matching results. Try it out and let us know what you think.
			&lt;/li&gt;
			&lt;li style="margin-top: 5px;"&gt;The navigator elements will load asynchronously, without delaying the user interface. A spinning wheel is shown while the navigator items are loading.
			&lt;/li&gt;
			&lt;li style="margin-top: 5px;"&gt;nWire loading is now done in the background after the Eclipse workbench is open. Thus, nWire will not delay the Eclipse startup.
			&lt;/li&gt;
			&lt;li style="margin-top: 5px;"&gt;The scanning of files for changes which was done after Eclipse starts is now optional. You can turn it off in the preferences. You can manually invoke such a scan from the nWire Tools menu (right click on a project in the Project Explorer).
			&lt;/li&gt;
			&lt;li style="margin-top: 5px;"&gt;The rebuilding of the search index which was done after Eclipse starts is also optional. You can turn it off in the preferences. You can manually invoke such a scan from the nWire Tools menu (right click on a project in the Project Explorer).
			&lt;/li&gt;
			&lt;li style="margin-top: 5px;"&gt;More performance improvements
			&lt;/li&gt;
		&lt;/ul&gt;
		&lt;p&gt;
			Please use the following update site URL to install the new beta: &lt;strong&gt;http://update-beta.nwiresoftware.com&lt;/strong&gt;. Follow the installation instructions for the release version (&lt;a href="/download/update-manager"&gt;using the update manager&lt;/a&gt;), replacing the release URL with the one above. If your trial license expired, don't worry about it: you can activate and start another trial with the new beta.
		&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/nWireBlog/~4/G-6JrtbZV-k" height="1" width="1"/&gt;</description>
 <comments>http://www.nwiresoftware.com/blogs/nwire/2010/04/nwire-130-beta-updated#comments</comments>
 <category domain="http://www.nwiresoftware.com/blogs/category/product-updates">Product Updates</category>
 <category domain="http://www.nwiresoftware.com/blogs/tag/beta">Beta</category>
 <category domain="http://www.nwiresoftware.com/blogs/tag/nwire">nWire</category>
 <pubDate>Wed, 21 Apr 2010 06:44:00 +0000</pubDate>
 <dc:creator>nWire</dc:creator>
 <guid isPermaLink="false">126 at http://www.nwiresoftware.com</guid>
<feedburner:origLink>http://www.nwiresoftware.com/blogs/nwire/2010/04/nwire-130-beta-updated</feedburner:origLink></item>
</channel>
</rss>

