<?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: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" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Webapper Blog</title>
	
	<link>http://www.webapper.com/blog</link>
	<description>Web Application Engineers</description>
	<lastBuildDate>Thu, 05 Aug 2010 20:13:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/WebapperBlog" /><feedburner:info uri="webapperblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>WebapperBlog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Integrating ColdFusion with FogBugz results in cfhttp conx failure</title>
		<link>http://feedproxy.google.com/~r/WebapperBlog/~3/kCAcEyoDWCM/</link>
		<comments>http://www.webapper.com/blog/index.php/2010/08/05/integrating-coldfusion-with-fogbugz-results-in-cfhttp-conx-failure/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 20:13:19 +0000</pubDate>
		<dc:creator>Nat Papovich</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[General Development]]></category>
		<category><![CDATA[JVM & Java]]></category>

		<guid isPermaLink="false">http://www.webapper.com/blog/?p=1269</guid>
		<description><![CDATA[The development team at Webapper has been using FogBugz for a couple years now and we like it well enough not to bother switching to anything else. One thing I found lacking is a &#8220;customer portal&#8221; &#8211; a way for our clients to review the status of open tickets we&#8217;re tracking for their projects. Our [...]]]></description>
			<content:encoded><![CDATA[<p>The development team at Webapper has been using FogBugz for a couple years now and we like it well enough not to bother switching to anything else. One thing I found lacking is a &#8220;customer portal&#8221; &#8211; a way for our clients to review the status of open tickets we&#8217;re tracking for their projects. Our old system, OnTime, had this feature and it seems pretty basic. FogBugz does have a weak &#8220;anonymous user&#8221; feature but it doesn&#8217;t work how we need it to work. So we built a custom ColdFusion front-end using the FogBugz API. It has its own user table and user-project table, and the rest is just calls to FogBugz for tickets in a project, details about a ticket, etc.</p>
<p>But I encountered an issue right away, using cfhttp to call the FogBugz API. Here is the code I tried:</p>
<p><code class="codecolorer text default"><span class="text">&lt;cfhttp method=&quot;get&quot; url=&quot;https://webapper.fogbugz.com/api.asp&quot;&gt;&lt;/cfhttp&gt;<br />
&lt;cfdump var=&quot;#cfhttp.FileContent#&quot;&gt;</span></code></p>
<p>I kept getting &#8220;Connection Failure&#8221;. If you&#8217;re familiar with the FogBugz API (or if not but you have a good imagination and can take a guess what that URL might do) you might notice I&#8217;m not even doing an &#8220;action&#8221;. You can even try that URL in a browser and see that it displays a message about not being logged in, which is a response from the API. I wasn&#8217;t even getting that far. It&#8217;s like there was some invisible wall in between my cfhttp call and the API.</p>
<p>Because calls to the FogBugz API need to run over SSL, I thought I had to add the cert to the cacerts store in my JRE to make the SSL bit work. That took a while to do since I&#8217;m on a mac and the cacerts never looked right. Eventually though I got a cert added, but the cfhttp call still wouldn&#8217;t work. I never did figure out what the root cause was, but I did work around it.</p>
<p>I wrote some java code to do the job:</p>
<p><code class="codecolorer java default"><span class="java">objUrl <span style="color: #339933;">=</span> createobject<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;java&quot;</span>,<span style="color: #0000ff;">&quot;java.net.URL&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">init</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;#local.baseURL#&amp;amp;#local.queryString#&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
conn <span style="color: #339933;">=</span> objUrl.<span style="color: #006633;">openConnection</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
...<span style="color: #006633;">followed</span> by some <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Ainputstreamreader+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">InputStreamReader</span></a> and <a href="http://www.google.com/search?hl=en&amp;q=allinurl%3Abufferedreader+java.sun.com&amp;btnI=I%27m%20Feeling%20Lucky"><span style="color: #003399;">BufferedReader</span></a> to get the output.</span></code></p>
<p>And now it works. So I know my cacerts thing is right and it&#8217;s a deficiency in cfhttp itself. What, I can&#8217;t be sure, but I don&#8217;t care. So if you&#8217;re struggling with ColdFusion and FogBugz integration using cfhttp, try this instead. And if you have gotten cfhttp to work with the FogBugz API, please share your code!</p>
<img src="http://feeds.feedburner.com/~r/WebapperBlog/~4/kCAcEyoDWCM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2010/08/05/integrating-coldfusion-with-fogbugz-results-in-cfhttp-conx-failure/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.webapper.com/blog/index.php/2010/08/05/integrating-coldfusion-with-fogbugz-results-in-cfhttp-conx-failure/</feedburner:origLink></item>
		<item>
		<title>(Bollox to) ColdFusion is Slow</title>
		<link>http://feedproxy.google.com/~r/WebapperBlog/~3/r0EpOOf91Es/</link>
		<comments>http://www.webapper.com/blog/index.php/2010/07/29/bollox-to-coldfusion-is-slow/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 17:50:22 +0000</pubDate>
		<dc:creator>Patrick Quinn</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[JVM & Java]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[SeeFusion]]></category>

		<guid isPermaLink="false">http://www.webapper.com/blog/?p=1257</guid>
		<description><![CDATA[We&#8217;ve been hearing the &#8220;ColdFusion is slow&#8221; nonsense for as long as the platform as been around. (Quick history tidbit: We still have support emails from back when Jeremy Allaire was sending them himself!) In our opinion, whenever someone repeats this tripe, that person is instantly branded a software novice, and, probably, one with an [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve been hearing the &#8220;ColdFusion is slow&#8221; nonsense for as long as the platform as been around. (Quick history tidbit: We still have support emails from back when Jeremy Allaire was sending them himself!) In our opinion, whenever someone repeats this tripe, that person is instantly branded a software novice, and, probably, one with an anti-ColdFusion axe to grind, too. Since we&#8217;ve been ColdFusion performance engineering specialists going all the way back to our days at Allaire, we&#8217;ve always known that ColdFusion (which is to say Java) is not inherently slow. Does ColdFusion provide a lot more rope with which developers and system/network administrators can hang themselves (and their ColdFusion systems)? Absolutely. And thus, ColdFusion&#8217;s greatest strength has also always been its greatest weakness&#8211;its out-of-the-box capabilities and low learning curve are unparalleled. As with life in general, however, with such power always comes great responsibility, too. ColdFusion is just software, and if you&#8217;re not following the best practices for developing fast, stable software, then you can program and/or configure any software platform into the ground, performance-wise. That&#8217;s basically what we do in our performance engineering practice&#8211;we apply (usually retroactively) all of the best practices necessary to create the fastest possible ColdFusion systems.</p>
<p>But, don&#8217;t just take my word for it. Let me dazzle you with some real-world numbers. One of the systems that we tuned recently was peaking at 200-300 requests <em>per second</em>. Here&#8217;s a screenshot, so you can see for yourself:<br />
<div id="attachment_1259" class="wp-caption alignnone" style="width: 615px"><a href="http://www.webapper.com/enclosures/2010/07/seefusion_threads.gif"><img src="http://www.webapper.com/enclosures/2010/07/seefusion_threads.gif" alt="" title="seefusion_threads" width="605" height="443" class="size-full wp-image-1259" /></a><p class="wp-caption-text">ColdFusion Rocks!</p></div></p>
<p>Mind you, this was a single 32-bit Windows machine, so it wasn&#8217;t even a leading-edge hosting platform. (All of the ColdFusion hosting environments that we design and implement these days are all-64-bit,  which makes an enormous difference in terms of CPU utilization, RAM, etc.) All of this performance was coming out of a humble little 1.4GB memory space. When you get things right in terms of properly tuning a ColdFusion system&#8211;garbage collection, query activity, etc., etc.&#8211;then ColdFusion will stack up against any other Web application platform, or even lead the pack, when it comes to speed.</p>
<p>So, let the word go forth today&#8211;the notion that ColdFusion is somehow inherently slow is bollox. For those of you not familiar with British English, the American English translation is: Bullshit! (The title of the blog post is in honor of our British Co-Founder, Mike Brunt, who was the lead performance engineer on this engagement.) Happy tuning to you all, and please <a href="http://www.webapper.com/index.cfm/contact-us">give us a ring</a> if you&#8217;d like our help making your ColdFusion systems as fast and stable as possible. </p>
<img src="http://feeds.feedburner.com/~r/WebapperBlog/~4/r0EpOOf91Es" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2010/07/29/bollox-to-coldfusion-is-slow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.webapper.com/blog/index.php/2010/07/29/bollox-to-coldfusion-is-slow/</feedburner:origLink></item>
		<item>
		<title>ColdFusion Heros</title>
		<link>http://feedproxy.google.com/~r/WebapperBlog/~3/es32N920uGI/</link>
		<comments>http://www.webapper.com/blog/index.php/2010/07/27/coldfusion-heros/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 22:47:03 +0000</pubDate>
		<dc:creator>Patrick Quinn</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Fusebox]]></category>
		<category><![CDATA[General Development]]></category>
		<category><![CDATA[JVM & Java]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[SeeFusion]]></category>

		<guid isPermaLink="false">http://www.webapper.com/blog/?p=1250</guid>
		<description><![CDATA[As leading ColdFusion performance engineers and application development specialists, we&#8217;re pretty good at what we do. Still, it&#8217;s comparatively unglamorous work that we do, focused as it is on recondite topics like software frameworks and Java memory utilization patterns. We&#8217;ve got thousands of happy customers of our ColdFusion support and development services, and our SeeFusion [...]]]></description>
			<content:encoded><![CDATA[<p>As leading ColdFusion performance engineers and application development specialists, we&#8217;re pretty good at what we do. Still, it&#8217;s comparatively unglamorous work that we do, focused as it is on recondite topics like software frameworks and Java memory utilization patterns. We&#8217;ve got thousands of happy customers of our <a href="http://www.coldfusionsupport.net">ColdFusion support</a> and <a href="http://www.webapper.com/index.cfm/ria-development">development services</a>, and our <a href="http://www.seefusion.com/">SeeFusion product</a>. But, it&#8217;s not exactly the Cult of Mac around here in terms of effusive enthusiasm on the part of our customers. I suppose you can only get so emotional about applying an especially effective design pattern, or optimizing the throughput of your server. </p>
<p>So, I felt I had to share a recent plug from a customer of our <a href="http://www.coldfusionsupport.net/">ColdFusion Support Plans</a>. This customer went out of his way to send a <em>postcard</em> (below). Touching, and appreciated beyond words. And, it just goes to show you&#8211;ColdFusion best practices <em>can</em> be sexy! I think I&#8217;ll go shopping for a black mock turtleneck now&#8230;</p>
<p>All kidding aside, kudos to our ColdFusion Support Engineers, and please give us a shout if we can help you maximize your investment in the ColdFusion platform.</p>
<div id="attachment_1251" class="wp-caption alignnone" style="width: 610px"><a href="http://www.webapper.com/enclosures/2010/07/autozoom_testimonial.jpg"><img src="http://www.webapper.com/enclosures/2010/07/autozoom_testimonial.jpg" alt="" title="Autozoom testimonial" width="600" height="1228" class="size-full wp-image-1251" /></a><p class="wp-caption-text">ColdFusion Support Testimonial</p></div>
<img src="http://feeds.feedburner.com/~r/WebapperBlog/~4/es32N920uGI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2010/07/27/coldfusion-heros/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.webapper.com/blog/index.php/2010/07/27/coldfusion-heros/</feedburner:origLink></item>
		<item>
		<title>ColdFusion Support Plans</title>
		<link>http://feedproxy.google.com/~r/WebapperBlog/~3/7f17J8GYX78/</link>
		<comments>http://www.webapper.com/blog/index.php/2010/04/06/coldfusion-support-plans/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 19:12:38 +0000</pubDate>
		<dc:creator>Patrick Quinn</dc:creator>
				<category><![CDATA[Business of Software]]></category>
		<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://www.webapper.com/blog/?p=1234</guid>
		<description><![CDATA[For the past decade, our team here at Webapper has been delivering specialized software services focused on ColdFusion performance and stability. Up until now, we had only offered that expertise in the form of &#8220;retail&#8221; consulting services. This model works roughly like conventional medicine&#8211;wait until you&#8217;re sick, then call a doctor. Sure, docs can do [...]]]></description>
			<content:encoded><![CDATA[<p>For the past decade, our team here at Webapper has been delivering specialized software services focused on ColdFusion performance and stability. Up until now, we had only offered that expertise in the form of &#8220;retail&#8221; consulting services. This model works roughly like conventional medicine&#8211;wait until you&#8217;re sick, then call a doctor. Sure, docs can do some pretty impressive things these days, and similarly our engineers have tuned and stabilized more ColdFusion systems than anyone on the globe over the past decade. But, it sure would be nice not to get sick in the first place! So, in December, we launched formal ColdFusion support plans, designed to provide proactive performance engineering for ColdFusion systems. Here&#8217;s how we put the plans together:</p>
<ul>
<li>First, work for 10 years to become the very best at solving ColdFusion performance and stability problems.</li>
<li>Along the way, create a suite of services that&#8217;s complete&#8211;addressing <em>any</em> performance and stability need for a ColdFusion system (application-layer, server-level, data tier, network-layer, etc.).</li>
<li>Next, find out what ColdFusion customers <em>really</em> want in terms of support. In 2009, we worked with key ColdFusion hosting partners, and also conducted a survey of our thousands of ColdFusion customers, in order to find out what folks wanted and needed.</li>
<li>Refine, rinse, repeat. We put all of this together&#8211;our knowledge of the limited effectiveness of the reactive approach to performance and stability problems, the feedback we&#8217;d gotten from partners and customers about the &#8220;typical&#8221; support plan experience, and about the kind of support deemed both useful and flexible&#8211;and then we worked with some former senior management for &#8220;official&#8221; ColdFusion support services from Allaire/Macromedia/Adobe to put together something new, and better.</li>
<li>Launch! In December, we launched our formal support plans for ColdFusion.</li>
</ul>
<p>Here&#8217;s a brochure site we put up describing the plans:</p>
<div align="center"><strong><a href="http://www.coldfusionsupport.net">ColdFusion Support Plans</a></strong></div>
</p>
<p>There&#8217;s a lot of information there, but, please don&#8217;t hesitate to <a href="http://www.webapper.com/index.cfm/contact-us">contact us</a> to discuss any and all details. We&#8217;ve tried to clarify/simplify information about the plans as much as possible, but, nothing beats hearing it live from a ColdFusion performance engineer with 10 years of experience in the trenches of ColdFusion engineering. </p>
<img src="http://feeds.feedburner.com/~r/WebapperBlog/~4/7f17J8GYX78" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2010/04/06/coldfusion-support-plans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.webapper.com/blog/index.php/2010/04/06/coldfusion-support-plans/</feedburner:origLink></item>
		<item>
		<title>ColdFusion Survey</title>
		<link>http://feedproxy.google.com/~r/WebapperBlog/~3/aJNQenAtO1Q/</link>
		<comments>http://www.webapper.com/blog/index.php/2009/11/25/coldfusion-survey/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 00:10:52 +0000</pubDate>
		<dc:creator>Patrick Quinn</dc:creator>
				<category><![CDATA[ColdFusion]]></category>

		<guid isPermaLink="false">http://www.webapper.com/blog/?p=1224</guid>
		<description><![CDATA[Here at Webapper, we&#8217;re working on a little somethin&#8217; somethin&#8217; that we think will be a big help to the ColdFusion community. And, though we&#8217;re as egomaniacal as the next bunch of engineers, we&#8217;d nonetheless never try something new without asking for feedback. So, we&#8217;re conducting a survey of ColdFusion users. It has to do [...]]]></description>
			<content:encoded><![CDATA[<p>Here at Webapper, we&#8217;re working on a little somethin&#8217; somethin&#8217; that we think will be a big help to the ColdFusion community. And, though we&#8217;re as egomaniacal as the next bunch of engineers, we&#8217;d nonetheless never try something new without asking for feedback. So, we&#8217;re conducting a survey of ColdFusion users. It has to do with ColdFusion support&#8211;getting it, using it, etc. Since one of our thousands of happy customers is a seller of custom, large-sized women&#8217;s bras (true story!), we thought we&#8217;d come up with some kind of funny spin about &#8220;support,&#8221; but, while we&#8217;re working on that, we&#8217;d like to welcome you to complete our survey. As a thank-you, we&#8217;re giving away a free copy of SeeFusion Enterprise to the first 100 respondents. </p>
<p><strong>Update: Since the response has been so overwhelming, we&#8217;ve decided to up the giveaway limit to the first <em>200 respondents</em></strong>!</p>
<p>Thanks so much in advance, and a Happy Thanksgiving to all!</p>
<div align="center"><a href="http://survey.constantcontact.com/survey/a07e2moftqng1xqat9l/start"><strong>Take Survey</strong></a></div>
<img src="http://feeds.feedburner.com/~r/WebapperBlog/~4/aJNQenAtO1Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2009/11/25/coldfusion-survey/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://www.webapper.com/blog/index.php/2009/11/25/coldfusion-survey/</feedburner:origLink></item>
		<item>
		<title>Connecting to SQL Server 2008 (Express) from OS X</title>
		<link>http://feedproxy.google.com/~r/WebapperBlog/~3/jq30E0_0AzY/</link>
		<comments>http://www.webapper.com/blog/index.php/2009/11/13/connecting-to-sql-server-2008-express-from-os-x/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 18:26:38 +0000</pubDate>
		<dc:creator>Perry Woodin</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[Macintosh]]></category>

		<guid isPermaLink="false">http://www.webapper.com/blog/?p=1209</guid>
		<description><![CDATA[This is for anyone having trouble connecting to SQL Server on Parallels from ColdFusion on Mac OS X.
Each time I’ve installed a new version of SQL server &#8212; be it 2005 or 2008 &#8212; it took me a bit a random clicking to get a ColdFusion datasource connected to SQL Server.
Here are some tips.

Make sure [...]]]></description>
			<content:encoded><![CDATA[<p>This is for anyone having trouble connecting to SQL Server on Parallels from ColdFusion on Mac OS X.</p>
<p>Each time I’ve installed a new version of SQL server &#8212; be it 2005 or 2008 &#8212; it took me a bit a random clicking to get a ColdFusion datasource connected to SQL Server.</p>
<p>Here are some tips.</p>
<ol>
<li>Make sure the service is running. Well duh&#8230; but this has tripped me up before, so just check and save yourself the headache.</li>
<li>Make sure that TCP/IP is enabled.  To do this, open Start =&gt; All Programs =&gt; Microsoft SQL Server 2008 =&gt; Configuration Tools =&gt; SQL Server Configuration Manager. In the left column, expand SQL Server Network Configuration. Select your SQL Server instance (note the instance name e.g. SQLEXPRESS) and then double-click TCP/IP in the right column to open the TCP/IP Properties. Under the Protocol tab, make sure Enabled is Yes.<br />
<img class="alignnone size-full wp-image-1210" title="TCP/IP Properties" src="http://www.webapper.com/enclosures/2009/11/Picture-1.png" alt="TCP/IP Properties" width="383" height="388" /></li>
<li>While you’ve go the TCP/IP Properties window open, click the IP Addresses tab. From this tab, you can see what IP address SQL server is running on. Equally important, you will see the Port Number. The default port number is 1433, but I’ve got three versions of SQL Server running and each one uses a different port number.<br />
<img class="alignnone size-full wp-image-1211" title="IP Addresses" src="http://www.webapper.com/enclosures/2009/11/Picture-2.png" alt="IP Addresses" width="239" height="268" /></li>
<li>Login to your ColdFusion administrator and create a new SQL Server Datasource. The Server will be the IP Address (e.g. 10.0.1.6) followed by a colon (:), followed by the instance name (e.g. SQLEXPRESS). You get the port number from the IP Properties window in step 3 above (e.g. 1094).<br />
<img class="alignnone size-full wp-image-1212" title="ColdFusion Datasource" src="http://www.webapper.com/enclosures/2009/11/Picture-3.png" alt="ColdFusion Datasource" width="266" height="94" /></li>
</ol>
<p>That’s it. If you’ve got Windows Firewall running, make sure you can accept traffic over the port being used by SQL Server.</p>
<img src="http://feeds.feedburner.com/~r/WebapperBlog/~4/jq30E0_0AzY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2009/11/13/connecting-to-sql-server-2008-express-from-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.webapper.com/blog/index.php/2009/11/13/connecting-to-sql-server-2008-express-from-os-x/</feedburner:origLink></item>
		<item>
		<title>1-Day ColdFusion TNT Audit</title>
		<link>http://feedproxy.google.com/~r/WebapperBlog/~3/VZOtrYUoFOk/</link>
		<comments>http://www.webapper.com/blog/index.php/2009/10/19/1-day-coldfusion-tnt-audit/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 19:37:24 +0000</pubDate>
		<dc:creator>Patrick Quinn</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[JVM & Java]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[SeeFusion]]></category>
		<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.webapper.com/blog/?p=1193</guid>
		<description><![CDATA[One of the advantages of our decades of combined experience is speed&#8212;we identify, prioritize and fix the causes of performance and stability problems as quickly and effectively as humanly possible. If you&#8217;ve got ColdFusion performance and/or stability problems, and you haven&#8217;t yet hired us for consulting, then I&#8217;d like to invite you to try our [...]]]></description>
			<content:encoded><![CDATA[<p>One of the advantages of our decades of combined experience is speed&mdash;we identify, prioritize and fix the causes of performance and stability problems as quickly and effectively as humanly possible. If you&#8217;ve got ColdFusion performance and/or stability problems, and you haven&#8217;t yet hired us for consulting, then I&#8217;d like to invite you to try our 1-Day ColdFusion TNT Audit. This is an abbreviated version of our more in-depth <a href="http://www.webapper.com/index.cfm/consulting-services#coldfusion-tuning-troubleshooting">TNT engagement</a>.</p>
<div id="attachment_1194" class="wp-caption aligncenter" style="width: 310px"><img src="http://www.webapper.com/enclosures/2009/10/SF-Chart_small.gif" alt="ColdFusion TNT Engagement Report" title="ColdFusion TNT Engagement Report" width="300" height="163" class="size-full wp-image-1194" /><p class="wp-caption-text">ColdFusion TNT</p></div>
<p>The 1-Day ColdFusion TNT Audit is the fastest possible way to begin to identify, prioritze and fix the causes of ColdFusion performance and stability problems. Here&#8217;s what we deliver in just one day of effort:</p>
<ul>
<li>A review of your SeeFusion configuration, in particular query monitoring and database logging settings.</li>
<li>A review of your JVM configuration, in particular memory utilization settings.</li>
<li>A review of your ColdFusion log files, stack traces, and any other diagnostic information you&#8217;ve gathered.</li>
<li>A review of your ColdFusion Administrator settings.</li>
<li>An analysis of your SeeFusion metrics.</li>
<li>A written report detailing and prioritizing your system&#8217;s bottlenecks, complete with extensive data in tables and charts sorted by a variety of methods.</li>
</ul>
<div id="attachment_1195" class="wp-caption aligncenter" style="width: 310px"><img src="http://www.webapper.com/enclosures/2009/10/SF-Table_small.gif" alt="ColdFusion TNT Engagement Report" title="ColdFusion TNT Engagement Report" width="300" height="211" class="size-full wp-image-1195" /><p class="wp-caption-text">ColdFusion TNT</p></div>
<p>If your ColdFusion systems are experiencing performance or stability problems, <a href="http://www.webapper.com/index.cfm/contact-us">contact us</a> today.</p>
<p><strong>Important Note:</strong> The 1-Day TNT Audit is <em>not</em> ideal for customers with specific and/or severe performance/stability problems. For those situations, our <a href="http://www.webapper.com/index.cfm/consulting-services">comprehensive TNT engagement</a> is the best solution. The TNT Audit is intended as a way to get to know us while considering additional services, and to obtain a very useful &#8220;snapshot&#8221; of your system. It is not the intensive investigative/problem-solving engagement that our standard <a href="http://www.webapper.com/index.cfm/consulting-services">TNT Services</a> represent.</p>
<img src="http://feeds.feedburner.com/~r/WebapperBlog/~4/VZOtrYUoFOk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2009/10/19/1-day-coldfusion-tnt-audit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.webapper.com/blog/index.php/2009/10/19/1-day-coldfusion-tnt-audit/</feedburner:origLink></item>
		<item>
		<title>MS SQL Maintenance Plans</title>
		<link>http://feedproxy.google.com/~r/WebapperBlog/~3/TtheoERVHZ0/</link>
		<comments>http://www.webapper.com/blog/index.php/2009/09/10/ms-sql-maintenance-plans/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 20:51:51 +0000</pubDate>
		<dc:creator>Perry Woodin</dc:creator>
				<category><![CDATA[Databases]]></category>

		<guid isPermaLink="false">http://www.webapper.com/blog/?p=1182</guid>
		<description><![CDATA[Maintenance Plans in MS SQL 2005 are a powerful and easy way to manage and backup your databases. In this article, I’m going to walk through 4 basic tasks that we run weekly on a client’s database. You’ll learn how to reorganize indexes, create a full backup (*.bak), shrink your database (shrinks both data and [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">Maintenance Plans in MS SQL 2005 are a powerful and easy way to manage and backup your databases. In this article, I’m going to walk through 4 basic tasks that we run weekly on a client’s database. You’ll learn how to reorganize indexes, create a full backup (*.bak), shrink your database (shrinks both data and log files), and cleanup the backup directory.</span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Creating a Maintenance Plan</span></strong></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">In SQL Server Management Studio, expand the </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Management</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> folder, right-click </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Maintenance Plans</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> and select </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">New Maintenance Plan&#8230;</span></strong></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><img src="https://docs.google.com/a/webapper.com/File?id=ddtnjnzc_4g572g4fz_b" border="0" alt="" width="447" height="299" /></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">Give the Maintenance Plan a name and click </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">OK</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">. The new empty Maintenance Plan will open in Design Mode. All of the available tasks are in the left hand column </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Toolbox</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> under </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Maintenance Plan Tasks</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">.</span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><img src="https://docs.google.com/a/webapper.com/File?id=ddtnjnzc_5s98g6whc_b" border="0" alt="" width="447" height="397" /></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">To add any task to the maintenance plan, simply drag the task from the </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Toolbox</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> into the design frame. Once the task is in the design frame, double-click to edit.</span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Reorganize Index Task</span></strong></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">The reorganize index task updates table and view indexes so the search order is more efficient. The task dialogue is pretty simple. Use the </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Database(s)</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> drop down to select one or more databases. Then use the </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Object</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> drop down to select whether Tables, Views, or Both should have their indexes reorganized. For this example, I’m going to reorganize both </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Tables and Views</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">. When done, click </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">OK</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">.</span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><img src="https://docs.google.com/a/webapper.com/File?id=ddtnjnzc_6ckc4sxct_b" border="0" alt="" width="624" height="315" /></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Back Up Database Task</span></strong></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">The Back Up Database Task creates a Full, Differential, or Transaction Log backup. In this example, I’m going to create a Full backup which will create a *.bak file.  This task dialogue is also pretty simple. Set the </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Backup type</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> to </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Full</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> and then select the </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Database(s)</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> to backup. Jump down to the bottom third of the dialogue and select the </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Create a backup file for every database</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> radio button. Then browse to the folder where the backup files are to be saved. When done, click </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">OK</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">.</span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><img src="https://docs.google.com/a/webapper.com/File?id=ddtnjnzc_7fbtvcfg3_b" border="0" alt="" width="624" height="725" /></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">Join the Reorganize Index Task to the Backup Database Task by dragging the green arrow between the two. Once the two tasks are joined, right-click the arrow and select </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Completion</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">.</span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><img src="https://docs.google.com/a/webapper.com/File?id=ddtnjnzc_8rb999whn_b" border="0" alt="" width="624" height="224" /></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Shrink Database Task</span></strong></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">The Shrink Database Task should come after the back up task because the shrink cannot be executed on a database until a Full backup has been created. In the task dialogue, select the </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Database(s)</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> and just accept the defaults. When done, click </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">OK</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">. If you’ve noticed your log files getting out of hand, the shrink task will bring the file size down. In a recent test, my active log file went from over 2GB to just over 200MB.</span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><img src="https://docs.google.com/a/webapper.com/File?id=ddtnjnzc_9cwfjddgz_b" border="0" alt="" width="624" height="386" /></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">Join the Back Up Database Task to the Shrink Database Task, and set the type to </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Completion</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">. </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Maintenance Cleanup Task</span></strong></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">As the last task in the Maintenance Plan, I’m going to cleanup the backup directory by removing any *.bak files that are older than 2 weeks. If you’re doing this type of maintenance, you’ll want to make sure you’ve got some sort of server backup that keeps a longer history of your *.bak files off-server. </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">Open the task dialogue and skip down to the </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Search folder and delete files based on extension</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">.  Navigate to the backup folder that was set in the Back Up Database Task. Then set the file extension to </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">bak</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">. Note the extension is simply </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">bak</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">. You don’t need to include a . (dot). Skip to the bottom of the dialogue and set the age of the deleted files to </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">2 weeks</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">. When done, click </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">OK</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">.</span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><img src="https://docs.google.com/a/webapper.com/File?id=ddtnjnzc_10ggz255fx_b" border="0" alt="" width="624" height="737" /></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">Join the Shrink Database Task to the Maintenance Cleanup Task, and set the type to </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Success</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">. </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Execute the Maintenance Plan</span></strong></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">Save the maintenance plan. From the </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Object Explorer</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">, right click the new plan and select </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">Execute</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> to test it.  If everything runs without error, you can set the plan to run on a schedule. </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">On the design mode screen in the Subplan grid, click on the calendar icon and set the schedule for executing the plan. When done, click </span></span><span style="color: #000000; font-family: 'Helvetica';"><strong><span style="font-size: small;">OK</span></strong></span><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">.</span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;"> </span></span></p>
<p style="margin-left: 0pt; margin-right: 0pt;"><span style="color: #000000; font-family: 'Helvetica';"><span style="font-size: small;">That’s it. The plan will now run as a scheduled task. Not only does the plan backup the database, but it’s also reorganizing the indexes, shrinking the database and cleaning up  the backup directory. Best of all, once it’s setup, the plan executes without your intervention and at a time that is best for your system. </span></span></p>
<img src="http://feeds.feedburner.com/~r/WebapperBlog/~4/TtheoERVHZ0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2009/09/10/ms-sql-maintenance-plans/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://www.webapper.com/blog/index.php/2009/09/10/ms-sql-maintenance-plans/</feedburner:origLink></item>
		<item>
		<title>ColdFusion 9 Solr startup scripts for OS X</title>
		<link>http://feedproxy.google.com/~r/WebapperBlog/~3/3ovCFHJmdtY/</link>
		<comments>http://www.webapper.com/blog/index.php/2009/08/21/coldfusion-9-solr-startup-scripts-for-os-x/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 17:07:05 +0000</pubDate>
		<dc:creator>Shannon Hicks</dc:creator>
				<category><![CDATA[ColdFusion]]></category>

		<guid isPermaLink="false">http://www.webapper.com/blog/?p=1175</guid>
		<description><![CDATA[The ColdFusion 9 team was kind enough to share the startup scripts for the ColdFusion install of Solr for OS X.
Here&#8217;s how to use these scripts:
1. Copy the files to solr installation directory. i.e /Applications/ColdFusion9/solr or /ColdFusion9/solr. Change the scripts to have execute permission.
2. Open cf-init-solr.sh and cf-solr-startup and be sure that CF_DIR is set [...]]]></description>
			<content:encoded><![CDATA[<p>The ColdFusion 9 team was kind enough to share the startup scripts for the ColdFusion install of Solr for OS X.</p>
<p>Here&#8217;s how to use these scripts:</p>
<p>1. Copy the files to solr installation directory. i.e /Applications/ColdFusion9/solr or /ColdFusion9/solr. Change the scripts to have execute permission.<br />
2. Open cf-init-solr.sh and cf-solr-startup and be sure that CF_DIR is set to your coldfusion9 install directory.</p>
<p>From there, run:</p>
<p><code class="codecolorer bash default"><span class="bash"><span style="color: #c20cb9; font-weight: bold;">sudo</span> .<span style="color: #000000; font-weight: bold;">/</span>cf-init-solr <span style="color: #c20cb9; font-weight: bold;">install</span></span></code><br />
to install the scripts.</p>
<p><code class="codecolorer bash default"><span class="bash"><span style="color: #c20cb9; font-weight: bold;">sudo</span> .<span style="color: #000000; font-weight: bold;">/</span>cf-init-solr uninstall</span></code><br />
to remove the scripts.</p>
<p>All done!</p>
<p><a href="http://www.webapper.com/enclosures/2009/08/CFSolrStartup.zip">Download the scripts now.</a></p>
<img src="http://feeds.feedburner.com/~r/WebapperBlog/~4/3ovCFHJmdtY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2009/08/21/coldfusion-9-solr-startup-scripts-for-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.webapper.com/blog/index.php/2009/08/21/coldfusion-9-solr-startup-scripts-for-os-x/</feedburner:origLink></item>
		<item>
		<title>Webapper at RIA Unleashed : Boston</title>
		<link>http://feedproxy.google.com/~r/WebapperBlog/~3/YCYjdyOUnic/</link>
		<comments>http://www.webapper.com/blog/index.php/2009/08/05/webapper-at-ria-unleashed-boston/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 16:52:47 +0000</pubDate>
		<dc:creator>Shannon Hicks</dc:creator>
				<category><![CDATA[ColdFusion]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[Flex & Flash]]></category>

		<guid isPermaLink="false">http://www.webapper.com/blog/?p=1172</guid>
		<description><![CDATA[We are proud to announce that Webapper is sponsoring RIA Unleashed in Boston this year. Brian Rinaldi has been putting together some great Flex camps in years past, and we jumped at the chance to sponsor this expanded event. This year, it&#8217;s an all-day conference with three tracks: Flex/Air, ColdFusion, and Related Technologies. Steven Erat and [...]]]></description>
			<content:encoded><![CDATA[<p>We are proud to announce that Webapper is sponsoring <a href="http://www.riaunleashed.com/">RIA Unleashed in Boston</a> this year. Brian Rinaldi has been putting together some great Flex camps in years past, and we jumped at the chance to sponsor this expanded event. This year, it&#8217;s an all-day conference with three tracks: Flex/Air, ColdFusion, and Related Technologies. Steven Erat and I will be speaking, along with many other great Adobe employees and community experts.</p>
<p>There are still a few $30 tickets left, so <a href="http://www.riaunleashed.com/page.cfm/register">register now</a> before the prices go up!</p>
<img src="http://feeds.feedburner.com/~r/WebapperBlog/~4/YCYjdyOUnic" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.webapper.com/blog/index.php/2009/08/05/webapper-at-ria-unleashed-boston/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.webapper.com/blog/index.php/2009/08/05/webapper-at-ria-unleashed-boston/</feedburner:origLink></item>
	</channel>
</rss>
